@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&display=swap');

/* ============================================
   RECONSTRUIR — Clínica de Recuperação
   Design System & Styles
============================================ */

:root {
  /* Brand palette — identidade verde + creme + dourado
     (mantemos os nomes --navy-* por compatibilidade; agora são tons de verde) */
  --navy-900: #133024;
  --navy-800: #1C4733;
  --navy-700: #265B41;
  --navy-600: #357A55;
  --navy-50: #ebf3ee;

  /* Aliases semânticos (verde) */
  --green-900: #133024;
  --green-800: #1C4733;
  --green-700: #265B41;
  --green-600: #357A55;
  --green-500: #3f9266;

  --gold-500: #C9A24B;
  --gold-600: #b08e3c;
  --gold-400: #ddbd72;
  --gold-100: #f6edd7;

  --cream-50: #FAF7F1;
  --cream-100: #F3EDE1;
  --cream-200: #E7DECC;

  --ink-900: #1c241f;
  --ink-700: #3c4640;
  --ink-500: #69736c;
  --ink-300: #a3aaa4;

  --white: #ffffff;

  /* Type — sans no corpo, serif nos títulos */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: var(--font-sans);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(19, 48, 36, 0.06);
  --shadow-md: 0 4px 14px rgba(19, 48, 36, 0.10);
  --shadow-lg: 0 14px 40px rgba(19, 48, 36, 0.14);
  --shadow-xl: 0 24px 60px rgba(19, 48, 36, 0.20);
  --shadow-green: 0 10px 26px rgba(28, 71, 51, 0.28);
  --shadow-gold: 0 8px 24px rgba(201, 162, 75, 0.30);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Transitions */
  --t-fast: 180ms cubic-bezier(.4, 0, .2, 1);
  --t-base: 280ms cubic-bezier(.4, 0, .2, 1);
  --t-slow: 500ms cubic-bezier(.4, 0, .2, 1);
}

/* ============================================
   Base
============================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover { color: var(--gold-600); }

.italic-accent {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 500;
}

/* Gold underline accent */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 1rem;
}

.kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}

.kicker.centered::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}

.kicker.on-dark { color: var(--gold-400); }
.kicker.on-dark::before,
.kicker.on-dark::after { background: var(--gold-400); }

/* ============================================
   Buttons
============================================ */

.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: all var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}

.btn-gold {
  background: linear-gradient(180deg, var(--green-600) 0%, var(--green-700) 100%);
  color: var(--white);
  border-color: var(--green-700);
  box-shadow: var(--shadow-green);
}

.btn-gold:hover {
  background: linear-gradient(180deg, var(--green-500) 0%, var(--green-600) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(28, 71, 51, 0.38);
}

.btn-outline-gold {
  background: transparent;
  color: var(--green-700);
  border-color: rgba(38, 91, 65, 0.45);
}

.btn-outline-gold:hover {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
  transform: translateY(-2px);
}

/* Variante dourada explícita (acento), caso necessário */
.btn-amber {
  background: linear-gradient(180deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--navy-900);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
}
.btn-amber:hover { color: var(--navy-900); transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1eb858;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-icon-circle {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

/* ============================================
   Navbar
============================================ */

/* Cabeçalho fixo: barra de contato + navbar (fundo claro) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.topbar {
  background: transparent;
  color: var(--ink-700);
  font-size: 0.8rem;
  overflow: hidden;
  max-height: 60px;
  opacity: 1;
  transition: max-height var(--t-base), opacity var(--t-base);
}
/* Recolhe a barra superior ao rolar, deixando a navbar flutuante */
.site-header.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar-info a {
  color: var(--ink-700);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.topbar-info a:hover { color: var(--gold-600); }
.topbar-info svg { color: var(--gold-500); flex-shrink: 0; }

/* Páginas internas: topbar sobre fundo escuro → texto branco */
.site-header.is-interna .topbar-info,
.site-header.is-interna .topbar-info a { color: var(--white); }
.site-header.is-interna .topbar-info svg { color: var(--white); }
.site-header.is-interna .topbar-info a:hover { color: var(--gold-400); }
.site-header.is-interna .topbar-social,
.site-header.is-interna .topbar-social a { color: var(--white); }
.site-header.is-interna .topbar-social a:hover { color: var(--gold-400); }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social a { color: var(--gold-500); display: inline-flex; }
.topbar-social a:hover { color: var(--gold-600); }
@media (max-width: 767px) {
  .topbar-info { gap: 14px; font-size: 0.74rem; }
  .topbar-social { display: none; }
}

.navbar-custom {
  z-index: 1000;
  padding: 6px 0 12px;
  transition: all var(--t-base);
  background: transparent;
  border-bottom: none;
}

/* Pílula arredondada e centralizada da navbar */
.navbar-custom .container {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  padding: 16px 20px 16px 32px;
  transition: all var(--t-base);
}

.navbar-custom.scrolled {
  padding: 4px 0 8px;
  backdrop-filter: blur(20px);
}

.navbar-custom.scrolled .container {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(19, 48, 36, 0.14);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid;
  place-items: center;
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 2px 8px rgba(212, 168, 83, 0.3);
}

.nav-logo:hover { color: var(--green-700); }

.nav-logo-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold-400);
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-700);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--green-700);
  background: var(--navy-50);
}

