/* ============================================================
   Dra. Gabriella Souza - Landing Page
   Design tokens + estilos completos
   ============================================================ */

/* ---------- TOKENS / VARIÁVEIS ---------- */
:root {
  /* Paleta */
  --cream-50: #FDFBF8;
  --cream-100: #FAF7F3;
  --cream-200: #F2EBE3;
  --cream-300: #E5D9CB;
  --cream-400: #D9C9B6;

  --nude-100: #F4E8DE;
  --nude-200: #E8D5C8;
  --nude-300: #D9BFAD;
  --nude-400: #C2A28C;

  --champagne-400: #D4B896;
  --champagne-500: #C9A57B;
  --champagne-600: #B89165;
  --champagne-700: #A8845A;
  --champagne-800: #8B6F52;

  --ink-300: #C8BDB0;
  --ink-400: #A89B8C;
  --ink-500: #8B7D6F;
  --ink-600: #6B5D4F;
  --ink-700: #52412E;
  --ink-800: #3D2E1F;
  --ink-900: #2A1F14;

  /* Sombras */
  --shadow-soft: 0 2px 16px -4px rgba(61, 46, 31, 0.06);
  --shadow-softer: 0 1px 8px -2px rgba(61, 46, 31, 0.04);
  --shadow-glow: 0 8px 32px -8px rgba(201, 165, 123, 0.18);

  /* Tipografia */
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-100);
  color: var(--ink-700);
  line-height: 1.5;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

::selection {
  background-color: rgba(201, 165, 123, 0.25);
  color: var(--ink-900);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--cream-300); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--champagne-400); }

/* ---------- CONTAINERS ---------- */
.container-page {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 640px) {
  .container-page, .container-narrow { padding: 0 32px; }
}
@media (min-width: 1024px) {
  .container-page, .container-narrow { padding: 0 48px; }
}

/* ---------- TIPOGRAFIA / UTILS ---------- */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-700);
}
@media (min-width: 640px) { .eyebrow { font-size: 12px; } }

.heading-display {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink-800);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.body-text {
  color: var(--ink-600);
  line-height: 1.7;
  font-family: var(--font-body);
  font-weight: 300;
}

.divider-gold {
  height: 1px;
  width: 48px;
  background: linear-gradient(90deg, transparent, var(--champagne-500), transparent);
  display: inline-block;
}

/* ---------- BOTÕES ---------- */
.btn-primary,
.btn-secondary,
.btn-champagne {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink-800);
  color: var(--cream-100);
}
.btn-primary:hover {
  background: var(--ink-900);
  box-shadow: var(--shadow-glow);
}
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: transparent;
  color: var(--ink-800);
  border: 1px solid rgba(61, 46, 31, 0.25);
}
.btn-secondary:hover {
  background: rgba(61, 46, 31, 0.05);
  border-color: rgba(61, 46, 31, 0.45);
}
.btn-secondary:active { transform: scale(0.98); }

.btn-champagne {
  background: var(--champagne-700);
  color: var(--cream-50);
  padding: 8px 8px 8px 28px;
  gap: 12px;
  box-shadow: var(--shadow-softer);
}
.btn-champagne:hover {
  background: var(--champagne-800);
  box-shadow: var(--shadow-glow);
}
.btn-champagne:active { transform: scale(0.98); }

