/* ============================================
   DRA. GIOVANA GUIMARÃES — Site
   Paleta: Chumbo #2B2B2B · Dourado #C9A87C · Off-white #F5F0E8
   Tipografia: Melodrama + Cormorant Garamond + Montserrat
   ============================================ */

@font-face {
  font-family: 'Zodiak';
  src: url('fontes/zodiak/Zodiak-Light.woff2') format('woff2'),
       url('fontes/zodiak/Zodiak-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Melodrama';
  src: url('fontes/melodrama/Melodrama-Light.woff2') format('woff2'),
       url('fontes/melodrama/Melodrama-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Melodrama';
  src: url('fontes/melodrama/Melodrama-Regular.woff2') format('woff2'),
       url('fontes/melodrama/Melodrama-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Melodrama';
  src: url('fontes/melodrama/Melodrama-Medium.woff2') format('woff2'),
       url('fontes/melodrama/Melodrama-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Melodrama';
  src: url('fontes/melodrama/Melodrama-Semibold.woff2') format('woff2'),
       url('fontes/melodrama/Melodrama-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Melodrama';
  src: url('fontes/melodrama/Melodrama-Bold.woff2') format('woff2'),
       url('fontes/melodrama/Melodrama-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A87C;
  --gold-dark:   #A8845A;
  --bg:          #1A1A1A;
  --bg-mid:      #242424;
  --bg-light:    #2B2B2B;
  --cream:       #F5F0E8;
  --cream-dim:   #C8C0B2;
  --white:       #FFFFFF;
  /* seções de fundo claro (branco levemente bege) */
  --light-bg:    #F5F0E8;
  --light-card:  #FFFDF8;
  --light-line:  #E7DFD1;
  --ink:         #262320;
  --ink-dim:     #6B6357;
  --gold-deep:   #8A6530;
  --font-melodrama: 'Melodrama', Georgia, serif;
  --font-zodiak:  'Zodiak', Georgia, serif;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;
  --font-script: 'Great Vibes', cursive;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- LABEL ---- */
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.label--light { color: var(--gold); }

/* ---- SECTION TITLE ---- */
.section-title {
  font-family: var(--font-zodiak);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 56px;
  line-height: 1.2;
}
.section-title em, h2 em {
  font-style: italic;
  color: var(--gold);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--bg);
}
.btn--gold:hover { background: var(--gold-dark); }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ---- BOTÃO COM BORDA DE LUZ ----
   uma luz percorre a borda do botão sem parar. Versão CSS do
   "animated border" (React/motion), feita com gradiente cônico
   girando por trás e um preenchimento interno deixando 2px de anel.
   As cores vêm do próprio botão, via as variáveis --luz-*. */
.btn--luz {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: none;
}
.btn--luz::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  background: conic-gradient(
    from 0deg,
    var(--luz-base) 0deg,
    var(--luz-base) 292deg,
    var(--luz-brilho) 352deg,
    var(--luz-base) 360deg
  );
  animation: btn-luz-gira 5s linear infinite;
}
/* preenchimento interno: cobre o gradiente e deixa só a borda acesa */
.btn--luz::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 2px;
  background: var(--luz-fundo);
  transition: background 0.3s ease;
}
@keyframes btn-luz-gira {
  to { transform: rotate(1turn); }
}

.btn--gold.btn--luz {
  --luz-base:   var(--gold-dark);
  --luz-brilho: var(--cream);
  --luz-fundo:  var(--gold);
}
.btn--gold.btn--luz:hover { --luz-fundo: var(--gold-dark); }

.btn--outline.btn--luz {
  --luz-base:   var(--gold);
  --luz-brilho: var(--cream);
  --luz-fundo:  var(--bg);
}
.btn--outline.btn--luz:hover { --luz-fundo: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  .btn--luz::before { animation: none; }
}

/* ---- BOTÃO FLOW ----
   texto e setas deslizam, e um círculo cresce preenchendo o botão */
.btn--flow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  padding: 13px 32px;
  border: 1.5px solid rgba(245,240,232,0.4);
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.6s cubic-bezier(0.23,1,0.32,1),
              color 0.6s cubic-bezier(0.23,1,0.32,1),
              border-radius 0.6s cubic-bezier(0.23,1,0.32,1),
              transform 0.2s ease;
}
.btn--flow:hover {
  border-color: transparent;
  border-radius: 12px;
  color: var(--bg);
}
.btn--flow:active { transform: scale(0.95); }

.btn--flow__arr {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 9;
  transition: left 0.8s cubic-bezier(0.34,1.56,0.64,1),
              right 0.8s cubic-bezier(0.34,1.56,0.64,1);
}
.btn--flow__arr--esq { left: -25%; }
.btn--flow__arr--dir { right: 16px; }
.btn--flow:hover .btn--flow__arr--esq { left: 16px; }
.btn--flow:hover .btn--flow__arr--dir { right: -25%; }

.btn--flow__label {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: transform 0.8s ease-out;
}
.btn--flow:hover .btn--flow__label { transform: translateX(12px); }

.btn--flow__circulo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 0.8s cubic-bezier(0.19,1,0.22,1),
              height 0.8s cubic-bezier(0.19,1,0.22,1),
              opacity 0.8s cubic-bezier(0.19,1,0.22,1);
}
.btn--flow:hover .btn--flow__circulo {
  width: 340px;
  height: 340px;
  opacity: 1;
}

/* ---- BOTÃO LIQUID METAL ----
   anel de metal girando por fora, interior preto em gradiente.
   O anel é um gradiente cônico animado: faz o papel do shader do
   componente React original, sem depender de WebGL. */
.btn--metal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 100px;
  overflow: hidden;
  background: none;
  transition: box-shadow 0.15s cubic-bezier(0.4,0,0.2,1), transform 0.15s cubic-bezier(0.4,0,0.2,1);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.30),
    0 36px 14px rgba(0,0,0,0.02),
    0 20px 12px rgba(0,0,0,0.08),
    0 9px 9px rgba(0,0,0,0.12),
    0 2px 5px rgba(0,0,0,0.15);
}
.btn--metal__anel {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    #F5EFE4 0%,   #56503F 6%,  #FFFFFF 12.5%, #443E34 19%,
    #F5EFE4 25%,  #56503F 31%, #FFFFFF 37.5%, #443E34 44%,
    #F5EFE4 50%,  #56503F 56%, #FFFFFF 62.5%, #443E34 69%,
    #F5EFE4 75%,  #56503F 81%, #FFFFFF 87.5%, #443E34 94%,
    #F5EFE4 100%
  );
  animation: metal-gira 7s linear infinite;
}
@keyframes metal-gira {
  to { transform: rotate(1turn); }
}
/* interior preto, deixando 2px de anel visível na borda */
.btn--metal::before {
  content: '';
  position: absolute;
  inset: 2px;
  z-index: 1;
  border-radius: 100px;
  background: linear-gradient(180deg, #202020 0%, #000000 100%);
  transition: box-shadow 0.15s cubic-bezier(0.4,0,0.2,1);
}
.btn--metal__label {
  position: relative;
  z-index: 2;
  color: #9A9A9A;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.btn--metal:hover {
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.40),
    0 12px 6px rgba(0,0,0,0.05),
    0 8px 5px rgba(0,0,0,0.10),
    0 4px 4px rgba(0,0,0,0.15),
    0 1px 2px rgba(0,0,0,0.20);
}
.btn--metal:hover .btn--metal__anel { animation-duration: 4s; }
.btn--metal:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.50),
    0 1px 2px rgba(0,0,0,0.30);
}
.btn--metal:active::before {
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.40),
    inset 0 1px 2px rgba(0,0,0,0.30);
}
.btn--metal:active .btn--metal__anel { animation-duration: 1.8s; }
/* onda que sai do ponto do clique */
.btn--metal__onda {
  position: absolute;
  z-index: 3;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
  animation: metal-onda 0.6s ease-out forwards;
}
@keyframes metal-onda {
  from { transform: translate(-50%, -50%) scale(0); opacity: 0.6; }
  to   { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .btn--metal__anel { animation: none; }
  .btn--metal__onda { display: none; }
}

/* ---- IMG PLACEHOLDER ---- */
.img-placeholder {
  width: 100%;
  background: var(--bg-light);
  border: 1px dashed #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder::after {
  content: 'foto';
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(20, 18, 16, 0.95);
  padding: 12px 0;
  border-bottom-color: rgba(201, 168, 124, 0.2);
}
.nav.menu-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 64px; }
.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  color: var(--gold) !important;
  border: 1px solid rgba(201, 168, 124, 0.5);
  padding: 8px 20px;
  background: rgba(201, 168, 124, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

.nav__close {
  display: none;
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1002;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.nav__close.visible { display: block; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Foto: cobre todo o hero como background */
.hero__foto {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__foto img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: fill;
}

/* Gradiente APENAS na base — não toca no rosto */
.hero__foto::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top,
    rgba(26,26,26,1) 0%,
    rgba(26,26,26,0.85) 30%,
    rgba(26,26,26,0.3) 65%,
    transparent 100%
  );
  pointer-events: none;
}

/* Texto: lado esquerdo, centralizado verticalmente */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}