.nav-links a.active {
  color: var(--green-700);
}

/* Botão "Fale Conosco" dentro do menu: mantém fundo verde + texto branco
   (sobrescreve a cor herdada de .nav-links a) */
.nav-links a.btn-gold,
.nav-links a.btn-gold:hover,
.nav-links a.btn-gold:focus {
  color: var(--white);
  background: linear-gradient(180deg, var(--green-600) 0%, var(--green-700) 100%);
}
.nav-links a.btn-gold:hover {
  background: linear-gradient(180deg, var(--green-500) 0%, var(--green-600) 100%);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--green-800);
  font-size: 1.5rem;
  padding: 8px;
}

/* ============================================
   Hero
============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 60px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #0B1838 0%, #1a2b5e 50%, #2c3e7a 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(212, 168, 83, 0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(30, 58, 122, 0.4), transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-image-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--navy-800) 0%, transparent 30%),
    repeating-linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #1e3a7a 0%, #D4A853 100%);
  opacity: 0.5;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero h1 {
  color: var(--white);
  font-weight: 500;
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--gold-400);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ============================================
   Hero dividido (claro) — estilo do esboço
============================================ */
.hero-split {
  position: relative;
  background:
    radial-gradient(ellipse 60% 55% at 92% 28%, rgba(201, 162, 75, 0.14), transparent 60%),
    radial-gradient(ellipse 70% 60% at 6% 90%, rgba(28, 71, 51, 0.08), transparent 55%),
    var(--cream-50);
  padding: 150px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(28,71,51,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,71,51,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 30%, black 10%, transparent 70%);
}
.hero-split .carousel-item { padding: 4px 2px; }
.hero-split-text { color: var(--ink-700); }
.hero-split-text .kicker { color: var(--green-700); }
.hero-split-text .kicker::before { background: var(--gold-500); }
.hero-split-text h1 {
  color: var(--green-900);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-split-text h1 .accent,
.hero-split-text h1 b,
.hero-split-text h1 strong {
  color: var(--green-600);
  font-weight: 700;
}
.hero-split-lead {
  font-size: 1.08rem;
  color: var(--ink-500);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-split .hero-actions { margin-bottom: 2.25rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--cream-50);
  margin-left: -12px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-text strong {
  display: block;
  color: var(--green-900);
  font-size: 0.95rem;
  line-height: 1.2;
}
.hero-trust-text .stars { color: var(--gold-500); font-size: 0.85rem; letter-spacing: 1px; }
.hero-trust-text small { color: var(--ink-500); font-size: 0.8rem; }

.hero-split-media { position: relative; }
.hero-split-photo {
  /* Recorte orgânico irregular (máscara SVG) — estilo do esboço */
  --hero-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M11,7 C32,2 61,4 84,5 C94,5 99,10 98,21 C97,46 99,69 97,85 C96,95 88,98 75,96 C54,93 32,99 17,94 C7,91 3,84 6,73 C9,54 2,37 7,21 C8,13 7,10 11,7 Z' fill='%23000'/%3E%3C/svg%3E");
  position: relative;
  aspect-ratio: 4 / 3.4;
  background: linear-gradient(160deg, var(--green-700), var(--gold-500));
  -webkit-mask: var(--hero-mask) center / 100% 100% no-repeat;
          mask: var(--hero-mask) center / 100% 100% no-repeat;
  filter: drop-shadow(0 26px 44px rgba(19, 48, 36, 0.26));
}
.hero-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,48,36,0) 55%, rgba(19,48,36,0.28) 100%);
}
.hero-floating-card {
  position: absolute;
  right: 60px;
  bottom: 30px;
  z-index: 3;
  background: var(--green-800);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 250px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-floating-card .hfc-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201,162,75,0.18);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-floating-card strong { display: block; font-size: 0.92rem; line-height: 1.15; }