.btn-champagne .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(184, 145, 101, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.btn-champagne:hover .icon-circle { transform: rotate(12deg); }

.btn-champagne-sm {
  padding: 6px 6px 6px 18px;
  font-size: 12px;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-champagne-sm .icon-circle {
  width: 28px;
  height: 28px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 247, 243, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(229, 217, 203, 0.6);
}

/* Quando menu mobile está aberto, header fica com fundo sólido cream */
body.menu-open .site-header,
body:has(.mobile-menu.open) .site-header {
  background: var(--cream-100);
  border-bottom-color: rgba(229, 217, 203, 0.6);
}
.site-header .container-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
@media (min-width: 1024px) {
  .site-header .container-page { padding-top: 20px; padding-bottom: 20px; gap: 32px; }
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.logo .logo-mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .logo .logo-mark { width: 50px; height: 50px; }
}
.logo .logo-text {
  display: inline-block;
  line-height: 1;
}
.logo .logo-pre {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-800);
  font-size: 11px;
  line-height: 1;
}
.logo .logo-name {
  display: block;
  font-family: var(--font-serif);
  color: var(--ink-800);
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 16px;
  line-height: 1.05;
  margin-top: -2px;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .logo .logo-pre { font-size: 12px; }
  .logo .logo-name { font-size: 18px; }
}
@media (min-width: 1024px) {
  .logo .logo-name { font-size: 20px; }
}

/* Logo size sm para footer */
.logo.size-sm .logo-mark { width: 38px; height: 38px; }
.logo.size-sm .logo-pre { font-size: 10px; }
.logo.size-sm .logo-name { font-size: 15px; margin-top: -2px; }
@media (min-width: 640px) {
  .logo.size-sm .logo-name { font-size: 16px; }
}

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
@media (min-width: 1280px) {
  .nav-desktop { gap: 36px; }
}
.nav-desktop a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-800);
  transition: color 0.3s ease;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .nav-desktop a {
    font-size: 12px;
    letter-spacing: 0.18em;
  }
}
.nav-desktop a:hover { color: var(--champagne-700); }

.header-cta-desktop { display: none; }
@media (min-width: 1024px) {
  .header-cta-desktop { display: inline-flex; }
}

/* Toggle mobile */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-right: -8px;
  color: var(--ink-800);
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100svh;
  z-index: 60;
  background: var(--cream-100);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu.open {
    display: none;
    visibility: hidden;
  }
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 24px 40px;
  background: var(--cream-100);
  max-width: 100%;
}

/* Cabeçalho interno do menu mobile (logo + X) */
.mobile-menu-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--cream-100);
  border-bottom: 1px solid rgba(229, 217, 203, 0.6);
  gap: 16px;
}
.mobile-menu-header .logo { flex-shrink: 1; min-width: 0; }
.mobile-menu-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-800);
  border: 1px solid rgba(184, 145, 101, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.mobile-menu-close:hover,
.mobile-menu-close:active {
  background: var(--champagne-700);
  color: var(--cream-50);
  border-color: var(--champagne-700);
}
.mobile-menu nav a {
  padding: 16px 0;
  font-size: 17px;
  color: var(--ink-800);
  border-bottom: 1px solid rgba(229, 217, 203, 0.5);
}
.mobile-menu nav a:last-of-type { border-bottom: 0; }
.mobile-menu .mobile-cta {
  margin-top: 32px;
  background: var(--champagne-700);
  color: var(--cream-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  align-self: stretch;
}
.mobile-menu .location-info {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-500);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 80px;
  padding-bottom: 32px;
  overflow: hidden;
  background: var(--cream-100);
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 112px;
    padding-bottom: 0;
  }
}

/* Camada 1: cenário texturizado contínuo do lado direito */
.hero-scenery {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Gradiente principal que cria o "ambiente" do lado direito */
.hero-scenery::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Halo dourado central concentrado atrás da figura */
    radial-gradient(ellipse 55% 70% at 78% 55%, rgba(212, 184, 150, 0.55) 0%, rgba(232, 213, 200, 0.35) 40%, transparent 75%),
    /* Wash bege quente do lado direito */
    linear-gradient(105deg, transparent 0%, transparent 35%, rgba(232, 213, 200, 0.35) 55%, rgba(217, 191, 173, 0.45) 78%, rgba(212, 184, 150, 0.35) 100%);
}

/* Camada 2: arco/moldura orgânica mais marcada atrás da figura */
.hero-arch {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: 8%;
  right: -8%;
  width: 70%;
  height: 85%;
  background: radial-gradient(ellipse at center, rgba(194, 162, 140, 0.28) 0%, rgba(217, 191, 173, 0.35) 30%, transparent 70%);
  border-radius: 50% 40% 45% 50% / 60% 50% 50% 40%;
  filter: blur(10px);
}
@media (min-width: 1024px) {
  .hero-arch {
    top: 6%;
    right: -5%;
    width: 58%;
    height: 88%;
  }
}