.hero__title-line1 {
  font-family: var(--font-melodrama);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  color: var(--cream);
  line-height: 0.95;
}

.hero__title-line2 {
  font-family: var(--font-melodrama);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 0.95;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
  max-width: 360px;
  line-height: 1.8;
  margin-top: 4px;
}

.hero__local {
  font-family: var(--font-sans);
  font-size: clamp(0.6rem, 0.85vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

.hero__content .btn--flow { margin-top: 34px; }

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  padding: 120px 0;
  background: var(--bg);
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.sobre__foto {
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.sobre__foto img {
  width: 100%;
  display: block;
}
.sobre__selo {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
}
.sobre__texto h2 {
  font-family: var(--font-zodiak);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
}
.sobre__texto p {
  color: var(--cream-dim);
  margin-bottom: 20px;
  font-size: 15px;
}
.sobre__numeros {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #333;
}
.numero strong {
  display: block;
  font-family: var(--font-zodiak);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.numero span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ============================================
   ESPECIALIDADES
   ============================================ */
.especialidades {
  padding: 120px 0;
  background: var(--light-bg);
}
.especialidades .section-title { text-align: center; color: var(--ink); }
.especialidades .label { display: block; text-align: center; color: var(--gold-deep); }

.esp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.esp__card {
  background: var(--light-card);
  border: 1px solid var(--light-line);
  padding: 48px 36px;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 14px rgba(38,35,32,0.05);
}
.esp__card:hover {
  background: var(--white);
  box-shadow: 0 8px 28px rgba(38,35,32,0.12);
}
.esp__icon {
  font-size: 1.4rem;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.esp__card h3 {
  font-family: var(--font-zodiak);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}
.esp__card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.7;
}

/* ============================================
   PROTOCOLO GB
   ============================================ */
/* a seção vira um mockup de iPad sobre o fundo claro:
   .ipad é o corpo de alumínio, .ipad__tela é a tela onde o conteúdo vive */
.protocolo {
  padding: 120px 32px;
  background: var(--light-bg);
}
.ipad {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 46px;
  background: linear-gradient(150deg, #55555A 0%, #35353A 34%, #2A2A2E 62%, #45454A 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 28px 70px rgba(38,35,32,0.26),
    0 8px 20px rgba(38,35,32,0.14);
}
/* câmera frontal */
.ipad__camera {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #5A6470 0%, #191D22 68%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10);
}
.ipad__tela {
  position: relative;
  border-radius: 32px;
  background: var(--bg);
  padding: 80px 64px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.55);
}
/* três círculos de janela no topo esquerdo da tela */
.tela__botoes {
  position: absolute;
  top: 28px;
  left: 32px;
  display: flex;
  gap: 9px;
  z-index: 2;
}
.tela__botao {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: block;
}
.tela__botao--vermelho { background: #FF5F57; box-shadow: inset 0 0 0 1px #D9484C; }
.tela__botao--amarelo  { background: #FEBC2E; box-shadow: inset 0 0 0 1px #E0A62F; }
.tela__botao--verde    { background: #28C840; box-shadow: inset 0 0 0 1px #21A934; }

/* reflexo de vidro na tela */
.ipad__tela::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0) 34%);
}
.protocolo__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.protocolo__texto h2 {
  font-family: var(--font-zodiak);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}
.protocolo__desc {
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.8;
}
.protocolo__texto p {
  color: var(--cream-dim);
  margin-bottom: 36px;
  font-size: 15px;
}
.protocolo__foto img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* ============================================
   RESULTADOS
   ============================================ */
.resultados {
  padding: 120px 0;
  background: var(--light-bg);
}
.resultados .section-title { text-align: center; color: var(--ink); }
.resultados .label { display: block; text-align: center; color: var(--gold-deep); }

/* Carrossel coverflow */
.resultados__carrossel {
  position: relative;
  margin: 0 auto 40px;
  max-width: 1000px;
  padding: 0 60px;
}
.resultados__carrossel .swiper {
  width: 100%;
  padding-bottom: 56px;
}
.resultados__carrossel .swiper-wrapper {
  align-items: center;
}
.resultados__carrossel .swiper-slide {
  width: 320px;
  height: auto;
}
/* Laterais desbotados por filtro, nunca por opacidade:
   opacidade deixaria a foto de trás vazar através da da frente */
.resultados__carrossel .swiper-slide:not(.swiper-slide-active) .resultado__card img {
  filter: brightness(0.82) saturate(0.85);
  transform: scale(0.96);
}
.resultados__carrossel .swiper-slide:not(.swiper-slide-active) .resultado__proc {
  color: #A79781;
}
/* Remove as sombras 3D padrão do coverflow */
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right { background-image: none; }

.resultado__card img, .resultado__card .img-placeholder {
  width: 100%;
  box-shadow: 0 4px 20px rgba(38,35,32,0.14);
}
.resultado__card img {
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  background: var(--light-card);
  transition: box-shadow 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}
.swiper-slide-active .resultado__card img {
  box-shadow: 0 18px 48px rgba(38,35,32,0.28);
}
.resultado__proc {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 12px;
  text-align: center;
  transition: color 0.4s ease;
}

/* Setas e paginação */
.resultados__carrossel .swiper-button-prev,
.resultados__carrossel .swiper-button-next {
  width: 44px;
  height: 44px;
  margin-top: -28px;
  border-radius: 50%;
  border: 1px solid var(--light-line);
  background: rgba(255,255,255,0.7);
  color: var(--gold-deep);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.resultados__carrossel .swiper-button-prev { left: 0; }
.resultados__carrossel .swiper-button-next { right: 0; }
.resultados__carrossel .swiper-button-prev:hover,
.resultados__carrossel .swiper-button-next:hover {
  background: #fff;
  border-color: var(--gold);
}
.resultados__carrossel .swiper-button-prev::after,
.resultados__carrossel .swiper-button-next::after {
  font-size: 15px;
  font-weight: 700;
}
.resultados__carrossel .swiper-pagination-bullet {
  background: var(--gold-deep);
  opacity: 0.28;
  transition: opacity 0.3s ease, width 0.3s ease;
}
.resultados__carrossel .swiper-pagination-bullet-active {
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}
.resultado__aviso {
  font-size: 11px;
  color: #8A8479;
  line-height: 1.7;
  border-top: 1px solid var(--light-line);
  padding-top: 28px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   MENTORIA
   ============================================ */
.mentoria {
  padding: 120px 0;
  background: var(--bg);
}
.mentoria__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.mentoria__foto img {
  width: 100%;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.mentoria__texto h2 {
  font-family: var(--font-zodiak);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
}
.mentoria__texto p {
  color: var(--cream-dim);
  margin-bottom: 20px;
  font-size: 15px;
}
.mentoria__texto .btn { margin-top: 16px; }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
  padding: 120px 0;
  background: var(--light-bg);
}
.depoimentos .section-title { text-align: center; color: var(--ink); }
.depoimentos .label { display: block; text-align: center; color: var(--gold-deep); }

/* Carrossel */
.dep__carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.dep__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dep__card {
  min-width: 100%;
  background: var(--bg-mid);
  padding: 48px 36px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(38,35,32,0.18);
  box-sizing: border-box;
}
.dep__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.dep__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(38,35,32,0.22);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.dep__dot.active {
  background: var(--gold-deep);
  transform: scale(1.3);
}
.dep__card p {
  font-family: var(--font-zodiak);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 24px;
}
.dep__card span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   CONTATO
   ============================================ */
.contato {
  padding: 140px 0;
  background: var(--bg);
  text-align: center;
}
.contato__inner h2 {
  font-family: var(--font-zodiak);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contato__inner > p {
  color: var(--cream-dim);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.contato__botoes {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: var(--bg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0D0D0D;
  padding: 72px 0 28px;
  border-top: 1px solid #1E1E1E;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.footer__logo { height: 46px; margin-bottom: 22px; }
.footer__desc {
  font-size: 13px;
  line-height: 1.9;
  color: #8A8A8A;
  max-width: 250px;
  letter-spacing: 0.02em;
}
.footer__title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer__list li {
  font-size: 13px;
  line-height: 1.6;
  color: #8A8A8A;
  letter-spacing: 0.02em;
}
.footer__list a { color: #8A8A8A; transition: color 0.25s ease; }
.footer__list a:hover { color: var(--gold); }

.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid #2A2A2A;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A8A8A;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer__social a:hover { color: var(--gold); border-color: var(--gold); }
.footer__social svg { width: 17px; height: 17px; fill: currentColor; }

.footer__bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid #1E1E1E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__bottom p {
  font-size: 12px;
  color: #6E6E6E;
  letter-spacing: 0.02em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .esp__grid,
  .dep__card { min-width: 100%; }

  .sobre__grid,
  .protocolo__grid,
  .mentoria__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .protocolo__grid { direction: ltr; }
  .protocolo__foto { order: -1; }
  .resultados__carrossel { padding: 0 44px; }
  .resultados__carrossel .swiper-slide { width: 260px; }

  .sobre, .especialidades, .protocolo,
  .resultados, .mentoria, .depoimentos, .contato {
    padding: 80px 0;
  }
  .protocolo { padding: 80px 24px; }
  .ipad { padding: 13px; border-radius: 36px; }
  .ipad__tela { border-radius: 25px; padding: 52px 36px; }
  .tela__botoes { top: 20px; left: 22px; gap: 8px; }
  .tela__botao { width: 11px; height: 11px; }
  .protocolo__grid { gap: 40px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  /* NAV */
  .nav__inner {
    padding: 0 20px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0;
  }
  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav__logo img { height: 48px; }
  .nav__hamburger { margin-right: auto; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #1A1A1A !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 1001;
  }
  .nav__links.open a { font-size: 16px; letter-spacing: 0.12em; }

  /* HERO */
  .hero {
    height: 100svh;
    align-items: flex-end;
  }
  .hero__foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero__foto::after {
    height: 55%;
  }
  .hero__content {
    padding: 0 28px 32px;
  }
  .hero__title-line1,
  .hero__title-line2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .hero__sub { font-size: 0.8rem; max-width: 100%; }
  .hero__local { font-size: 0.65rem; }
  .hero__content .btn--flow {
    margin-top: 26px;
    padding: 11px 26px;
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }
  .btn--flow__arr { width: 14px; height: 14px; }
  .btn--flow__arr--dir { right: 13px; }
  .btn--flow:hover .btn--flow__arr--esq { left: 13px; }
  .btn--flow__label { transform: translateX(-10px); }
  .btn--flow:hover .btn--flow__label { transform: translateX(10px); }

  /* SEÇÕES */
  .sobre, .especialidades, .protocolo,
  .resultados, .mentoria, .depoimentos, .contato {
    padding: 64px 0;
  }
  .protocolo { padding: 64px 16px; }
  .ipad { padding: 10px; border-radius: 28px; }
  .ipad__tela { border-radius: 19px; padding: 40px 24px; }
  .ipad__camera { width: 6px; height: 6px; top: 4px; }
  .tela__botoes { top: 15px; left: 16px; gap: 6px; }
  .tela__botao { width: 9px; height: 9px; }
  .btn--metal { padding: 14px 26px; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 36px; }

  /* SOBRE */
  .sobre__grid { gap: 36px; }
  .sobre__numeros { flex-direction: column; gap: 20px; }
  .sobre__texto h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* ESPECIALIDADES */
  .esp__grid { grid-template-columns: 1fr; gap: 2px; }
  .esp__card { padding: 36px 24px; }

  /* RESULTADOS */
  .resultados__carrossel { padding: 0; }
  .resultados__carrossel .swiper-slide { width: 240px; }
  .resultados__carrossel .swiper-button-prev,
  .resultados__carrossel .swiper-button-next { display: none; }

  /* DEPOIMENTOS */
  .dep__card { padding: 36px 24px; }

  /* MENTORIA */
  .mentoria__grid { gap: 36px; }

  /* CONTATO */
  .contato__inner { padding: 64px 20px; }
  .contato__botoes { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }

  /* FOOTER */
  .footer { padding: 52px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__logo { height: 40px; margin-bottom: 18px; }
  .footer__desc { max-width: 100%; }
  .footer__title { margin-bottom: 16px; }
  .footer__bottom {
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