.hero-floating-card small { color: rgba(255,255,255,0.7); font-size: 0.76rem; }
.hero-split .carousel-indicators { position: static; margin: 32px 0 0; justify-content: flex-start; }
.hero-split .carousel-indicators [data-bs-target] {
  width: 28px; height: 4px; border-radius: 2px; border: 0;
  background: rgba(28,71,51,0.25);
}
.hero-split .carousel-indicators .active { background: var(--green-600); }

@media (max-width: 991px) {
  .hero-split { padding: 130px 0 70px; text-align: center; }
  .hero-split-text .kicker { justify-content: center; }
  .hero-split .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-split-media { margin-top: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
  .hero-split .carousel-indicators { justify-content: center; }
}
@media (max-width: 576px) {
  .hero-split { padding: 160px 0 56px; }
  .hero-floating-card { left: 8px; right: 8px; bottom: 12px; max-width: none; }
}

/* Feature cards — faixa abaixo do hero (estilo do esboço) */
.feature-strip-section {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 80px 0 70px;
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  overflow: hidden;
}
/* marca d'água sutil (cruz) no canto superior direito */
.feature-strip-section::after {
  content: '';
  position: absolute;
  top: 28px;
  right: 40px;
  width: 120px;
  height: 120px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A24B' stroke-width='1' stroke-linejoin='round'%3E%3Cpath d='M13.5 2h-3v5h-5v3h5v12h3V10h5V7h-5z'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
}
.feature-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}
.feature-head h2 { margin-bottom: 0.75rem; }
.feature-head h2 .accent { color: var(--gold-600); }
.feature-head p { color: var(--ink-500); margin: 0; }

.stats-band-section {
  padding: 10px 0 0;
}

.help-banner-section {
  padding: 26px 0 90px;
}

.stats-band-section .stats-band,
.help-banner-section .help-banner {
  margin-top: 0;
}

@media (max-width: 991px) {
  .feature-strip-section { margin-top: 0; padding: 60px 0 40px; }
}
@media (max-width: 640px) {
  .feature-strip-section { margin-top: 0; padding: 48px 0 32px; }
  .help-banner-section { padding: 20px 0 60px; }
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px 26px;
  position: relative;
  box-shadow: 0 10px 30px -18px rgba(28, 71, 51, 0.25);
  transition: all var(--t-base);
  border: 1px solid var(--cream-200);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream-50);
  border: 1.5px solid rgba(201, 162, 75, 0.45);
  display: grid;
  place-items: center;
  color: var(--navy-800);
  margin-bottom: 18px;
  transition: all var(--t-base);
}

.feature-icon svg{
  color: var(--navy-800);
  transition: color var(--t-base);
}

.feature-card:hover .feature-icon {
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: scale(1.05);
}

.feature-card:hover .feature-icon svg {
  color: var(--gold-400);
}

.feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

.feature-card .feature-dot {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(6px);
  transition: all var(--t-base);
}

.feature-card:hover .feature-dot {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   Stats Section (dark band)
============================================ */

.stats-band {
  background: linear-gradient(115deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-lg);
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(212, 168, 83, 0.18) 0%, rgba(212, 168, 83, 0) 60%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(212, 168, 83, 0.12) 0%, rgba(212, 168, 83, 0) 70%);
  pointer-events: none;
}

.stats-band::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background:
    linear-gradient(270deg, rgba(15, 31, 71, 0) 0%, var(--navy-800) 100%),
    repeating-linear-gradient(135deg, rgba(212, 168, 83, 0.06) 0 1px, transparent 1px 14px);
  opacity: 1;
  pointer-events: none;
}

.stats-band > * { position: relative; z-index: 1; }

.stats-band h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  max-width: 420px;
}

.stats-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.stat-item {
  border-left: 2px solid rgba(212, 168, 83, 0.4);
  padding-left: 16px;
}

.stat-icon {
  width: 28px;
  height: 28px;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold-400);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* ============================================
   Help Banner
============================================ */

.help-banner {
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-600) 100%);
  border-radius: var(--r-pill);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-gold);
}