/* Linhas decorativas verticais texturizadas (efeito de "veios" sutis) */
.hero-scenery::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Veios verticais sutis simulando textura */
    repeating-linear-gradient(
      92deg,
      transparent 0px,
      transparent 60px,
      rgba(168, 132, 90, 0.025) 60px,
      rgba(168, 132, 90, 0.025) 62px
    ),
    /* Granulação fina */
    radial-gradient(circle at 1px 1px, rgba(139, 111, 82, 0.06) 1px, transparent 0);
  background-size: auto, 28px 28px;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

/* Camada 3: reflexos de luz dourada (raios suaves) */
.hero-light {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  background:
    linear-gradient(115deg,
      transparent 0%,
      transparent 30%,
      rgba(232, 213, 200, 0.25) 50%,
      rgba(212, 184, 150, 0.15) 65%,
      transparent 100%
    );
  filter: blur(3px);
  opacity: 0.7;
}

/* Mancha clara onde fica o blazer branco (puxa atenção pro centro) */
.hero-glow {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  bottom: 0;
  right: 5%;
  width: 55%;
  height: 60%;
  background: radial-gradient(ellipse at center bottom, rgba(255, 250, 245, 0.45) 0%, transparent 65%);
  filter: blur(20px);
}

/* Veios SVG decorativos do fundo */
.hero-veins {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  opacity: 0.85;
}
@media (max-width: 1023px) {
  .hero-veins {
    width: 100%;
    opacity: 0.5;
  }
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: calc(100svh - 96px);
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(12, 1fr); }
}

.hero-text {
  order: 2;
  padding: 0 24px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 12;
}
@media (min-width: 640px) { .hero-text { padding: 0 40px; } }
@media (min-width: 1024px) {
  .hero-text {
    grid-column: span 5;
    order: 1;
    margin: 0;
    padding: 0 16px 0 64px;
  }
}
@media (min-width: 1280px) { .hero-text { padding-left: 96px; padding-right: 0; } }

/* Garante legibilidade do texto sobre o gradiente */
@media (min-width: 1024px) {
  .hero-text::before {
    content: '';
    position: absolute;
    inset: -40px -60px -40px -100px;
    background: radial-gradient(ellipse at 30% 50%, rgba(250, 247, 243, 0.85) 0%, rgba(250, 247, 243, 0.6) 50%, transparent 80%);
    z-index: -1;
    pointer-events: none;
  }
}

.hero h1 {
  font-family: var(--font-serif);
  color: var(--ink-800);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
@media (min-width: 640px) {
  .hero h1 { font-size: 48px; line-height: 1.05; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 68px; line-height: 1.02; }
}
@media (min-width: 1280px) {
  .hero h1 { font-size: 78px; }
}
@media (min-width: 1440px) {
  .hero h1 { font-size: 84px; }
}
.hero h1 em {
  color: var(--champagne-700);
  font-weight: 400;
}

.hero-subhead {
  margin-top: 20px;
  max-width: 580px;
  font-size: 14px;
  line-height: 1.65;
}
@media (min-width: 640px) {
  .hero-subhead { margin-top: 28px; font-size: 15px; }
}
@media (min-width: 1024px) {
  .hero-subhead { margin-top: 36px; font-size: 16px; line-height: 1.75; }
}

.hero-ctas {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) { .hero-ctas { margin-top: 32px; } }
@media (min-width: 1024px) { .hero-ctas { margin-top: 40px; } }

.hero-cta-primary { font-size: 15px; }

.hero-cta-secondary {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(61, 46, 31, 0.25);
  color: var(--ink-800);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 247, 243, 0.5);
  backdrop-filter: blur(4px);
}
.hero-cta-secondary:hover {
  background: rgba(61, 46, 31, 0.05);
  border-color: rgba(61, 46, 31, 0.45);
}

