@charset "UTF-8";
/* CSS Document */

:root {
  --cor-principal: #763F3F;
  --cor-secundaria: #E1B88F;
  --cor-clara: #F5E9E3;
  --cor-branco-claro: #FCF9F7;
  --cor-hover: #E1B88F;
  --cor-escura: #111;
  --cor-branco: #ffffff;
  --cor-branco-cinza: #f7f7f7;
  --cor-branco-hover: #eeeeee;
  --cor-cinza-escuro: #555555;
  --cor-cinza-medio: #e5e5e5;
  --cor-cinza-medio-claro: #777777;    
  --cor-cinza-claro: #f0f0f0;
  --cor-perola-claro: #f7f3f0;
  --cor-borda-forte: #cccccc;
  --cor-borda-fraca: #F5E9E3;
  --cor-verde-ativo: #4ab414;
  --cor-vermelho-erro: #FA2111;
  --cor-amarelo-aviso: #FFD200;
  --cor-rodape: #222;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none !important;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: var(--cor-branco-cinza, #f5f5f5);
}

body {
  overflow-y: scroll;
}

body.bloqueado *,
body.bloqueado {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
}

/* Fonte LUSTRIA (TÍTULOS FINOS) */
@font-face {
  font-family: 'Lustria';
  src: url('../fontes/lustria.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Fontes TEXT */
@font-face {
  font-family: 'Text';
  src: url('../fontes/text-light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Text';
  src: url('../fontes/text-regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Text';
  src: url('../fontes/text-bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Text';
  src: url('../fontes/text-extrabold.ttf') format('truetype');
  font-weight: 800;
}

/* Fontes DISPLAY */
@font-face {
  font-family: 'Display';
  src: url('../fontes/display-light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Display';
  src: url('../fontes/display-regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Display';
  src: url('../fontes/display-bold.ttf') format('truetype');
  font-weight: 700;
}

/* Fonte ASSINATURA */
@font-face {
  font-family: 'Assinatura';
  src: url('../fontes/assinatura.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Fonte AUTOGRAPHY */
@font-face {
  font-family: 'Autography';
  src: url('../fontes/autography.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Fonte Cochin */
@font-face {
  font-family: 'Cochin';
  src: url('../fontes/cochin.ttc') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Estilo base */
body.index-body {
  margin: 0;
  background: #fff;
  font-family: 'Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, .title {
  font-family: 'Lustria', serif;
  font-weight: 400;
}

.botao-cor span {
  font-family: 'Display', sans-serif;
}

p, .description, .top-bar a, .top-bar .borda {
  font-family: 'Text', sans-serif;
  font-weight: 400;
}

/* BOTÃO PADRÃO */
.botao-cor {
  display: inline-block;
  background: var(--cor-principal);
  color: #fff;
  text-decoration: none;
  font-family: 'GuerraHK', 'Display', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 18px;
  border: none;
  white-space: nowrap;
}

.botao-cor:hover {
  background: var(--cor-hover);
  color: var(--cor-principal);
}

/* BOTÃO DESABILITADO */
.botao-cor:disabled,
.botao-cor:disabled:hover {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
}

/* BOTÃO TOPO */
.botao-topo {
  display: inline-block;
  font-family: 'Text', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 12px;
  color: var(--cor-principal);
  background: var(--cor-branco);
  border: none;
  text-decoration: none;
  width: 140px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.botao-topo:hover {
  background: var(--cor-secundaria);
  color: var(--cor-branco);
}

/* BOTÃO FUNDO */
.botao-fundo-cor {
  display: inline-block;
  background: var(--cor-branco);
  color: var(--cor-principal);
  text-decoration: none;
  font-family: 'Display', sans-serif;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 20px;
  transition: 0.3s ease-in-out;
}

.botao-fundo-cor:hover {
  background: var(--cor-secundaria);
  color: var(--cor-branco);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width:980px) {
  .container {
    max-width: 970px;
    padding: 0 26px;
  }
  .botao-cor {
    padding: 14px 24px;
    font-size: 16px;
  }
}

@media (max-width:700px) {
  p { line-height: 1.5; }
  .botao-cor {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
}

/* Conic border */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

[class*="borda-360"] {
  position: relative;
  z-index: 1;
}

.borda-360-01::before,
.borda-360-02::before {
  content: '';
  position: absolute;
  border-radius: inherit;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  animation: girar 5s linear infinite;
  padding: 1px;
  box-sizing: border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.borda-360-01::before {
  background: conic-gradient(
    from var(--angle),
    transparent 0 60deg,
    var(--cor-principal) 75deg 135deg,
    transparent 150deg 240deg,
    var(--cor-principal) 255deg 315deg,
    transparent 330deg 360deg
  );
}

.borda-360-02::before {
  background: conic-gradient(
    from var(--angle),
    transparent 0deg 90deg,
    rgba(255, 140, 0, 0) 90deg,
    var(--cor-principal) 135deg,
    var(--cor-principal) 225deg,
    rgba(255, 140, 0, 0) 270deg,
    transparent 270deg 360deg
  );
}

.borda-com::before { inset: -1px; }
.borda-sem::before { inset: 0; }

.anima-hover[class*="borda-360"]:hover::before,
.anima-pai:hover .anima-filho[class*="borda-360"]::before {
  opacity: 1;
}

@keyframes girar {
  to { --angle: 360deg; }
}

/* Botão com brilho */
.botao-efeito-brilho {
  position: relative;
  display: inline-block;
  font-family: 'Display', sans-serif;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 999px;
  background: var(--cor-principal);
  color: var(--cor-branco);
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
}

.botao-efeito-brilho::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-20deg);
}

.botao-efeito-brilho:hover::before, .botao-contato:hover::before {
  animation: brilho-move 1s ease forwards;
}

@keyframes brilho-move {
  from { left: -75%; }
  to { left: 125%; }
}