.help-banner-text {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--navy-900);
}

.help-banner-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 24, 56, 0.15);
  display: grid;
  place-items: center;
  color: var(--navy-900);
  flex-shrink: 0;
}

.help-banner strong {
  font-size: 0.95rem;
  display: block;
}

.help-banner small {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* ============================================
   Section: About / Story
============================================ */

.section {
  padding: 100px 0;
  position: relative;
}

.section-lg { padding: 120px 0; }

.about-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 460px;
  position: relative;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(135deg, rgba(212, 168, 83, 0.3) 0%, rgba(11, 24, 56, 0.4) 100%),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #8b7355 0%, #2c3e5a 100%);
}
.about-image-seal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(11, 24, 56, 0.85);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--gold-400);
  border: 2px solid rgba(212, 168, 83, 0.3);
}

.about-image-seal strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gold-400);
}

.about-image-seal span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  margin-top: 4px;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--cream-200);
  transition: all var(--t-base);
}

.pillar-item:hover {
  border-color: var(--gold-400);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pillar-item:hover .pillar-icon {
  background: var(--gold-500);
  color: var(--white);
}

.pillar-item h5 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.pillar-item p {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   Treatments (dark section)
============================================ */

.treatments-section {
  background: var(--cream-50);
  color: var(--ink-700);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.treatments-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(201, 162, 75, 0.06), transparent 40%),
    radial-gradient(ellipse at 90% 100%, rgba(38, 91, 65, 0.05), transparent 40%);
  pointer-events: none;
}

.treatments-section .container { position: relative; z-index: 1; }

.treatments-section .kicker.on-dark { color: var(--gold-600); }

.treatments-section h2 {
  color: var(--navy-800);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.treatments-section h2 .accent {
  color: var(--gold-400);
  font-style: italic;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 3rem;
}

.treatment-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t-base);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

/* Alterna o corpo dos cards: ímpares verdes, pares brancos */
.treatment-card:nth-child(odd) {
  background: var(--green-800);
  border-color: var(--green-700);
}

.treatment-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-lg);
}

.treatment-image {
  height: 140px;
  position: relative;
  background:
    linear-gradient(180deg, transparent 0%, rgba(11, 24, 56, 0.6) 100%),
    repeating-linear-gradient(45deg, rgba(212, 168, 83, 0.12) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, var(--navy-600), var(--gold-500));
}