/* Selos */
.hero-badges {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 580px;
}
@media (min-width: 640px) { .hero-badges { gap: 24px; } }
@media (min-width: 1024px) { .hero-badges { margin-top: 56px; } }

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) {
  .hero-badge { gap: 16px; }
}
.hero-badge-divider {
  display: none;
  height: 40px;
  width: 1px;
  background: rgba(184, 145, 101, 0.3);
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .hero-badge:not(:first-child) .hero-badge-divider { display: block; }
}
.hero-badge .badge-icon { flex-shrink: 0; color: var(--champagne-700); }
.hero-badge .badge-icon svg { width: 22px; height: 22px; }
.hero-badge .badge-text { font-size: 12px; color: var(--ink-700); line-height: 1.3; }
@media (min-width: 640px) {
  .hero-badge .badge-text { font-size: 13px; }
}

/* Exclusividade */
.hero-exclusivity {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 145, 101, 0.2);
  max-width: 580px;
}
.hero-exclusivity p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-600);
}
@media (min-width: 1024px) {
  .hero-exclusivity p { font-size: 14px; }
}
.hero-exclusivity svg {
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--champagne-700);
}
.hero-exclusivity em {
  font-style: normal;
  color: var(--champagne-700);
  font-weight: 500;
}

/* ---------- COLUNA DA IMAGEM (foto integrada ao cenário) ---------- */
.hero-image-col {
  order: 1;
  position: relative;
  z-index: 11;
  width: 100%;
  min-height: 280px;
  max-height: 48svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (min-width: 640px) { .hero-image-col { min-height: 360px; max-height: 52svh; } }
@media (min-width: 1024px) {
  .hero-image-col {
    grid-column: span 7;
    order: 2;
    min-height: 100svh;
    max-height: none;
    align-self: stretch;
    justify-content: center;
    /* Foto sangra para a esquerda invadindo o texto */
    margin-left: -8%;
  }
}
@media (min-width: 1280px) {
  .hero-image-col {
    margin-left: -10%;
  }
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero-image-wrap {
    height: 100%;
    max-height: 100svh;
  }
}

/* Sombra projetada atrás da figura (cria profundidade) */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 88%;
  background: radial-gradient(ellipse at center 70%, rgba(82, 65, 46, 0.18) 0%, rgba(82, 65, 46, 0.08) 40%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero-image-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  max-height: 48svh;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  /* Sombra sutil para grudar a figura ao chão */
  filter: drop-shadow(0 30px 50px rgba(82, 65, 46, 0.15)) drop-shadow(0 10px 20px rgba(82, 65, 46, 0.08));
}
@media (min-width: 640px) {
  .hero-image-wrap img {
    max-width: 400px;
    max-height: 52svh;
  }
}
@media (min-width: 1024px) {
  .hero-image-wrap img {
    max-width: 620px;
    max-height: 95svh;
  }
}
@media (min-width: 1280px) {
  .hero-image-wrap img {
    max-width: 700px;
  }
}
@media (min-width: 1440px) {
  .hero-image-wrap img {
    max-width: 760px;
  }
}

/* Quando for placeholder (sem foto) */
.hero-image-wrap .img-placeholder {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 32px;
}

/* Mobile: transição suave da foto para o texto */
@media (max-width: 1023px) {
  /* Foto e texto não se sobrepõem - se encostam com transição visual */
  .hero-image-col {
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
  }

  /* Máscara aplicada DIRETAMENTE na imagem para dissolver a base do PNG */
  .hero-image-wrap img {
    -webkit-mask-image: linear-gradient(to bottom,
      black 0%,
      black 70%,
      rgba(0,0,0,0.6) 88%,
      transparent 100%
    );
    mask-image: linear-gradient(to bottom,
      black 0%,
      black 70%,
      rgba(0,0,0,0.6) 88%,
      transparent 100%
    );
  }

  /* Fade adicional na base do container, dissolvendo no fundo cream */
  .hero-image-wrap::after {
    content: '';
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -2px;
    height: 50%;
    background: linear-gradient(to bottom,
      transparent 0%,
      rgba(250, 247, 243, 0.2) 30%,
      rgba(250, 247, 243, 0.6) 60%,
      rgba(250, 247, 243, 0.92) 85%,
      var(--cream-100) 100%
    );
    z-index: 3;
    pointer-events: none;
  }

  /* Fade extra na coluna inteira para amarrar com a seção de baixo */
  .hero-image-col::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: linear-gradient(to bottom,
      transparent 0%,
      var(--cream-100) 100%
    );
    z-index: 4;
    pointer-events: none;
  }

  /* Respiro entre foto e texto no mobile */
  .hero-text {
    margin-top: 24px;
    padding-top: 0;
  }
  /* No mobile, remover o blur de fundo do texto que pode estar criando ruído */
  .hero-text::before {
    display: none;
  }
}