.treatment-image picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.treatment-image picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 24, 56, 0.15) 0%, rgba(11, 24, 56, 0.55) 100%);
  pointer-events: none;
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.treatment-card:nth-child(2) .treatment-image {
  background:
    linear-gradient(180deg, transparent 0%, rgba(11, 24, 56, 0.6) 100%),
    repeating-linear-gradient(-45deg, rgba(212, 168, 83, 0.12) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, #4a6b9e, #2c3e5a);
}
.treatment-card:nth-child(3) .treatment-image {
  background:
    linear-gradient(180deg, transparent 0%, rgba(11, 24, 56, 0.6) 100%),
    repeating-linear-gradient(90deg, rgba(212, 168, 83, 0.12) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, #8b7355, #3d5a2a);
}
.treatment-card:nth-child(4) .treatment-image {
  background:
    linear-gradient(180deg, transparent 0%, rgba(11, 24, 56, 0.6) 100%),
    repeating-linear-gradient(0deg, rgba(212, 168, 83, 0.12) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, #c29842, #5a4a2a);
}
.treatment-card:nth-child(5) .treatment-image {
  background:
    linear-gradient(180deg, transparent 0%, rgba(11, 24, 56, 0.6) 100%),
    repeating-linear-gradient(135deg, rgba(212, 168, 83, 0.12) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, #2c5a8c, #0f1f47);
}
.treatment-card:nth-child(6) .treatment-image {
  background:
    linear-gradient(180deg, transparent 0%, rgba(11, 24, 56, 0.6) 100%),
    repeating-linear-gradient(60deg, rgba(212, 168, 83, 0.12) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, #d4a853, #8b6a2a);
}

.treatment-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  display: grid;
  place-items: center;
  border: 3px solid var(--navy-800);
  transition: all var(--t-base);
  z-index: 2;
}

.treatment-card:hover .treatment-badge {
  background: var(--white);
  color: var(--navy-800);
  transform: translateX(-50%) rotate(360deg);
}

.treatment-body {
  padding: 28px 18px 22px;
  text-align: center;
}

.treatment-body h5 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.treatment-body p {
  font-size: 0.76rem;
  color: var(--ink-500);
  line-height: 1.5;
  margin: 0;
}

/* Card verde (ímpar): texto claro */
.treatment-card:nth-child(odd) .treatment-body h5 { color: var(--white); }
.treatment-card:nth-child(odd) .treatment-body p { color: rgba(255, 255, 255, 0.72); }

/* Botão "Saiba mais" do card */
.treatment-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--t-base);
}
/* Card branco (par): botão verde sólido */
.treatment-cta {
  background: var(--green-700);
  color: var(--white);
}
.treatment-card:hover .treatment-cta { background: var(--green-600); }
/* Card verde (ímpar): botão contornado dourado */
.treatment-card:nth-child(odd) .treatment-cta {
  background: transparent;
  color: var(--gold-400);
  border-color: rgba(221, 189, 114, 0.55);
}
.treatment-card:nth-child(odd):hover .treatment-cta {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.treatments-cta {
  text-align: center;
}

/* ============================================
   Blog
============================================ */

.blog-section {
  background: var(--cream-50);
  padding: 110px 0;
}

.blog-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.blog-header h2 {
  max-width: 620px;
  margin: 0 auto 1rem;
}

.blog-header p {
  color: var(--ink-500);
  max-width: 480px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid var(--cream-200);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}

.blog-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.blog-image-1 {
  background:
    linear-gradient(180deg, rgba(250, 241, 220, 0) 0%, rgba(250, 241, 220, 0.4) 100%),
    repeating-linear-gradient(45deg, rgba(139, 115, 85, 0.1) 0 3px, transparent 3px 16px),
    linear-gradient(135deg, #f4e4d1, #d4a853 60%, #8b6a2a);
}

.blog-image-2 {
  background:
    linear-gradient(180deg, rgba(11, 24, 56, 0.2) 0%, rgba(212, 168, 83, 0.3) 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #2c3e5a, #d4a853 70%, #e0bb6e);
}

.blog-image-3 {
  background:
    linear-gradient(180deg, rgba(139, 115, 85, 0.2) 0%, rgba(11, 24, 56, 0.3) 100%),
    repeating-linear-gradient(-30deg, rgba(212, 168, 83, 0.1) 0 3px, transparent 3px 16px),
    linear-gradient(135deg, #8b7355, #c29842 50%, #3d5a2a);
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy-800);
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-body { padding: 28px 26px; }

.blog-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy-800);
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--ink-500);
  margin-bottom: 18px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--cream-200);
  font-size: 0.78rem;
  color: var(--ink-300);
}

.blog-read-more {
  color: var(--gold-600);
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast);
}

.blog-read-more:hover {
  color: var(--gold-600);
  gap: 10px;
}

/* ============================================
   CTA Band
============================================ */

.cta-band {
  padding: 80px 0;
  background: var(--cream-50);
}

.cta-inner {
  background:
    linear-gradient(100deg, rgba(10, 24, 16, 0.94) 0%, rgba(15, 35, 23, 0.82) 38%, rgba(15, 35, 23, 0.30) 70%, rgba(15, 35, 23, 0.08) 100%),
    url('../img/cta.webp') center 40% / cover no-repeat;
  border-radius: var(--r-lg);
  padding: 56px 60px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.cta-content h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 10px;
  line-height: 1.2;
}

.cta-content h3 em {
  font-style: italic;
  color: var(--gold-400);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin: 0;
  max-width: 440px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ============================================
   Footer
============================================ */

.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--t-base);
}