/* ---------- PROCEDIMENTOS ---------- */
.section { padding: 96px 0; }
@media (min-width: 1024px) { .section { padding: 128px 0; } }

.section-procedures { background: var(--cream-100); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
@media (min-width: 1024px) { .section-header { margin-bottom: 80px; } }

.section-header .eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink-800);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
@media (min-width: 640px) { .section-header h2 { font-size: 36px; } }
@media (min-width: 1024px) { .section-header h2 { font-size: 48px; } }

.section-header h2 em {
  font-family: var(--font-serif);
  color: var(--champagne-700);
  font-weight: 400;
}

.section-header .subtitle {
  margin-top: 24px;
  font-size: 16px;
}
@media (min-width: 1024px) { .section-header .subtitle { font-size: 17px; } }

.procedures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .procedures-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .procedures-grid { grid-template-columns: repeat(4, 1fr); }
}

.procedure-card {
  position: relative;
  background: var(--cream-50);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(229, 217, 203, 0.6);
  transition: all 0.5s ease;
}
.procedure-card:hover {
  border-color: rgba(201, 165, 123, 0.4);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.procedure-card .icon-circle-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nude-100), var(--cream-200));
  border: 1px solid rgba(201, 165, 123, 0.2);
  color: var(--champagne-700);
  transition: all 0.5s ease;
}
.procedure-card:hover .icon-circle-bg {
  background: linear-gradient(135deg, var(--nude-200), rgba(212, 184, 150, 0.2));
  transform: scale(1.05);
}

.procedure-card h3 {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-800);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.procedure-card p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 300;
}

.procedure-card-line {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 123, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.procedure-card:hover .procedure-card-line { opacity: 1; }

/* ---------- SOBRE ---------- */
.section-about {
  background: rgba(242, 235, 227, 0.6);
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(232, 213, 200, 0.35), transparent 65%),
    radial-gradient(ellipse 40% 30% at 0% 100%, rgba(201, 165, 123, 0.1), transparent 60%);
}
.section-about .grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(139, 111, 82, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.4;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 64px;
  }
}
@media (min-width: 1280px) {
  .about-grid { gap: 80px; }
}

.about-image-col {
  position: relative;
}
@media (min-width: 1024px) { .about-image-col { grid-column: span 5; } }

.about-image-inner {
  position: relative;
  max-width: 448px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .about-image-inner { max-width: none; } }

.about-image-deco-circle {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 123, 0.4);
}
@media (min-width: 1024px) {
  .about-image-deco-circle { width: 160px; height: 160px; }
}

.about-image-deco-blur {
  position: absolute;
  bottom: -32px;
  right: -16px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--nude-200), rgba(212, 184, 150, 0.4));
  filter: blur(40px);
}
@media (min-width: 1024px) {
  .about-image-deco-blur { width: 128px; height: 128px; }
}

.about-image-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--cream-300);
  aspect-ratio: 3 / 4;
}
.about-image-frame img,
.about-image-frame .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-signature-badge {
  position: absolute;
  bottom: -24px;
  left: -8px;
  background: rgba(253, 251, 248, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid var(--cream-300);
  box-shadow: var(--shadow-softer);
  max-width: 220px;
}
@media (min-width: 1024px) {
  .about-signature-badge { left: -24px; }
}
.about-signature-badge .name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-800);
  line-height: 1.2;
}
.about-signature-badge .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-700);
  margin-top: 4px;
}

.about-text-col {}
@media (min-width: 1024px) { .about-text-col { grid-column: span 7; } }

.about-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.about-eyebrow-row .line {
  height: 1px;
  width: 40px;
  background: rgba(184, 145, 101, 0.8);
}

.about-text-col h2 {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink-800);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 580px;
}
@media (min-width: 640px) { .about-text-col h2 { font-size: 36px; } }
@media (min-width: 1024px) { .about-text-col h2 { font-size: 44px; } }
.about-text-col h2 em {
  font-family: var(--font-serif);
  color: var(--champagne-700);
  font-weight: 400;
}

.about-paragraphs {
  margin-top: 32px;
  max-width: 640px;
}
.about-paragraphs p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-600);
  font-family: var(--font-body);
  font-weight: 300;
}
.about-paragraphs p + p { margin-top: 20px; }
@media (min-width: 1024px) {
  .about-paragraphs p { font-size: 16px; }
}

.about-credentials {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 32px;
}
@media (min-width: 640px) { .about-credentials { grid-template-columns: repeat(2, 1fr); } }

.about-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-credentials .check {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201, 165, 123, 0.15);
  color: var(--champagne-700);
  flex-shrink: 0;
}
.about-credentials .check svg { width: 11px; height: 11px; }
.about-credentials li span:last-child {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.4;
}

/* ---------- DIFERENCIAIS ---------- */
.section-differentials { background: var(--cream-100); }

.differentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(229, 217, 203, 0.6);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(229, 217, 203, 0.6);
}
@media (min-width: 640px) { .differentials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .differentials-grid { grid-template-columns: repeat(3, 1fr); } }

.differential-card {
  background: var(--cream-50);
  padding: 32px;
  transition: background-color 0.5s ease;
}
@media (min-width: 1024px) { .differential-card { padding: 40px; } }
.differential-card:hover { background: var(--cream-100); }

.differential-card .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nude-100);
  color: var(--champagne-700);
  margin-bottom: 24px;
  transition: background-color 0.5s ease;
}
.differential-card:hover .icon-circle { background: var(--nude-200); }
.differential-card .icon-circle svg { width: 20px; height: 20px; }

.differential-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-800);
  line-height: 1.3;
  margin-bottom: 12px;
}
.differential-card p {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 300;
}

/* ---------- INDICAÇÕES ---------- */
.section-indications {
  background: rgba(242, 235, 227, 0.6);
  position: relative;
  overflow: hidden;
}
.section-indications .grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(139, 111, 82, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.3;
}
.section-indications .deco-blur {
  position: absolute;
  top: -128px;
  right: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 213, 200, 0.4), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.indications-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .indications-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .indications-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.indication-card {
  position: relative;
  background: var(--cream-50);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(229, 217, 203, 0.6);
  transition: all 0.5s ease;
}
@media (min-width: 1024px) { .indication-card { padding: 32px; } }
.indication-card:hover {
  border-color: rgba(201, 165, 123, 0.4);
  box-shadow: var(--shadow-soft);
}

.indication-card .head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.indication-card .number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  color: var(--champagne-600);
  line-height: 1;
}
.indication-card .head-line {
  height: 1px;
  flex: 1;
  background: var(--cream-300);
  transition: background-color 0.5s ease;
}
.indication-card:hover .head-line { background: rgba(201, 165, 123, 0.4); }

.indication-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-800);
  line-height: 1.3;
  margin-bottom: 12px;
}
.indication-card p {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 300;
}

/* ---------- DEPOIMENTOS ---------- */
.section-testimonials { background: var(--cream-100); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { gap: 24px; } }

.testimonial-card {
  position: relative;
  background: var(--cream-50);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(229, 217, 203, 0.6);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .testimonial-card { padding: 36px; } }
.testimonial-card:hover {
  border-color: rgba(201, 165, 123, 0.4);
  box-shadow: var(--shadow-soft);
}

.testimonial-quote-mark {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 60px;
  color: rgba(201, 165, 123, 0.3);
  line-height: 1;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars svg {
  width: 14px;
  height: 14px;
  color: var(--champagne-500);
  fill: var(--champagne-500);
}

.testimonial-quote {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-600);
  font-family: var(--font-body);
  font-weight: 300;
  flex: 1;
}