.social-btn:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.footer-col h6 {
  font-family: var(--font-sans);
  color: var(--gold-400);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: all var(--t-fast);
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-contact svg {
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover { color: var(--gold-400); }

/* ============================================
   Animations
============================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.4, 0, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 100ms; }
.reveal.d2 { transition-delay: 200ms; }
.reveal.d3 { transition-delay: 300ms; }
.reveal.d4 { transition-delay: 400ms; }
.reveal.d5 { transition-delay: 500ms; }

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all var(--t-base);
  animation: pulse 2s infinite;
}

.float-wa:hover {
  transform: scale(1.08);
  color: var(--white);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================
   Responsive
============================================ */

@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xl);
    margin-top: 8px;
  }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-band::after,
  .stats-band::before { display: none; }
  .treatments-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 0; }
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    text-align: center;
    gap: 28px;
  }
  .cta-content { flex-direction: column; text-align: center; gap: 18px; }
  .cta-actions { align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Help banner: layout mobile mais compacto e centralizado */
  .help-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    border-radius: var(--r-lg);
    padding: 18px 20px;
    gap: 14px;
  }
  .help-banner-text {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .help-banner-icon { margin: 0 auto; }
  .help-banner .btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

@media (max-width: 640px) {
  .hero { padding: 110px 0 40px; }
  .feature-strip { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { padding: 32px 24px; }
  .about-image { height: 340px; }
  .section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }

  /* CTA band — garante visibilidade e legibilidade em telas pequenas */
  .cta-band { padding: 50px 0; }
  .cta-inner {
    padding: 32px 22px;
    border-radius: var(--r-md);
    gap: 22px;
  }
  .cta-inner::before { display: none; }
  .cta-mark { width: 60px; height: 60px; }
  .cta-mark svg { width: 26px; height: 26px; }
  .cta-content h3 { font-size: 1.2rem; line-height: 1.3; }
  .cta-content p { font-size: 0.85rem; }
  .cta-actions { width: 100%; gap: 10px; }
  .cta-actions .btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.88rem;
  }

  /* Help banner ainda mais compacto em telas pequenas */
  .help-banner { padding: 16px; margin-top: 16px; }
  .help-banner strong { font-size: 0.95rem; }
  .help-banner small { font-size: 0.78rem; line-height: 1.4; }
}

/* ============================================
   Integrações com componentes legados
============================================ */

/* Logo real dentro da navbar */
.nav-logo-img {
  max-height: 64px;
  width: auto;
  display: block;
}
.navbar-custom.scrolled .nav-logo-img { max-height: 54px; }

/* Dropdown no menu desktop */
.nav-links .dropdown-menu {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-sm);
  padding: 8px;
  margin-top: 6px;
  box-shadow: var(--shadow-lg);
}
.nav-links .dropdown-menu .dropdown-item {
  color: var(--ink-700);
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--t-fast);
}
.nav-links .dropdown-menu .dropdown-item:hover {
  background: var(--navy-50);
  color: var(--green-700);
}

/* Vídeo de fundo do hero */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg,
      rgba(11,24,56,0.97) 0%,
      rgba(11,24,56,0.90) 28%,
      rgba(11,24,56,0.60) 55%,
      rgba(11,24,56,0.20) 80%,
      rgba(11,24,56,0.05) 100%),
    linear-gradient(180deg, rgba(11,24,56,0.35) 0%, rgba(11,24,56,0) 35%);
}
@media (max-width: 768px) {
  .hero-video-overlay {
    background:
      linear-gradient(90deg, rgba(11,24,56,0.92) 0%, rgba(11,24,56,0.78) 60%, rgba(11,24,56,0.55) 100%),
      linear-gradient(180deg, rgba(11,24,56,0.3) 0%, rgba(11,24,56,0) 40%);
  }
}

/* Seções utilitárias complementares */
.units-section {
  background: var(--cream-50);
  padding: 90px 0;
}
.unit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.unit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}
.unit-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid;
  place-items: center;
  color: var(--navy-900);
  margin-bottom: 20px;
}
.unit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--navy-800);
}
.unit-card p {
  color: var(--ink-500);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Clinics (galeria) cards — usando imagens reais */
.clinics-section {
  padding: 100px 0;
  background: var(--white);
}
.clinics-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 2.5rem;
}
.clinics-header h2 {
  margin: 8px 0 0;
}
.clinics-header-cta { flex-shrink: 0; }
.clinics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.clinic-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  transition: all var(--t-base);
}
.clinic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.clinic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.clinic-card:hover img { transform: scale(1.06); }
.clinic-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 24, 16, 0.35) 60%, rgba(10, 24, 16, 0.88) 100%);
}
.clinic-info { min-width: 0; }
.clinic-info h4 {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 1.05rem;
  margin: 0 0 2px;
  line-height: 1.2;
}
.clinic-info h4 svg { color: var(--gold-400); flex-shrink: 0; }
.clinic-info .clinic-cat {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}
.clinic-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  display: grid;
  place-items: center;
  transition: all var(--t-base);
}
.clinic-card:hover .clinic-arrow {
  background: var(--white);
  transform: translateX(3px);
}