.testimonial-author {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(229, 217, 203, 0.7);
}
.testimonial-author .name {
  font-weight: 500;
  color: var(--ink-800);
  font-size: 15px;
}
.testimonial-author .meta {
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.section-faq {
  background: rgba(242, 235, 227, 0.6);
  position: relative;
  overflow: hidden;
}
.section-faq .grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(139, 111, 82, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.3;
}

.faq-wrap {
  position: relative;
  background: var(--cream-50);
  border-radius: 24px;
  border: 1px solid rgba(229, 217, 203, 0.6);
  box-shadow: var(--shadow-softer);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(229, 217, 203, 0.7);
}
.faq-item:last-child { border-bottom: 0; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  text-align: left;
  transition: background-color 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-800);
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .faq-question { padding: 28px 32px; font-size: 16px; }
}
.faq-question:hover { background: rgba(250, 247, 243, 0.5); }

.faq-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 123, 0.4);
  color: var(--champagne-700);
  transition: all 0.5s ease;
}
.faq-toggle svg { width: 14px; height: 14px; }

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(201, 165, 123, 0.1);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.5s ease, opacity 0.5s ease;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-answer-inner { overflow: hidden; }
.faq-answer p {
  padding: 0 24px 28px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-600);
  font-family: var(--font-body);
  font-weight: 300;
  max-width: 640px;
}
@media (min-width: 1024px) { .faq-answer p { padding: 0 32px 28px; } }

/* ---------- CTA FINAL ---------- */
.section-cta { background: var(--cream-100); overflow: hidden; }

.cta-box {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-200), var(--nude-100), rgba(229, 217, 203, 0.8));
  padding: 80px 32px;
  text-align: center;
  border: 1px solid rgba(201, 165, 123, 0.15);
}
@media (min-width: 640px) { .cta-box { padding: 80px 48px; } }
@media (min-width: 1024px) { .cta-box { padding: 96px 80px; } }

.cta-box-decor-1,
.cta-box-decor-2,
.cta-box-grain {
  position: absolute;
  pointer-events: none;
}
.cta-box-decor-1 {
  top: -160px;
  left: -160px;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 213, 200, 0.6), transparent 70%);
  filter: blur(70px);
}
.cta-box-decor-2 {
  bottom: -128px;
  right: -128px;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 184, 150, 0.3), transparent 70%);
  filter: blur(70px);
}
.cta-box-grain {
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(139, 111, 82, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
}

.cta-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.cta-content h2 {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink-800);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
@media (min-width: 640px) { .cta-content h2 { font-size: 36px; } }
@media (min-width: 1024px) { .cta-content h2 { font-size: 52px; } }
.cta-content h2 em {
  font-family: var(--font-serif);
  color: var(--champagne-700);
  font-weight: 400;
}

.cta-subhead {
  margin-top: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.75;
}
@media (min-width: 1024px) { .cta-subhead { font-size: 17px; } }

.cta-button-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: rgba(242, 235, 227, 0.8);
  border-top: 1px solid rgba(229, 217, 203, 0.6);
}
.footer-inner {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1024px) {
  .footer-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }
}
@media (min-width: 1024px) { .footer-grid { gap: 64px; } }

.footer-grid > div { min-width: 0; word-wrap: break-word; }

.footer-col-brand {}
@media (min-width: 768px) { .footer-col-brand { grid-column: span 5; } }

.footer-brand-tagline {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
  max-width: 320px;
  font-family: var(--font-body);
  font-weight: 300;
}
.footer-instagram {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-700);
  transition: color 0.3s ease;
}
.footer-instagram:hover { color: var(--champagne-700); }
.footer-instagram svg { width: 16px; height: 16px; }

.footer-col-contact {}
@media (min-width: 768px) { .footer-col-contact { grid-column: span 4; } }

.footer-col-schedule {}
@media (min-width: 768px) { .footer-col-schedule { grid-column: span 3; } }

.footer-list { margin-top: 20px; }
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-700);
}
.footer-list li + li { margin-top: 16px; }
.footer-list svg {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--champagne-700);
}
.footer-list .label { display: block; }
.footer-list .value {
  color: var(--ink-800);
  display: block;
}
.footer-list a:hover .value,
.footer-list a:hover { color: var(--champagne-700); }

.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 217, 203, 0.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  color: var(--ink-500);
  width: 100%;
}
.footer-bottom p {
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 8px;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.wa-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(201, 165, 123, 0.4);
  filter: blur(20px);
  transform: scale(1.1);
  transition: transform 0.5s ease;
}
.wa-float:hover::before { transform: scale(1.25); }

.wa-float .wa-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne-600), var(--champagne-700));
  color: var(--cream-50);
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(250, 247, 243, 0.3);
  transition: transform 0.3s ease;
}
.wa-float:hover .wa-button { transform: scale(1.05); }
.wa-float .wa-button svg { width: 22px; height: 22px; }

.wa-float .wa-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 12px;
  white-space: nowrap;
  background: var(--cream-50);
  color: var(--ink-800);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--cream-300);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ---------- PLACEHOLDER (sem imagem) ---------- */
.img-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nude-200), var(--cream-200), rgba(212, 184, 150, 0.3));
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(139, 111, 82, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.4;
}
.img-placeholder .placeholder-text {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
}
.img-placeholder .placeholder-text::before {
  content: '';
  display: block;
  margin: 0 auto 12px;
  height: 1px;
  width: 48px;
  background: rgba(168, 132, 90, 0.6);
}
.img-placeholder .placeholder-text span {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--champagne-800);
  font-size: 14px;
}

/* ---------- REVEAL ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- RESULTADOS (carrossel editorial) ---------- */
.section-results {
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.section-results .deco {
  position: absolute;
  pointer-events: none;
  top: 20%;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 213, 200, 0.4), transparent 70%);
  filter: blur(70px);
}

.results-wrapper {
  position: relative;
}

.results-track-container {
  overflow: hidden;
  margin: 0 -24px;
  padding: 8px 0;
}
@media (min-width: 640px) { .results-track-container { margin: 0 -32px; } }
@media (min-width: 1024px) { .results-track-container { margin: 0 -48px; } }

.results-track {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.results-track::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .results-track { gap: 20px; padding: 0 32px; } }
@media (min-width: 1024px) { .results-track { gap: 24px; padding: 0 48px; } }

.result-card {
  flex: 0 0 75%;
  scroll-snap-align: start;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream-300);
  aspect-ratio: 1 / 1;
  transition: transform 0.5s ease;
}
@media (min-width: 640px) { .result-card { flex-basis: 45%; } }
@media (min-width: 1024px) { .result-card { flex-basis: 30%; } }
@media (min-width: 1280px) { .result-card { flex-basis: 24%; } }

.result-card img,
.result-card .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.result-card:hover img { transform: scale(1.04); }

.result-card .result-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(42, 31, 20, 0.75), rgba(42, 31, 20, 0.3) 60%, transparent);
  color: var(--cream-50);
}
.result-card .result-caption .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-400);
  font-weight: 500;
}
.result-card .result-caption .title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream-50);
  margin-top: 6px;
  line-height: 1.3;
}

/* Controles do carrossel */
.results-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 1024px) { .results-controls { margin-top: 48px; } }

.results-dots {
  display: flex;
  gap: 8px;
  flex: 1;
  align-items: center;
}
.results-dot {
  width: 24px;
  height: 2px;
  background: var(--cream-300);
  border-radius: 999px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.results-dot.active {
  background: var(--champagne-600);
  width: 48px;
}

.results-arrows {
  display: flex;
  gap: 8px;
}
.results-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184, 145, 101, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-800);
  background: var(--cream-50);
  transition: all 0.3s ease;
}
.results-arrow:hover {
  background: var(--champagne-700);
  color: var(--cream-50);
  border-color: var(--champagne-700);
}
.results-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.results-arrow:disabled:hover {
  background: var(--cream-50);
  color: var(--ink-800);
  border-color: rgba(184, 145, 101, 0.3);
}
.results-arrow svg { width: 16px; height: 16px; }

.results-disclaimer {
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-500);
  font-style: italic;
  font-family: var(--font-serif);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- ACESSIBILIDADE ---------- */
:focus-visible {
  outline: 2px solid var(--champagne-600);
  outline-offset: 3px;
  border-radius: 4px;
}