/* Depoimentos */
.testimonials-section {
  background: var(--cream-50);
  padding: 100px 0;
}
.testimonial-card {
  background: var(--white) !important;
  border: 1px solid var(--cream-200) !important;
  border-radius: var(--r-md) !important;
}
.testimonial-card .rating { color: var(--gold-500); }

/* FAQ */
.faq-section {
  background: var(--white);
  padding: 100px 0;
}
.faq-section .accordion-button {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy-800) !important;
  background: var(--cream-50) !important;
  border-radius: var(--r-md) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 18px 20px;
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--navy-800) !important;
  color: var(--white) !important;
}
.faq-section .accordion-button:focus { box-shadow: var(--shadow-md) !important; }
.faq-section .accordion-body {
  padding: 18px 20px;
  color: var(--ink-500);
  background: transparent;
}

/* Botão Bootstrap-like re-aplicado para compat com outros templates */
.btn-padrao-nova {
  background: linear-gradient(180deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--navy-900);
  border: 1.5px solid var(--gold-500);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.btn-padrao-nova:hover {
  color: var(--navy-900);
  transform: translateY(-2px);
}

/* Menu mobile — já existe no site, apenas atualizamos cores */
.mobile-menu-container {
  background: var(--navy-900);
  color: var(--white);
}
.mobile-menu-container .nav-link { color: rgba(255,255,255,0.85) !important; }
.mobile-menu-container .nav-link:hover { color: var(--gold-400) !important; }
.mobile-menu-container .btn-close { filter: invert(1); }
.mobile-menu-container .dropdown-item { color: rgba(255,255,255,0.7); }
.mobile-menu-container .dropdown-submenu { display: none; padding-left: 0; }
.mobile-menu-container .dropdown-submenu.open { display: block; }
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  display: none;
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu-container {
  position: fixed; top: 0; right: -100%;
  width: 86%; max-width: 380px; height: 100vh;
  z-index: 1050;
  overflow-y: auto;
  transition: right var(--t-base);
}
.mobile-menu-container.open { right: 0; }

/* Cookies + modal search: leves ajustes */
.box-cookies {
  background: var(--navy-900);
  color: rgba(255,255,255,0.8);
  border-top-color: rgba(255,255,255,0.1) !important;
}
.box-cookies a { color: var(--gold-400); }
.box-cookies .btn-primary {
  background: var(--gold-500) !important;
  border-color: var(--gold-500) !important;
  color: var(--navy-900) !important;
}

/* Formulário de contato */
.contact-form .form-control {
  border: 1px solid var(--cream-200);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
}
.contact-form .form-control:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212,168,83,0.15);
}

@media (max-width: 1100px) {
  .clinics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .clinics-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .clinics-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Páginas internas — hero compacto + breadcrumb
============================================ */
.page-hero {
  position: relative;
  padding: 170px 0 70px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 60%, var(--green-600) 100%);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(201, 162, 75, 0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(28, 71, 51, 0.45), transparent 50%);
  z-index: -1;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: -1;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p.lead {
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  font-size: 1.05rem;
}
.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}
.page-hero .breadcrumb a { color: #fff!important; }
.page-hero .breadcrumb a:hover { color: var(--gold-400); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.7); }

/* ============================================
   Article cards (blog-all)
============================================ */
.article-list-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--cream-200);
  overflow: hidden;
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: row;
}
.article-list-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.article-list-card .thumb {
  flex: 0 0 38%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--cream-100);
}
.article-list-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.article-list-card:hover .thumb img { transform: scale(1.04); }
.article-list-card .body {
  flex: 1;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
}
.article-list-card .meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: var(--ink-300);
}
.article-list-card .meta .cat {
  background: var(--navy-800);
  color: var(--gold-400);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.68rem;
}
.article-list-card h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.article-list-card h2 a { color: var(--navy-800); }
.article-list-card h2 a:hover { color: var(--gold-600); }
.article-list-card p {
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.article-list-card .read-link {
  color: var(--gold-600);
  font-weight: 600;
  font-size: 0.85rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast);
}
.article-list-card .read-link:hover { gap: 10px; }
@media (max-width: 640px) {
  .article-list-card { flex-direction: column; }
  .article-list-card .thumb { flex: 0 0 200px; width: 100%; }
}

/* ============================================
   Article single (blog-info)
============================================ */
.article-single {
  background: var(--cream-50);
  padding: 60px 0 80px;
}
.article-hero-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
}
.article-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}
.article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-700);
}
.article-content p { margin-bottom: 1.25rem; }
.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy-800);
}
.article-content h2 { font-size: 1.6rem; }
.article-content h3 { font-size: 1.35rem; }
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-md);
}
.article-content a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content blockquote {
  border-left: 3px solid var(--gold-500);
  padding: 6px 0 6px 20px;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink-500);
}
.article-content ul,
.article-content ol { margin-bottom: 1.25rem; padding-left: 1.25rem; }

.share-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.share-row .share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: transform var(--t-fast);
}
.share-row .share-btn:hover {
  transform: translateY(-3px);
  color: var(--white);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  z-index: 2000;
  transition: width 0.08s linear;
}

/* Sidebar blog */
.sidebar-box {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--cream-200);
  padding: 24px 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-box h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-800);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-400);
  display: inline-block;
}
.sidebar-box .cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-100);
  color: var(--ink-700);
  font-size: 0.9rem;
  transition: color var(--t-fast);
}
.sidebar-box .cat-item:hover { color: var(--gold-600); padding-left: 4px; }
.sidebar-box .cat-item:last-child { border-bottom: 0; }
.sidebar-box .cat-item svg { color: var(--gold-500); flex-shrink: 0; }

.sidebar-box .post-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-100);
}
.sidebar-box .post-item:last-child { border-bottom: 0; }
.sidebar-box .post-item img {
  width: 70px;
  height: 70px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.sidebar-box .post-item .meta {
  font-size: 0.75rem;
  color: var(--ink-300);
  margin-bottom: 2px;
}
.sidebar-box .post-item h5 {
  font-size: 0.88rem;
  line-height: 1.35;
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
}
.sidebar-box .post-item h5 a { color: var(--navy-800); }
.sidebar-box .post-item h5 a:hover { color: var(--gold-600); }

/* ============================================
   Formulário de contato
============================================ */
.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-200);
}
.form-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.form-card label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}
.form-card .form-control,
.form-card .form-select {
  border: 1px solid var(--cream-200);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 0.95rem;
  background: var(--cream-50);
  transition: all var(--t-fast);
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212,168,83,0.15);
  background: var(--white);
}

.contact-info-card {
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.18), transparent 70%);
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
}
.contact-info-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  position: relative;
}
.contact-info-card .contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  position: relative;
}
.contact-info-card .contact-item .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212,168,83,0.15);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-card .contact-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  font-weight: 600;
}
.contact-info-card .contact-item a { color: rgba(255,255,255,0.85); }
.contact-info-card .contact-item a:hover { color: var(--gold-400); }

/* ============================================
   Clínica — info (single)
============================================ */
.clinic-gallery {
  padding: 40px 0 0;
}
.clinic-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.clinic-gallery-grid .main-img,
.clinic-gallery-grid .thumb-stack {
  min-height: 420px;
}
.clinic-gallery-grid .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.clinic-gallery-grid .thumb-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.clinic-gallery-grid .thumb-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .clinic-gallery-grid { grid-template-columns: 1fr; }
  .clinic-gallery-grid .thumb-stack { display: none; }
  .clinic-gallery-grid .main-img,
  .clinic-gallery-grid .thumb-stack { min-height: 280px; }
}

.clinic-body-section {
  background: var(--cream-50);
  padding: 60px 0 90px;
}
.clinic-content {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px 44px;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
}
.clinic-content h1 { font-size: 2rem; margin-bottom: 1.25rem; }
.clinic-content .description {
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.8;
}
.clinic-content .description h2 { font-size: 1.5rem; margin-top: 2rem; }
.clinic-content .description h3 { font-size: 1.25rem; margin-top: 1.5rem; }
.clinic-content .description img { border-radius: var(--r-md); margin: 1rem 0; }

/* ============================================
   Paginação customizada
============================================ */
.pagination-custom {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
}
.pagination-custom .page-item a,
.pagination-custom .page-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--cream-200);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--t-fast);
}
.pagination-custom .page-item a:hover {
  border-color: var(--gold-400);
  color: var(--gold-600);
}
.pagination-custom .page-item.active a,
.pagination-custom .page-item.active span {
  background: var(--navy-800);
  color: var(--gold-400);
  border-color: var(--navy-800);
}
.pagination-custom .page-item.disabled span {
  color: var(--ink-300);
  background: transparent;
  border-color: transparent;
}
