/*
Theme Name: Greenleaf SIS
Theme URI: https://www.greenleaf.com.br
Author: Greenleaf SIS
Version: 3.24.0
Description: Tema oficial Greenleaf Serviços Integrais em Saúde — autoridade médica, CRO, identidade premium regional.
Text Domain: greenleaf-sis
*/

/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */
:root {
  /* Brand */
  --gl-green-950: #021A12;
  --gl-green-900: #042E1E;
  --gl-green-800: #074530;
  --gl-green-700: #0A5C40;
  --gl-green-600: #0F7050;
  --gl-green-500: #1D9E75;
  --gl-green-400: #2EBF8E;
  --gl-green-300: #5DCAA5;
  --gl-green-200: #9FE1CB;
  --gl-green-100: #CDEFDF;
  --gl-green-50:  #E8F8F1;

  /* Terra — accent cálido, credibilidade */
  --gl-terra-600: #A04020;
  --gl-terra-500: #C8602A;
  --gl-terra-100: #FAECE7;

  /* Neutrals — levemente quentes, nunca frios */
  --gl-gray-950: #0C0C0B;
  --gl-gray-900: #1A1A18;
  --gl-gray-800: #2B2B28;
  --gl-gray-700: #3E3E3B;
  --gl-gray-600: #545450;
  --gl-gray-500: #6D6D69;
  --gl-gray-400: #878783;
  --gl-gray-300: #ADADA8;
  --gl-gray-200: #CDCDC9;
  --gl-gray-100: #E3E3DF;
  --gl-gray-50:  #F1F1ED;
  --gl-cream:    #F7F4EE;
  --gl-white:    #FFFFFF;

  /* Semantic */
  --color-primary:    var(--gl-green-600);
  --color-primary-dk: var(--gl-green-800);
  --color-primary-lt: var(--gl-green-400);
  --color-accent:     var(--gl-terra-500);
  --color-bg:         var(--gl-cream);
  --color-surface:    var(--gl-white);
  --color-text:       var(--gl-gray-900);
  --color-text-muted: var(--gl-gray-600);
  --color-text-faint: var(--gl-gray-400);
  --color-border:     rgba(15,112,80,.12);
  --color-border-g:   var(--gl-gray-100);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-1: .25rem; --space-2: .5rem;  --space-3: .75rem;
  --space-4: 1rem;   --space-5: 1.25rem;--space-6: 1.5rem;
  --space-8: 2rem;   --space-10:2.5rem; --space-12:3rem;
  --space-16:4rem;   --space-20:5rem;   --space-24:6rem;
  --space-32:8rem;

  /* Radii */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px;
  --r-xl: 32px; --r-full: 9999px;

  /* Shadows — nunca azuis, sempre verdes quentes */
  --shadow-sm: 0 1px 4px rgba(7,69,48,.07), 0 2px 8px rgba(7,69,48,.04);
  --shadow-md: 0 4px 16px rgba(7,69,48,.09), 0 8px 32px rgba(7,69,48,.06);
  --shadow-lg: 0 8px 32px rgba(7,69,48,.11), 0 24px 56px rgba(7,69,48,.08);
  --shadow-xl: 0 16px 48px rgba(7,69,48,.14), 0 32px 72px rgba(7,69,48,.10);

  /* Easing */
  --ease-out:  cubic-bezier(.22,1,.36,1);
  --ease-in:   cubic-bezier(.64,0,.78,0);
  --dur-fast:  150ms; --dur-base: 260ms;
  --dur-slow:  420ms; --dur-xs:   700ms;

  /* Layout */
  --max-w:        1200px;
  --max-w-narrow: 760px;
  --header-h:     72px;
}

/* ================================================================
   2. RESET
   ================================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem; line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,video,svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--dur-fast); }
button,input,select,textarea { font-family: inherit; }
ul,ol { list-style: none; }

/* ================================================================
   3. TYPOGRAPHY
   ================================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700; line-height: 1.15;
  color: var(--color-text); letter-spacing: -.025em;
}
h1 { font-size: clamp(2.6rem,5.5vw,4.4rem); }
h2 { font-size: clamp(2rem,4vw,3rem); }
h3 { font-size: clamp(1.3rem,2.5vw,1.75rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }

p { line-height: 1.82; }
p + p { margin-top: var(--space-4); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: ''; display: inline-block; width: 22px; height: 2px;
  background: var(--color-primary); border-radius: var(--r-full);
}
.eyebrow--white { color: var(--gl-green-300); }
.eyebrow--white::before { background: var(--gl-green-300); }

/* ================================================================
   4. LAYOUT
   ================================================================ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-24) 0; }
.section-header { margin-bottom: var(--space-16); }
.section-header--center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: var(--space-4); }
.section-header p { font-size: 1.05rem; color: var(--color-text-muted); }
.text-center { text-align: center; }

/* ================================================================
   5. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: .8rem 1.75rem; border: 2px solid transparent;
  border-radius: var(--r-full); font-family: var(--font-body);
  font-size: .9rem; font-weight: 600; line-height: 1; cursor: pointer;
  text-decoration: none; transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn:active { transform: scale(.98); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--color-primary); color: var(--gl-white);
  box-shadow: 0 4px 16px rgba(15,112,80,.28);
}
.btn-primary:hover {
  background: var(--color-primary-dk); color: var(--gl-white);
  box-shadow: 0 6px 24px rgba(15,112,80,.38);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent; color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover { background: var(--gl-green-50); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25D366; color: var(--gl-white);
  box-shadow: 0 4px 20px rgba(37,211,102,.32);
}
.btn-whatsapp:hover {
  background: #1EA952; color: var(--gl-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.42);
}

.btn-white {
  background: var(--gl-white); color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.btn-white:hover {
  background: var(--gl-green-50); color: var(--color-primary-dk);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent; color: var(--gl-white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.12); border-color: var(--gl-white);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.05rem 2.25rem; font-size: .95rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .82rem; }

/* ================================================================
   6. HEADER
   ================================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  transition: background var(--dur-slow), box-shadow var(--dur-slow), backdrop-filter var(--dur-slow);
}
#site-header.at-top { background: transparent; }
#site-header.scrolled {
  background: rgba(247,244,238,.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(15,112,80,.10), 0 4px 24px rgba(7,69,48,.06);
}
#site-header.at-top .nav-logo-text { color: var(--gl-white); }
#site-header.scrolled .nav-logo-text { color: var(--gl-green-800); }

/* ALTERADO */
#site-header.at-top .nav-links > li > a { color: rgba(255,255,255,.82); }
#site-header.at-top .nav-links > li > a:hover,
#site-header.at-top .current-menu-item > a,
#site-header.at-top .current_page_item > a { color: var(--gl-white); }

#site-header.at-top .btn-nav-cta { border-color: rgba(255,255,255,.45); color: var(--gl-white); }
#site-header.at-top .btn-nav-cta:hover { background: rgba(255,255,255,.14); border-color: var(--gl-white); }
#site-header.at-top .menu-toggle span { background: var(--gl-white); }

.nav-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: var(--space-8); }

.nav-logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gl-green-800); transition: color var(--dur-base); }
.nav-logo-text span { display: block; font-family: var(--font-body); font-size: .58rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gl-green-500); margin-top: 1px; }

nav.main-nav { display: flex; align-items: center; gap: var(--space-8); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  list-style: none;
}

.nav-links > li > a{
    font-size:.85rem;
    font-weight:500;
    color:var(--gl-gray-700);
    position:relative;
    text-decoration:none;
    display:inline-block;
    transition: color var(--dur-base) var(--ease-out);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: var(--r-full);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-base) var(--ease-out);
}

.nav-links > li > a:hover,
.nav-links > .current-menu-item > a,
.nav-links > .current_page_item > a,
.nav-links > .current-menu-ancestor > a,
.nav-links > .current_page_parent > a {
    color: var(--color-primary);
}

.nav-links > li > a:hover::after,
.nav-links > .current-menu-item > a::after,
.nav-links > .current_page_item > a::after,
.nav-links > .current-menu-ancestor > a::after,
.nav-links > .current_page_parent > a::after {
    transform: scaleX(1);
}

.btn-nav-cta { padding: .5rem 1.2rem; border-radius: var(--r-full); font-size: .82rem; font-weight: 600; border: 1.5px solid var(--color-primary); color: var(--color-primary); background: transparent; transition: all var(--dur-base) var(--ease-out); white-space: nowrap; }
.btn-nav-cta:hover { background: var(--color-primary); color: var(--gl-white); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: var(--space-2); }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform var(--dur-base), opacity var(--dur-base); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; position: fixed; top: calc(var(--header-h) + var(--social-bar-h, 35px)); left: 0; right: 0; background: var(--gl-white); border-top: 1px solid var(--color-border-g); padding: var(--space-6); box-shadow: 0 8px 32px rgba(0,0,0,.08); z-index: 999; transform: translateY(-8px); opacity: 0; transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-slow); }
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav-links { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-6); }
.mobile-nav-links a { font-size: 1.05rem; font-weight: 500; color: var(--color-text); padding: var(--space-3) 0; border-bottom: 1px solid var(--color-border-g); }

/* ================================================================
   7. STICKY MOBILE CTA
   ================================================================ */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--gl-green-800);
  padding: var(--space-4) var(--space-6);
  box-shadow: 0 -4px 24px rgba(7,69,48,.2);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-mobile-cta a {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-3); color: var(--gl-white);
  font-weight: 700; font-size: 1rem;
}
.sticky-mobile-cta svg { width: 22px; height: 22px; fill: white; }

/* ================================================================
   8. HERO v3
   ================================================================ */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--gl-green-900); overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(29,158,117,.16) 0%, transparent 65%),
    linear-gradient(135deg, rgba(4,46,30,.97) 0%, rgba(15,112,80,.88) 55%, rgba(4,46,30,.95) 100%);
  z-index: 1;
}
.hero-bg-image { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .15; z-index: 0; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .16; animation: blobFloat 9s ease-in-out infinite; z-index: 0; }
.hero-blob-1 { width: 560px; height: 560px; background: var(--gl-green-400); top: -80px; right: -80px; animation-delay: 0s; }
.hero-blob-2 { width: 380px; height: 380px; background: var(--gl-green-300); bottom: -40px; left: 30%; animation-delay: 3.5s; }
.hero-blob-3 { width: 280px; height: 280px; background: var(--gl-terra-500); top: 25%; left: -60px; animation-delay: 6.5s; opacity: .08; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(18px,-28px) scale(1.04)} 66%{transform:translate(-14px,18px) scale(.97)} }

.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 64px 64px; z-index: 1; }
#hero-particles { position: absolute; inset: 0; z-index: 1; opacity: .35; }

.hero-container { position: relative; z-index: 2; width: 100%; }
.hero-content { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--space-16); align-items: center; min-height: 100svh; padding: calc(var(--header-h) + var(--social-bar-h, 35px) + var(--space-16)) 0 var(--space-16); }

/* Hero text */
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-3);
  background: rgba(29,158,117,.18); border: 1px solid rgba(93,202,165,.28);
  color: var(--gl-green-200); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: var(--r-full);
  margin-bottom: var(--space-6); backdrop-filter: blur(8px);
}
.hero-badge-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--gl-green-400); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

.hero-title { font-size: clamp(2.8rem,5.5vw,4.6rem); font-weight: 700; color: var(--gl-white); line-height: 1.06; letter-spacing: -.03em; margin-bottom: var(--space-6); }
.hero-title-normal { display: block; }
.hero-title-em { display: block; font-style: italic; color: var(--gl-green-300); }

.hero-sub { font-size: clamp(1rem,1.6vw,1.18rem); color: rgba(255,255,255,.70); line-height: 1.78; max-width: 520px; margin-bottom: var(--space-10); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-12); }

.hero-stats { display: flex; gap: var(--space-8); padding-top: var(--space-8); border-top: 1px solid rgba(255,255,255,.11); }
.hero-stat-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gl-white); display: block; line-height: 1; }
.hero-stat-label { font-size: .72rem; color: rgba(255,255,255,.52); margin-top: 4px; line-height: 1.4; display: block; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo-wrap {
  position: relative;
  /* padding interno para os cards flutuantes não serem cortados */
  padding: 0 2.5rem 5rem 2.5rem;
}

.hero-photo-frame {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 3/4; max-width: 380px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  margin: 0 auto;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.hero-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-4); padding: var(--space-8); text-align: center;
  color: rgba(255,255,255,.45); font-size: .78rem; line-height: 1.5;
}

/* Credential badge */
.hero-credential {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.14); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-lg);
  padding: var(--space-3) var(--space-4);
  display: flex; align-items: center; gap: var(--space-3);
  animation: floatCard 5s ease-in-out infinite;
  z-index: 2;
}
.hero-credential-icon { font-size: 1.3rem; }
.hero-credential-label { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gl-green-300); }
.hero-credential-value { display: block; font-size: .92rem; font-weight: 700; color: var(--gl-white); }

/* Float cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.12); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5); color: var(--gl-white);
  animation: floatCard 5.5s ease-in-out infinite;
  z-index: 2;
  white-space: nowrap;
}
.hero-float-card-1 { bottom: 4rem; right: 0; animation-delay: 1.5s; }
.hero-float-card-2 { bottom: 0; left: 0; animation-delay: 3.5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.fc-label { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gl-green-300); margin-bottom: 3px; }
.fc-value { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; line-height: 1.1; }
.fc-sub { display: block; font-size: .7rem; opacity: .65; margin-top: 3px; }

/* Hero wave — removida a linha ECG falsa, substituída por transição limpa */
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; z-index: 3; }
.hero-wave svg { width: 100%; height: 100%; }

/* ================================================================
   9. TRUST BAR
   ================================================================ */
/* [removido] .trust-bar { background: var(--gl-white); border-bottom: 1px solid var(--color-border-g); padding: var(--space-5) 0; } */
/* [removido] .trust-bar-inner { display: flex; align-items: center; gap: var(--space-10); overflow-x: auto; scrollbar-width: none; } */
/* [removido] .trust-bar-inner::-webkit-scrollbar { display: none; } */
/* [removido] .trust-item { display: flex; align-items: center; gap: var(--space-3); white-space: nowrap; flex-shrink: 0; color: var(--gl-gray-600); font-size: .82rem; font-weight: 500; } */
/* [removido] .trust-item svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; } */
/* [removido] .trust-div { width: 1px; height: 22px; background: var(--color-border-g); flex-shrink: 0; } */

/* ================================================================
   10. MANIFESTO
   ================================================================ */
.manifesto-section { background: var(--gl-white); padding-top: var(--space-10); }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.manifesto-h2 { font-size: clamp(1.9rem,3.5vw,2.6rem); margin-bottom: var(--space-5); margin-top: var(--space-2); }
.manifesto-text p { font-size: 1.02rem; color: var(--color-text-muted); line-height: 1.82; }

.manifesto-pills { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-6); }
.manifesto-pill { display: inline-flex; align-items: center; background: var(--gl-green-50); color: var(--gl-green-700); font-size: .72rem; font-weight: 600; padding: .35rem .85rem; border-radius: var(--r-full); border: 1px solid var(--gl-green-100); }

.manifesto-photos { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-4); }
.manifesto-photo { border-radius: var(--r-lg); overflow: hidden; position: relative; }
.manifesto-photo-main { aspect-ratio: 3/4; display: block; }
.manifesto-photo-secondary { aspect-ratio: 1/1; align-self: end; display: block; }
.manifesto-photo img,
.manifesto-photo-main img,
.manifesto-photo-secondary img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-ph {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-3); background: var(--gl-green-50);
  color: var(--gl-green-500); font-size: .75rem; font-weight: 500;
  text-align: center; padding: var(--space-8);
}
.photo-ph--dark { background: rgba(255,255,255,.06); color: rgba(255,255,255,.45); }

.manifesto-accent-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--gl-white);
  border: 1px solid var(--color-border-g);
  border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-5);
}
.mac-icon { font-size: 1.5rem; }
.mac-title { display: block; font-weight: 700; font-size: .92rem; color: var(--gl-gray-900); }
.mac-sub { display: block; font-size: .72rem; color: var(--color-text-faint); margin-top: 2px; }

/* ================================================================
   11. NÚMEROS
   ================================================================ */
.numeros-section { background: var(--gl-cream); }
.numeros-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-6); }
.numero-card {
  background: var(--gl-white); border: 1px solid var(--color-border-g);
  border-radius: var(--r-lg); padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow);
  position: relative; overflow: hidden;
}
.numero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gl-green-500), var(--gl-green-300)); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-slow) var(--ease-out); }
.numero-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.numero-card:hover::before { transform: scaleX(1); }
.numero-value { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--color-primary); line-height: 1; display: block; }
.numero-title { font-weight: 700; font-size: .92rem; color: var(--gl-gray-900); margin-top: var(--space-3); display: block; }
.numero-sub { font-size: .78rem; color: var(--color-text-faint); margin-top: var(--space-2); display: block; line-height: 1.5; }

/* ================================================================
   12. DR. MAIQUEL
   ================================================================ */
.dr-section { background: var(--gl-white); }
.dr-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--space-16); align-items: start; }

.dr-photo-frame { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4; background: linear-gradient(135deg,var(--gl-green-800),var(--gl-green-900)); border: 1px solid var(--color-border); }
.dr-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.dr-cred-stack { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-5); }
.dr-cred-item { display: flex; align-items: center; gap: var(--space-4); background: var(--gl-white); border: 1px solid var(--color-border-g); border-radius: var(--r-md); padding: var(--space-3) var(--space-4); }
.dr-cred-icon { font-size: 1.2rem; }
.dr-cred-label { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-text-faint); }
.dr-cred-val { display: block; font-size: .9rem; font-weight: 600; color: var(--gl-gray-900); }

/* Text side */
.dr-text .eyebrow { margin-bottom: var(--space-2); }
.dr-text h2 { margin-bottom: var(--space-6); }

.dr-quote {
  position: relative; margin: var(--space-6) 0;
  padding: var(--space-5) var(--space-6) var(--space-5) var(--space-8);
  border-left: 4px solid var(--color-primary);
  background: var(--gl-green-50); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 1.1rem; color: var(--gl-gray-800); line-height: 1.7; font-style: italic;
}
.dr-quote-mark { position: absolute; top: var(--space-2); left: var(--space-4); font-family: var(--font-display); font-size: 3.5rem; color: var(--gl-green-200); line-height: 1; font-style: normal; }

.dr-bio { font-size: 1rem; color: var(--color-text-muted); line-height: 1.82; }

.dr-trajetoria { margin-top: var(--space-8); }
.dr-traj-label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-text-faint); display: block; margin-bottom: var(--space-4); }
.dr-traj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.dr-traj-item {
  display: flex; align-items: flex-start; gap: var(--space-3);
  background: var(--gl-cream); border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
}
.dr-traj-item svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }
.traj-nome { display: block; font-size: .83rem; font-weight: 600; color: var(--gl-gray-900); line-height: 1.3; }
.traj-local { display: block; font-size: .72rem; color: var(--color-text-faint); }

.dr-midia { margin-top: var(--space-6); padding: var(--space-5); background: var(--gl-cream); border-radius: var(--r-lg); }
.dr-midia-label { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-text-faint); margin-bottom: var(--space-3); }
.dr-midia-item { display: flex; align-items: center; gap: var(--space-3); font-size: .83rem; color: var(--color-text-muted); margin-top: var(--space-2); }
.dr-midia-item svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; }

/* ================================================================
   13. INFILTRAÇÕES
   ================================================================ */
.infil-section { background: var(--gl-cream); position: relative; overflow: hidden; }
.infil-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle,var(--gl-green-50) 0%,transparent 70%); pointer-events: none; }
.infil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: start; }

.infil-tag { display: inline-flex; align-items: center; gap: var(--space-2); background: var(--gl-terra-100); color: var(--gl-terra-600); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .85rem; border-radius: var(--r-full); margin-bottom: var(--space-3); }
.infil-tag svg { width: 13px; height: 13px; }
.infil-lead { font-size: 1.05rem; color: var(--color-text-muted); line-height: 1.8; margin: var(--space-5) 0 var(--space-8); }

.articulacoes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-3); }
.articulacao-item { background: var(--gl-white); border: 1px solid var(--color-border-g); border-radius: var(--r-md); padding: var(--space-4); transition: all var(--dur-base) var(--ease-out); cursor: default; }
.articulacao-item:hover { border-color: var(--gl-green-300); background: var(--gl-green-50); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.art-nome { display: block; font-weight: 700; font-size: .85rem; color: var(--gl-gray-900); }
.art-det { display: block; font-size: .72rem; color: var(--color-text-faint); margin-top: 2px; }

.infil-photo { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4; }
.infil-photo img { width: 100%; height: 100%; object-fit: cover; }

.infil-indicacoes { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-top: var(--space-5); }
.infil-ind-item { background: var(--gl-white); border: 1px solid var(--color-border-g); border-left: 3px solid var(--color-primary); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: var(--space-3) var(--space-4); }
.infil-ind-nome { display: block; font-weight: 700; font-size: .83rem; color: var(--color-primary-dk); }
.infil-ind-det { display: block; font-size: .72rem; color: var(--color-text-faint); margin-top: 2px; }

/* ================================================================
   14. CTA STRIP (mid-page)
   ================================================================ */
.cta-strip {
  background: var(--gl-green-800);
  padding: var(--space-6) 0;
}
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; }
.cta-strip p { font-size: 1.02rem; color: rgba(255,255,255,.85); }
.cta-strip strong { color: var(--gl-white); }

/* ================================================================
   15. EXAMES
   ================================================================ */
.exames-section { background: var(--gl-white); }
.exames-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: var(--space-6); }

.exame-card {
  background: var(--gl-white); border: 1px solid var(--color-border-g);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow);
  display: flex; flex-direction: column;
}
.exame-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.exame-card-icon {
  display: flex; align-items: center; justify-content: center;
  height: 110px; background: linear-gradient(135deg,var(--gl-green-50),var(--gl-green-100));
  transition: background var(--dur-slow);
}
.exame-card:hover .exame-card-icon { background: linear-gradient(135deg,var(--gl-green-100),var(--gl-green-200)); }
.exame-card-icon svg { width: 44px; height: 44px; color: var(--gl-green-500); transition: transform var(--dur-slow) var(--ease-out); }
.exame-card:hover .exame-card-icon svg { transform: scale(1.1) rotate(-3deg); }

.exame-card-body { padding: var(--space-5) var(--space-6); flex: 1; display: flex; flex-direction: column; }
.exame-card-tag { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-primary); margin-bottom: var(--space-2); }
.exame-card-body h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: var(--space-3); color: var(--gl-gray-900); }
.exame-card-body h3 small { display: block; font-size: .78rem; font-family: var(--font-body); font-weight: 400; color: var(--color-text-muted); margin-top: 2px; }
.exame-card-body p { font-size: .85rem; color: var(--color-text-muted); line-height: 1.7; flex: 1; }

.exame-card-meta { display: flex; flex-direction: column; gap: var(--space-1); margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--color-border-g); font-size: .76rem; color: var(--color-text-faint); }

.exame-cta { margin-top: auto; }

.exames-nota { display: flex; align-items: center; gap: var(--space-3); text-align: center; justify-content: center; margin-top: var(--space-8); font-size: .82rem; color: var(--color-text-faint); }
.exames-nota svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ================================================================
   16. COMO FUNCIONA
   ================================================================ */
.como-section { background: var(--gl-green-900); position: relative; overflow: hidden; }
.como-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 80% 20%, rgba(29,158,117,.13) 0%, transparent 60%); }
.como-steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-8); }
.como-steps::before { content: ''; position: absolute; top: 36px; left: calc(12.5% + 18px); right: calc(12.5% + 18px); height: 2px; background: linear-gradient(90deg,var(--gl-green-500),var(--gl-green-300)); z-index: 0; }
.como-step { text-align: center; position: relative; z-index: 1; }
.como-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto var(--space-5);
  background: rgba(255,255,255,.07); border: 2px solid var(--gl-green-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gl-green-300);
  transition: all var(--dur-slow) var(--ease-out); backdrop-filter: blur(8px);
}
.como-step:hover .como-num { background: var(--gl-green-600); border-color: var(--gl-green-400); color: var(--gl-white); transform: scale(1.1); box-shadow: 0 8px 32px rgba(15,112,80,.5); }
.como-step h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--gl-white); margin-bottom: var(--space-3); }
.como-step p { font-size: .85rem; color: rgba(255,255,255,.58); line-height: 1.65; }

/* ================================================================
   17. SAÚDE DA MULHER
   ================================================================ */
.mulher-section { background: var(--gl-cream); }
.mulher-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--space-16); align-items: center; }

.mulher-photo-frame { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4; background: linear-gradient(135deg,var(--gl-green-50),var(--gl-green-100)); border: 1px solid var(--color-border); }
.mulher-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.mulher-badge-card { display: flex; align-items: center; gap: var(--space-4); background: var(--gl-white); border: 1px solid var(--color-border-g); border-radius: var(--r-lg); padding: var(--space-4) var(--space-5); box-shadow: var(--shadow-md); margin-top: var(--space-5); }

.mulher-dra-tag { display: inline-flex; flex-direction: column; gap: 2px; background: var(--gl-green-50); border: 1px solid var(--gl-green-100); border-radius: var(--r-md); padding: var(--space-3) var(--space-4); margin: var(--space-4) 0; }
.mulher-dra-tag strong { font-size: .92rem; color: var(--gl-green-800); }
.mulher-dra-tag span { font-size: .72rem; color: var(--color-text-faint); }

.mulher-procedimentos { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-6); }
.mulher-proc { display: flex; align-items: flex-start; gap: var(--space-4); background: var(--gl-white); border: 1px solid var(--color-border-g); border-radius: var(--r-md); padding: var(--space-4) var(--space-5); transition: all var(--dur-base) var(--ease-out); }
.mulher-proc:hover { border-color: var(--gl-green-200); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.mp-icon { font-size: 1.2rem; flex-shrink: 0; }
.mp-nome { display: block; font-weight: 700; font-size: .9rem; color: var(--gl-gray-900); }
.mp-det { display: block; font-size: .78rem; color: var(--color-text-faint); margin-top: 2px; }

/* ================================================================
   18. FUTURO / TAQUARI
   ================================================================ */
.futuro-section { background: var(--gl-green-900); position: relative; overflow: hidden; }
.futuro-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 90% 10%, rgba(29,158,117,.13) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 10% 90%, rgba(7,69,48,.2) 0%, transparent 60%); }
.futuro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; position: relative; z-index: 1; }

.futuro-cidade-badge { display: flex; align-items: center; gap: var(--space-4); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: var(--space-4) var(--space-5); margin-top: var(--space-8); backdrop-filter: blur(8px); }
.fcb-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gl-green-400); animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.fcb-cidade { display: block; font-weight: 700; font-size: 1rem; color: var(--gl-white); }
.fcb-status { display: block; font-size: .75rem; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Timeline marcos */
.futuro-timeline { display: flex; flex-direction: column; gap: 0; margin-top: var(--space-8); position: relative; }
.futuro-timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.12); }
.futuro-marco { display: flex; align-items: center; gap: var(--space-5); padding: var(--space-4) 0; position: relative; }
.fm-dot { width: 24px; height: 24px; border-radius: 50%; border: 2px solid; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.futuro-marco--done .fm-dot { background: var(--gl-green-500); border-color: var(--gl-green-400); }
.futuro-marco--done .fm-dot svg { width: 12px; height: 12px; color: white; }
.futuro-marco--pending .fm-dot { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); }
.fm-ano { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gl-green-300); }
.fm-txt { display: block; font-size: .9rem; color: rgba(255,255,255,.80); margin-top: 2px; }

.futuro-render-frame { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.futuro-render-frame img { width: 100%; height: 100%; object-fit: cover; }

.futuro-render-placeholder {
  border-radius: var(--r-xl); aspect-ratio: 4/3;
  background: rgba(255,255,255,.04); border: 1px dashed rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
}
.frp-inner { text-align: center; color: rgba(255,255,255,.45); padding: var(--space-8); }
.frp-inner p { margin-top: var(--space-4); font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.65); }
.frp-inner strong { color: var(--gl-white); }
.frp-inner span { display: block; font-size: .72rem; margin-top: var(--space-2); color: rgba(255,255,255,.35); }

.futuro-stats-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-top: var(--space-5); }
.fsc-item { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: var(--space-5) var(--space-6); text-align: center; }
.fsc-num { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gl-white); line-height: 1; }
.fsc-label { display: block; font-size: .72rem; color: rgba(255,255,255,.5); margin-top: var(--space-2); }

/* ================================================================
   19. LOCAIS
   ================================================================ */
.locais-section { background: var(--gl-cream); }
.locais-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }

.local-card { background: var(--gl-white); border: 1px solid var(--color-border-g); border-radius: var(--r-xl); overflow: hidden; transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow); }
.local-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.local-header { padding: var(--space-8); background: var(--gl-green-800); }
.local-header--dark { background: linear-gradient(135deg,var(--gl-green-950),var(--gl-green-900)); position: relative; overflow: hidden; }
.local-header--dark::after { content: 'EM BREVE'; position: absolute; top: 1.25rem; right: -2rem; background: var(--gl-terra-500); color: white; font-size: .58rem; font-weight: 800; letter-spacing: .15em; padding: .25rem 3rem; transform: rotate(45deg); }
.local-header h3 { color: var(--gl-white); font-size: 1.75rem; margin-top: var(--space-3); }
.local-header h3 span { font-size: 1rem; font-weight: 400; opacity: .65; }

.local-status-badge { display: inline-flex; align-items: center; gap: var(--space-2); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gl-green-300); }
.lsb-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; animation: pulse 2s ease-in-out infinite; }
.local-status-badge--pending { color: rgba(255,255,255,.55); }
.local-status-badge--pending svg { width: 14px; height: 14px; }

.local-foto { aspect-ratio: 16/9; overflow: hidden; }
.local-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-xs); }
.local-card:hover .local-foto img { transform: scale(1.04); }
.local-foto-ph { aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-3); background: var(--gl-green-50); color: var(--gl-green-500); font-size: .75rem; font-weight: 500; }
.local-foto-ph--dark { background: linear-gradient(135deg,var(--gl-green-950),var(--gl-green-900)); }

.local-body { padding: var(--space-6) var(--space-8); }
.local-info-row { display: flex; align-items: flex-start; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border-g); }
.local-info-row:last-child { border-bottom: none; }
.local-info-row svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }
.lir-label { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-text-faint); margin-bottom: 3px; }
.lir-val { display: block; font-size: .88rem; color: var(--color-text); }
.lir-ref { display: block; font-size: .75rem; color: var(--color-text-faint); margin-top: 2px; }

.local-aspiracional { padding: var(--space-6); background: linear-gradient(135deg,var(--gl-green-50),var(--gl-cream)); }
.local-aspiracional p { font-size: .88rem; color: var(--color-text-muted); margin-bottom: var(--space-4); }
.local-aspiracional ul { display: flex; flex-direction: column; gap: var(--space-2); }
.local-aspiracional li { display: flex; align-items: center; gap: var(--space-3); font-size: .85rem; color: var(--gl-green-700); }
.local-aspiracional li::before { content: '✓'; font-weight: 700; color: var(--gl-green-500); }

/* ================================================================
   20. DEPOIMENTOS
   ================================================================ */
.depos-section { background: var(--gl-white); }
.depos-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: var(--space-6); }
.depo-card { background: var(--gl-cream); border: 1px solid var(--color-border-g); border-radius: var(--r-lg); padding: var(--space-8); }
.depo-q { font-family: var(--font-display); font-size: 3rem; color: var(--gl-green-200); line-height: 1; margin-bottom: var(--space-4); }
.depo-card blockquote { font-size: .92rem; color: var(--color-text); line-height: 1.78; font-style: italic; margin-bottom: var(--space-5); }
.depo-author { display: flex; align-items: center; gap: var(--space-4); }
.depo-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gl-green-100); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--gl-green-700); font-size: .95rem; flex-shrink: 0; }
.depo-nome { display: block; font-weight: 700; font-size: .85rem; color: var(--gl-gray-900); }
.depo-det { display: block; font-size: .75rem; color: var(--color-text-faint); }

.depos-empty { background: var(--gl-cream); border: 2px dashed var(--gl-green-200); border-radius: var(--r-lg); padding: var(--space-12); text-align: center; color: var(--color-text-muted); }
.depos-empty-icon { font-family: var(--font-display); font-size: 3.5rem; color: var(--gl-green-200); line-height: 1; margin-bottom: var(--space-4); }
.depos-empty p { font-weight: 600; font-size: .95rem; color: var(--gl-gray-700); }
.depos-empty small { font-size: .82rem; }

/* ================================================================
   21. PAGAMENTO
   ================================================================ */
.pag-section { background: var(--gl-cream); }
.pag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.pag-formas { display: flex; flex-direction: column; gap: var(--space-3); }
.pag-card { display: flex; align-items: center; gap: var(--space-4); background: var(--gl-white); border: 1px solid var(--color-border-g); border-radius: var(--r-lg); padding: var(--space-4) var(--space-5); transition: all var(--dur-base); font-size: 1.2rem; }
.pag-card:hover { border-color: var(--gl-green-200); box-shadow: var(--shadow-sm); }
.pc-nome { display: block; font-weight: 700; font-size: .9rem; color: var(--gl-gray-900); }
.pc-det { display: block; font-size: .78rem; color: var(--color-text-faint); }

.pag-convenios { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.pag-convenio-pill { background: var(--gl-green-50); color: var(--gl-green-700); border: 1px solid var(--gl-green-100); border-radius: var(--r-full); font-size: .78rem; font-weight: 700; padding: .35rem .85rem; }
.pag-breve { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-5); font-size: .88rem; color: var(--color-text-muted); background: var(--gl-white); border: 1px solid var(--color-border-g); border-radius: var(--r-md); padding: var(--space-4) var(--space-5); }

/* ================================================================
   22. CTA FINAL
   ================================================================ */
.cta-final-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-final-content h2 { font-size: clamp(2rem,4vw,3rem); color: var(--gl-white); margin-bottom: var(--space-5); }
.cta-final-content p { font-size: 1.05rem; color: rgba(255,255,255,.68); line-height: 1.78; margin-bottom: var(--space-10); }
.cta-final-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }
.cta-nota { margin-top: var(--space-8); font-size: .78rem; color: rgba(255,255,255,.38); }

/* ================================================================
   23. FOOTER
   ================================================================ */
#site-footer { background: var(--gl-gray-950); color: rgba(255,255,255,.52); padding: var(--space-16) 0 var(--space-8); }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: var(--space-12); margin-bottom: var(--space-12); }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.7; margin-top: var(--space-4); max-width: 280px; }
.footer-logo-img { height: 34px; filter: brightness(0) invert(1); opacity: .88; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-social a { width: 34px; height: 34px; border-radius: var(--r-sm); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: center; transition: all var(--dur-base); }
.footer-social a:hover { background: var(--color-primary); border-color: var(--color-primary); transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; color: rgba(255,255,255,.65); }
.footer-col h5 { font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: var(--space-5); }
.footer-links-list { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links-list a { font-size: .83rem; color: rgba(255,255,255,.42); transition: color var(--dur-fast), transform var(--dur-fast); display: inline-block; }
.footer-links-list a:hover { color: var(--gl-green-300); transform: translateX(3px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: var(--space-3); font-size: .8rem; color: rgba(255,255,255,.42); margin-bottom: var(--space-3); line-height: 1.5; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--gl-green-400); flex-shrink: 0; margin-top: 2px; }
.footer-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: var(--space-6); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); font-size: .72rem; color: rgba(255,255,255,.26); }
.footer-bottom a { color: rgba(255,255,255,.32); }
.footer-bottom a:hover { color: var(--gl-green-400); }

/* ================================================================
   24. WHATSAPP FLOAT
   ================================================================ */
.whatsapp-sticky { position: fixed; bottom: 2rem; right: 2rem; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-3); }
.whatsapp-sticky-btn { width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,.42), 0 2px 8px rgba(0,0,0,.14); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); position: relative; }
.whatsapp-sticky-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 36px rgba(37,211,102,.52), 0 4px 16px rgba(0,0,0,.18); }
.whatsapp-sticky-btn svg { width: 28px; height: 28px; fill: white; }
.whatsapp-ring { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.38); animation: waring 2.5s ease-out infinite; }
@keyframes waring { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.5);opacity:0} }
.whatsapp-tooltip { background: var(--gl-gray-900); color: var(--gl-white); font-size: .76rem; font-weight: 500; padding: .4rem .85rem; border-radius: var(--r-full); white-space: nowrap; opacity: 0; transform: translateX(8px); transition: opacity var(--dur-base), transform var(--dur-base); pointer-events: none; }
.whatsapp-sticky:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ================================================================
   25. SCROLL ANIMATIONS
   ================================================================ */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-xs) var(--ease-out), transform var(--dur-xs) var(--ease-out); }
[data-animate="fade-left"] { transform: translateX(-28px); }
[data-animate="fade-right"] { transform: translateX(28px); }
[data-animate="scale-up"] { transform: scale(.95); }
[data-animate].animated { opacity: 1; transform: none; }
[data-delay="80"]  { transition-delay: 80ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="120"] { transition-delay: 120ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="180"] { transition-delay: 180ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="280"] { transition-delay: 280ms; }
[data-delay="380"] { transition-delay: 380ms; }

/* ================================================================
   26. PÁGINA INTERNA — hero, breadcrumb, conteúdo
   ================================================================ */
.page-hero { background: linear-gradient(135deg,var(--gl-green-900),var(--gl-green-800)); padding: calc(var(--header-h) + var(--space-16)) 0 var(--space-16); color: var(--gl-white); position: relative; overflow: hidden; }
.page-hero h1 { color: var(--gl-white); margin-bottom: var(--space-4); }
.page-hero p { color: rgba(255,255,255,.68); font-size: 1.05rem; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: var(--space-2); font-size: .78rem; color: rgba(255,255,255,.48); margin-bottom: var(--space-5); }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gl-green-300); }
.breadcrumb-sep { opacity: .4; }

/* ================================================================
   27. ACESSIBILIDADE
   ================================================================ */
.screen-reader-text { border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal; }
:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; border-radius: 3px; }

/* ================================================================
   28. RESPONSIVO
   ================================================================ */
@media (max-width: 1100px) {
  .numeros-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .como-steps { grid-template-columns: repeat(2,1fr); }
  .como-steps::before { display: none; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--space-10); min-height: auto; padding-bottom: var(--space-16); }
  .hero-visual { order: -1; }
  .hero-photo-frame { max-width: 300px; }
  .hero-credential { top: .5rem; right: -.5rem; }
  .hero-float-card-2 { display: none; }
  .manifesto-grid,.dr-grid,.infil-grid,.mulher-grid,.futuro-grid,.pag-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .articulacoes-grid { grid-template-columns: repeat(2,1fr); }
  .dr-traj-grid { grid-template-columns: 1fr; }
  .locais-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  nav.main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .sticky-mobile-cta { display: block; }
  .numeros-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { flex-wrap: wrap; gap: var(--space-5); }
  .articulacoes-grid { grid-template-columns: 1fr; }
  .infil-indicacoes { grid-template-columns: 1fr; }
  .como-steps { grid-template-columns: 1fr; }
  .futuro-stats-cards { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .section { padding: var(--space-16) 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .hero-ctas,.cta-final-ctas { flex-direction: column; }
  .hero-ctas .btn,.cta-final-ctas .btn { width: 100%; justify-content: center; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .whatsapp-sticky { bottom: 5rem; right: 1rem; }
}

/* ================================================================
   29. REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-animate] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

@media print {
  #site-header,.whatsapp-sticky,.sticky-mobile-cta,#hero-particles { display: none; }
  body { font-size: 12pt; color: black; }
}

/* ================================================================
   V4 — TERCEIRA ITERAÇÃO
   Todas as classes novas: Dr., Equipe, Pilares, Depoimentos v4,
   CTA Final v4, refinamentos visuais premium
   ================================================================ */

/* ----------------------------------------------------------------
   DR. MAIQUEL v4
   ---------------------------------------------------------------- */
.dr-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}
.dr-section-header h2 { margin-bottom: var(--space-4); }
.dr-section-header p { font-size: 1.05rem; color: var(--color-text-muted); line-height: 1.8; }

.dr-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Quote com figcaption */
.dr-quote-figure {
  margin: var(--space-6) 0;
}
.dr-quote-caption {
  font-size: .82rem;
  color: var(--color-text-faint);
  font-style: normal;
  margin-top: var(--space-3);
  padding-left: var(--space-8);
}

/* Trajetória — timeline vertical */
.dr-traj-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: var(--space-8);
  margin-top: var(--space-4);
}
.dr-traj-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gl-green-400), var(--gl-green-100));
  border-radius: var(--r-full);
}
.dr-traj-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  position: relative;
}
.dti-dot {
  position: absolute;
  left: calc(-1 * var(--space-8) + 3px);
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gl-green-500);
  border: 2px solid var(--gl-white);
  box-shadow: 0 0 0 2px var(--gl-green-200);
  flex-shrink: 0;
}
.dti-content { display: flex; flex-direction: column; gap: 2px; }
.dti-nome {
  font-weight: 700;
  font-size: .9rem;
  color: var(--gl-gray-900);
  line-height: 1.3;
}
.dti-local {
  font-size: .76rem;
  color: var(--color-text-muted);
}
.dti-tipo {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* Mídia items */
.dr-midia-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.dr-midia-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: .85rem;
  color: var(--color-text-muted);
}
.dmi-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  background: var(--gl-green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dmi-icon svg { width: 15px; height: 15px; color: var(--color-primary); }

/* Dr. CTAs */
.dr-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

/* ----------------------------------------------------------------
   EQUIPE — Dra. Chariel card horizontal
   ---------------------------------------------------------------- */
.equipe-section { background: var(--gl-cream); }
.equipe-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-16);
}
.equipe-header h2 { margin-bottom: var(--space-4); }
.equipe-header p { font-size: 1.02rem; color: var(--color-text-muted); }

.dra-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--gl-white);
  border: 1px solid var(--color-border-g);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow);
}
.dra-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.dra-card-photo {
  position: relative;
  background: linear-gradient(135deg, var(--gl-green-800), var(--gl-green-900));
  min-height: 360px;
  overflow: hidden;
}
.dra-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.photo-ph--green {
  background: linear-gradient(135deg, var(--gl-green-50), var(--gl-green-100));
  color: var(--gl-green-500);
}

.dra-card-body {
  padding: var(--space-8) var(--space-10);
  display: flex;
  flex-direction: column;
}
.dra-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.dra-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.dra-card-body h3 {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.dra-crm {
  font-size: .78rem;
  color: var(--color-text-faint);
  margin-top: var(--space-1);
}
.dra-badge-ufcspa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  background: var(--gl-green-50);
  border: 1px solid var(--gl-green-100);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
  font-size: .72rem;
  font-weight: 700;
  color: var(--gl-green-700);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: .82rem;
}

.dra-bio {
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.dra-procedimentos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.dra-proc-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gl-green-50);
  color: var(--gl-green-700);
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: var(--r-full);
  border: 1px solid var(--gl-green-100);
}
.dra-proc-pill svg { width: 12px; height: 12px; color: var(--gl-green-500); flex-shrink: 0; }

.equipe-footer-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-6);
  background: var(--gl-white);
  border: 1px solid var(--color-border-g);
  border-radius: var(--r-lg);
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.equipe-footer-note svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.equipe-footer-note p { margin: 0; }

/* ----------------------------------------------------------------
   PILARES — Por que a Greenleaf
   ---------------------------------------------------------------- */
.pilares-section {
  background: var(--gl-green-900);
  position: relative;
  overflow: hidden;
}
.pilares-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(29,158,117,.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(7,69,48,.25) 0%, transparent 60%);
}
.pilares-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.pilar-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: var(--space-8) var(--space-6);
  transition: background var(--dur-slow) var(--ease-out),
              border-color var(--dur-slow),
              transform var(--dur-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.pilar-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gl-green-500), var(--gl-green-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.pilar-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-6px);
}
.pilar-card:hover::before { transform: scaleX(1); }

.pilar-icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-5);
}
.pilar-icon svg { width: 48px; height: 48px; color: var(--gl-green-400); }

.pilar-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gl-white);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}
.pilar-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.58);
  line-height: 1.72;
}

/* ----------------------------------------------------------------
   DEPOIMENTOS v4 — máximo impacto
   ---------------------------------------------------------------- */
.depos-section { background: var(--gl-green-950); }

.depos-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}
.depos-header h2 { color: var(--gl-white); margin-bottom: var(--space-4); }
.depos-header .eyebrow { color: var(--gl-green-300); }
.depos-header .eyebrow::before { background: var(--gl-green-300); }

/* Estado vazio premium */
.depos-pre-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.depos-pre-quote {
  position: relative;
  padding: var(--space-8);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-xl);
}
.depos-giant-quote {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gl-green-800);
  line-height: .8;
  position: absolute;
  top: -1rem;
  left: var(--space-6);
  pointer-events: none;
  z-index: 0;
}
.depos-pre-quote p {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-family: var(--font-display);
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  font-style: italic;
}
.depos-pre-quote cite {
  display: block;
  font-size: .8rem;
  color: var(--gl-green-400);
  margin-top: var(--space-4);
  font-style: normal;
  font-weight: 600;
}
.depos-pre-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.depos-pre-cta-text h4 {
  font-size: 1.3rem;
  color: var(--gl-white);
  margin-bottom: var(--space-3);
}
.depos-pre-cta-text p {
  font-size: .92rem;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
}

/* Grid de depoimentos com estrelas */
.depos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
}

.depo-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  transition: background var(--dur-slow), transform var(--dur-slow) var(--ease-out);
}
.depo-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}

.depo-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}
.depo-q {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gl-green-700);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.depo-card blockquote {
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-5);
}
.depo-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.08);
}
.depo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gl-green-800);
  border: 2px solid var(--gl-green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gl-green-300);
  font-size: .95rem;
  flex-shrink: 0;
}
.depo-nome { display: block; font-weight: 700; font-size: .88rem; color: var(--gl-white); }
.depo-det  { display: block; font-size: .75rem; color: rgba(255,255,255,.45); }

/* ----------------------------------------------------------------
   CTA FINAL v4 — layout dividido, máxima conversão
   ---------------------------------------------------------------- */
.cta-final-section {
  background: linear-gradient(135deg, var(--gl-green-950) 0%, var(--gl-green-900) 60%, var(--gl-green-800) 100%);
  position: relative;
  overflow: hidden;
}
.cta-final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(29,158,117,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 80%, rgba(7,69,48,.3) 0%, transparent 60%);
}
/* Textura grid sutil */
.cta-final-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-24) var(--space-6) var(--space-20);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Lado esquerdo */
.cta-final-h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--gl-white);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}
.cta-final-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: var(--space-10);
}
.cta-final-reasons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.cta-reason {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: .92rem;
  color: rgba(255,255,255,.78);
}
.cta-reason-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(29,158,117,.25);
  border: 1px solid var(--gl-green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gl-green-300);
  flex-shrink: 0;
}

/* Lado direito — caixa de ação */
.cta-final-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-8) var(--space-6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.cta-final-box-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gl-green-300);
  margin-bottom: var(--space-5);
}
.cfbh-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.cta-final-box h3 {
  color: var(--gl-white);
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
}
.cta-final-box p {
  font-size: .88rem;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}
.cta-final-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.cta-final-box-nota {
  font-size: .72rem;
  color: rgba(255,255,255,.32);
  text-align: center;
  margin-top: var(--space-5);
}

/* ----------------------------------------------------------------
   HERO fixes v4
   ---------------------------------------------------------------- */
.hero-text { flex: 1; }
.hero-stat { display: flex; flex-direction: column; }

/* ----------------------------------------------------------------
   SAÚDE DA MULHER — remover seção separada que saiu no v4
   (Dra. Chariel agora está na seção equipe — manter mulher-section
    para compatibilidade de âncoras de outros templates)
   ---------------------------------------------------------------- */
.mulher-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--space-16); align-items: center; }
.mulher-photo-frame { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4; background: linear-gradient(135deg,var(--gl-green-50),var(--gl-green-100)); border: 1px solid var(--color-border); }
.mulher-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.mulher-badge-card { display: flex; align-items: center; gap: var(--space-4); background: var(--gl-white); border: 1px solid var(--color-border-g); border-radius: var(--r-lg); padding: var(--space-4) var(--space-5); box-shadow: var(--shadow-md); margin-top: var(--space-5); }
.mulher-dra-tag { display: inline-flex; flex-direction: column; gap: 2px; background: var(--gl-green-50); border: 1px solid var(--gl-green-100); border-radius: var(--r-md); padding: var(--space-3) var(--space-4); margin: var(--space-4) 0; }
.mulher-dra-tag strong { font-size: .92rem; color: var(--gl-green-800); }
.mulher-dra-tag span { font-size: .72rem; color: var(--color-text-faint); }
.mulher-procedimentos { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-6); }
.mulher-proc { display: flex; align-items: flex-start; gap: var(--space-4); background: var(--gl-white); border: 1px solid var(--color-border-g); border-radius: var(--r-md); padding: var(--space-4) var(--space-5); transition: all var(--dur-base) var(--ease-out); }
.mulher-proc:hover { border-color: var(--gl-green-200); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.mp-icon { font-size: 1.2rem; flex-shrink: 0; }
.mp-nome { display: block; font-weight: 700; font-size: .9rem; color: var(--gl-gray-900); }
.mp-det { display: block; font-size: .78rem; color: var(--color-text-faint); margin-top: 2px; }

/* ----------------------------------------------------------------
   LOCAL CARD helpers
   ---------------------------------------------------------------- */
.local-card--ativo .local-header { background: var(--gl-green-800); }
.local-card--breve .local-header--dark {
  background: linear-gradient(135deg, var(--gl-green-950), var(--gl-green-900));
  position: relative;
  overflow: hidden;
}
.local-card--breve .local-header--dark::after {
  content: 'EM BREVE';
  position: absolute;
  top: 1.25rem;
  right: -2rem;
  background: var(--gl-terra-500);
  color: white;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .15em;
  padding: .25rem 3rem;
  transform: rotate(45deg);
}
.local-header h3 { color: var(--gl-white); font-size: 1.6rem; margin-top: var(--space-3); }
.local-header h3 span { font-size: 1rem; font-weight: 400; opacity: .65; }

/* ----------------------------------------------------------------
   INFIL / FUTURO helpers (referências a classes sem CSS)
   ---------------------------------------------------------------- */
.infil-text {}
.infil-visual {}
.futuro-text {}
.futuro-visual {}
.manifesto-visual {}

/* ----------------------------------------------------------------
   RESPONSIVO — novas classes v4
   ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-final-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .cta-final-right { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 900px) {
  .dra-card { grid-template-columns: 1fr; }
  .dra-card-photo { min-height: 280px; }
  .dra-card-top { flex-wrap: wrap; }
  .depos-pre-social { grid-template-columns: 1fr; gap: var(--space-8); }
  .dr-traj-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pilares-grid { grid-template-columns: 1fr; }
  .dr-ctas { flex-direction: column; }
  .dr-ctas .btn { width: 100%; justify-content: center; }
  .cta-final-inner { padding: var(--space-16) var(--space-4); }
  .cta-final-h2 { font-size: 2rem; }
  .depos-giant-quote { font-size: 5rem; }
}

/* v4 — últimas classes */
.cta-final-left { display: flex; flex-direction: column; }
.fm-content { display: flex; flex-direction: column; gap: 2px; }

/* ================================================================
   V6.0 — NOVAS CLASSES
   ================================================================ */

/* ----------------------------------------------------------------
   NOSSA HISTÓRIA
   ---------------------------------------------------------------- */
.historia-section { background: var(--gl-white); }

.historia-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.historia-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: var(--space-6);
  margin-top: var(--space-2);
}

.historia-text p {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.85;
}
.historia-text p + p { margin-top: var(--space-4); }

.historia-visual {
  position: relative;
  background: linear-gradient(135deg, var(--gl-green-900), var(--gl-green-800));
  border-radius: var(--r-xl);
  padding: var(--space-10) var(--space-8);
  overflow: hidden;
}

.historia-quote-mark {
  font-family: var(--font-display);
  font-size: 9rem;
  color: rgba(255,255,255,.06);
  line-height: .8;
  position: absolute;
  top: -1rem;
  left: var(--space-6);
  pointer-events: none;
  user-select: none;
}

.historia-blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(255,255,255,.88);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.historia-line {
  width: 40px;
  height: 2px;
  background: var(--gl-green-400);
  border-radius: var(--r-full);
  margin-bottom: var(--space-4);
}

.historia-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gl-green-300);
}

@media (max-width: 900px) {
  .historia-inner { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* ----------------------------------------------------------------
   FAIXA INSTITUCIONAL — após exames
   ---------------------------------------------------------------- */
.faixa-institucional {
  background: var(--gl-green-800);
  padding: var(--space-8) 0;
}

.faixa-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.faixa-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: 1;
  min-width: 200px;
}

.faixa-item svg {
  width: 28px;
  height: 28px;
  color: var(--gl-green-300);
  flex-shrink: 0;
}

.fi-titulo {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  color: var(--gl-white);
  line-height: 1.3;
}

.fi-sub {
  display: block;
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.faixa-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .faixa-grid { flex-direction: column; align-items: flex-start; gap: var(--space-5); }
  .faixa-sep { display: none; }
  .faixa-item { min-width: unset; }
}

/* ----------------------------------------------------------------
   DEPOIMENTOS — âncora numérica v6
   ---------------------------------------------------------------- */
.depos-pre-num {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.depos-num-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gl-green-400);
  line-height: 1;
}

.depos-num-label {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  max-width: 260px;
}

/* ----------------------------------------------------------------
   PAGAMENTO — versão discreta v6
   ---------------------------------------------------------------- */
.pag-formas-discretas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-7);
  background: var(--gl-white);
  border: 1px solid var(--color-border-g);
  border-radius: var(--r-lg);
}

.pag-formas-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.pag-formas-lista {
  font-size: .92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   CTA FINAL — botões secundários em linha (v6)
   ---------------------------------------------------------------- */
.cta-secondary-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.btn-cta-ghost {
  font-size: .82rem;
  color: rgba(255,255,255,.52);
  text-decoration: none;
  transition: color var(--dur-fast);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.btn-cta-ghost:hover { color: rgba(255,255,255,.85); }

.cta-secondary-div {
  color: rgba(255,255,255,.2);
  font-size: .75rem;
}

/* ----------------------------------------------------------------
   TRUST BAR — largura label UFCSPA
   ---------------------------------------------------------------- */
/* [removido] .trust-bar-inner .trust-item:first-child { */
  font-weight: 600;
}

/* ----------------------------------------------------------------
   HERO CREDENTIAL — label mais longo
   ---------------------------------------------------------------- */
.hero-credential-label {
  display: block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gl-green-300);
  max-width: 140px;
  line-height: 1.3;
}


/* ================================================================
   V7.0 — ITERAÇÃO FINAL
   ================================================================ */

/* ----------------------------------------------------------------
   HERO — tríade Acolhimento · Confiança · Excelência
   ---------------------------------------------------------------- */
.hero-triad {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  margin-top: var(--space-3);
}

.hero-triad-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  position: relative;
}

.hero-triad-word {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.58);
  font-style: italic;
  transition: color var(--dur-slow) var(--ease-out);
  /* tamanho controlado via Customizer → Hero → Tríade tamanho */
}

/* Linha decorativa sob cada palavra — aparece no hover da seção */
.hero-triad-item::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gl-green-400);
  transform: scaleX(0);
  transition: transform var(--dur-slow) var(--ease-out);
}

#hero:hover .hero-triad-word { color: rgba(255,255,255,.88); }
#hero:hover .hero-triad-item::after { transform: scaleX(1); }

.hero-triad-sep {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   NÚMEROS v7 — protagonismo máximo dos números
   ---------------------------------------------------------------- */
.numeros-grid--v7 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.numero-card--v7 {
  background: var(--gl-white);
  border: 1px solid var(--color-border-g);
  border-radius: var(--r-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow);
}

.numero-card--v7::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gl-green-500), var(--gl-green-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}

.numero-card--v7:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.numero-value--v7 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-3);
  letter-spacing: -.03em;
}

.numero-title--v7 {
  font-weight: 600;
  font-size: .78rem;
  color: var(--gl-gray-600);
  display: block;
  margin-bottom: var(--space-2);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   MOMENTO MEMORÁVEL
   ---------------------------------------------------------------- */
.momento-section {
  background: var(--gl-white);
  padding: var(--space-32) 0;
  text-align: center;
}

.momento-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.momento-frase {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--gl-gray-900);
  line-height: 1.45;
  letter-spacing: -.02em;
  font-style: italic;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 1.4s cubic-bezier(.22,1,.36,1),
    transform 1.4s cubic-bezier(.22,1,.36,1);
}

/* Animação especial — mais lenta e suave que o padrão */
[data-animate="momento"].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   INFILTRAÇÕES v7 — protagonismo e identidade própria
   ---------------------------------------------------------------- */
.infil-section--v7 {
  background: var(--gl-white);
  border-top: 1px solid var(--color-border-g);
  border-bottom: 1px solid var(--color-border-g);
}

.infil-section--v7::before { display: none; }

.infil-selo {
  display: flex;
  justify-content: flex-start;
  margin-bottom: var(--space-5);
}

.infil-selo-inner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, var(--gl-terra-100), #FDF3EE);
  border: 1px solid rgba(200,96,42,.2);
  color: var(--gl-terra-600);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1.25rem;
  border-radius: var(--r-full);
}

.infil-selo-inner svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.infil-h2--v7 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-5);
}

.infil-lead--v7 {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-4);
}

.infil-sub {
  font-size: .92rem;
  color: var(--color-text-faint);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  font-style: italic;
}

.infil-anatomia {
  margin-bottom: var(--space-8);
}

.infil-anatomia-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
  display: block;
}

.infil-indicacoes-v7 { margin-bottom: var(--space-2); }

.infil-inds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.infil-ind-item--v7 {
  background: var(--gl-cream);
  border: 1px solid var(--color-border-g);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: var(--space-3) var(--space-4);
  transition: background var(--dur-base), transform var(--dur-base);
}

.infil-ind-item--v7:hover {
  background: var(--gl-green-50);
  transform: translateX(3px);
}

/* ----------------------------------------------------------------
   FUTURO — encerramento emocional
   ---------------------------------------------------------------- */
.futuro-encerramento {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,.10);
}

.futuro-enc-linha {
  font-size: 1rem;
  color: rgba(255,255,255,.60);
  line-height: 1.7;
  margin: 0;
}

.futuro-enc-destaque {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gl-green-300);
  margin-top: var(--space-2);
}

/* ----------------------------------------------------------------
   REFINAMENTOS GERAIS v7 (ALT 10)
   ---------------------------------------------------------------- */

/* Consistência tipográfica: eyebrow com espaçamento uniforme */
.eyebrow { margin-bottom: var(--space-3); }

/* Ritmo visual: seções alternadas com respiração melhorada */
.section { padding: var(--space-24) 0; }

/* Microinteração: links do footer com transição de posição */
.footer-links-list a {
  transition: color var(--dur-fast), transform var(--dur-base) var(--ease-out);
}

/* Número card hover — border-top accent já implementado, suavizar */
.numero-card { transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow); }

/* Pilar cards — hover mais suave */
.pilar-card { transition: background var(--dur-slow) var(--ease-out), border-color var(--dur-slow), transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow); }

/* Trust bar: primeiro item em negrito (UFCSPA) */
/* [removido] .trust-bar-inner .trust-item:first-child span { font-weight: 600; } */

/* Dr. quote: leve refinamento de espaçamento */
.dr-quote { padding: var(--space-6) var(--space-6) var(--space-6) var(--space-10); }

/* Dra. card: borda sutil no topo para ancorar no layout */
.dra-card { border-top: 3px solid var(--gl-green-200); }

/* Momento: espaço antes da seção dr maiquel — já tem padding da section */

/* Faixa institucional: leve refinamento de padding */
.faixa-institucional { padding: var(--space-10) 0; }

/* ----------------------------------------------------------------
   RESPONSIVO V7
   ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .numeros-grid--v7 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .numeros-grid--v7 { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .numero-value--v7 { font-size: 2rem; }
  .hero-triad { gap: var(--space-3); }
  .hero-triad-word { font-size: .7rem; }
  .momento-frase { font-size: 1.35rem; }
  .momento-section { padding: var(--space-20) 0; }
  .infil-inds-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .numeros-grid--v7 { grid-template-columns: 1fr 1fr; }
  .hero-triad { flex-wrap: wrap; justify-content: center; }
}

/* ================================================================
   V8 — NINA + REFINAMENTOS FINAIS
   ================================================================ */

/* ----------------------------------------------------------------
   NINA — seção de apresentação da concierge digital
   ---------------------------------------------------------------- */
.nina-section {
  background: var(--gl-cream);
  position: relative;
  overflow: hidden;
}

.nina-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gl-green-50) 0%, transparent 70%);
  pointer-events: none;
}

.nina-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: start;
}

/* Frame da Nina — moldura igual à dos médicos (retrato 3:4, bordas arredondadas) */
.nina-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gl-green-800), var(--gl-green-900));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}

.nina-frame svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nina-frame--svg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: var(--space-6);
  gap: var(--space-3);
}

.nina-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.nina-badge-disponivel {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gl-white);
  border: 1px solid var(--color-border-g);
  border-radius: var(--r-full);
  padding: .4rem 1rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gl-gray-700);
  box-shadow: var(--shadow-sm);
}

.nina-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Texto da Nina */
.nina-h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-3);
  margin-top: var(--space-2);
}

.nina-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

.nina-bio {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.82;
  margin-bottom: var(--space-6);
}

/* Bloco de disponibilidade */
.nina-disponibilidade {
  background: var(--gl-white);
  border: 1px solid var(--color-border-g);
  border-radius: var(--r-lg);
  padding: var(--space-5) var(--space-6);
}

.nina-disp-badge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.nina-disp-pulse {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  margin-top: 4px;
  animation: pulse 2.2s ease-in-out infinite;
}

.nina-disp-badge strong {
  font-size: .92rem;
  color: var(--gl-gray-900);
  line-height: 1.5;
}

.nina-disp-nota {
  font-size: .78rem;
  color: var(--color-text-faint);
  line-height: 1.65;
  margin: 0;
  padding-left: var(--space-5);
  border-left: 2px solid var(--color-border-g);
}

/* Botão da Nina — variante específica */
.btn-nina {
  background: var(--gl-green-700);
  color: var(--gl-white);
  box-shadow: 0 4px 20px rgba(7,69,48,.22);
}

.btn-nina:hover {
  background: var(--gl-green-800);
  color: var(--gl-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(7,69,48,.28);
}

/* ----------------------------------------------------------------
   REVISÃO FINAL — eliminar elementos sem função narrativa
   ---------------------------------------------------------------- */

/* Sticky CTA mobile: texto mais direto */
.sticky-mobile-cta a { font-size: .95rem; }

/* Header scroll: transição mais suave */
#site-header { transition: background .5s var(--ease-out), box-shadow .5s var(--ease-out); }

/* Wave hero: altura proporcional à viewport */
.hero-wave { height: clamp(40px, 5vw, 70px); }

/* Faixa institucional: tipografia refinada */
.fi-titulo { font-size: .9rem; letter-spacing: -.01em; }
.fi-sub    { font-size: .74rem; }

/* Espaço entre seções: ritmo mais musical */
.historia-section   { padding-bottom: var(--space-16); }
.numeros-section    { padding-top: var(--space-16); }
.momento-section    { padding: clamp(var(--space-20), 10vw, var(--space-32)) 0; }
.equipe-section     { padding-bottom: var(--space-20); }
.infil-section--v7  { padding: var(--space-24) 0; }

/* Momento: quebra suave antes e depois */
.momento-section {
  border-top: 1px solid var(--color-border-g);
  border-bottom: 1px solid var(--color-border-g);
}

/* ----------------------------------------------------------------
   RESPONSIVO V8
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .nina-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  .nina-frame { margin: 0 auto; }
  .nina-disp-badge { justify-content: center; }
  .nina-disp-nota { padding-left: 0; border-left: none; border-top: 1px solid var(--color-border-g); padding-top: var(--space-3); }
  .nina-section .btn-nina { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  .nina-frame { max-width: 280px; margin: 0 auto; }
  .nina-h2 { font-size: 1.8rem; }
}

/* ================================================================
   REDES SOCIAIS — barra no topo
   ================================================================ */
.social-topbar {
  background: var(--gl-green-900);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  /* Fixed no topo — acima do header */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.social-topbar-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: flex-end;
}
.social-topbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Tamanho controlado via CSS custom property — padrão 28px */
  width: var(--social-icon-size, 28px);
  height: var(--social-icon-size, 28px);
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.social-topbar-link:hover { color: var(--gl-green-300); }
.social-topbar-link i {
  font-size: calc(var(--social-icon-size, 28px) * 0.55);
}
/* Somente ícones */
.social-topbar-nome { display: none !important; }

/* Header: fixed logo abaixo da barra social */
#site-header {
  position: fixed;
  top: var(--social-bar-h, 35px);
  z-index: 1000;
}

/* ================================================================
   NINA — proporção 1:1 (quadrada como a foto original)
   ================================================================ */
.nina-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1 !important;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gl-green-800), var(--gl-green-900));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}

/* ================================================================
   MEMBRO ADICIONAL — card horizontal igual ao da Dra.
   ================================================================ */
.membro-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--gl-white);
  border: 1px solid var(--color-border-g);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow);
}
.membro-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.membro-card .dra-card-photo { min-height: 300px; }

@media (max-width: 900px) {
  .membro-card { grid-template-columns: 1fr; }
  .membro-card .dra-card-photo { min-height: 240px; }
}

/* ================================================================
   SOCIAL TOPBAR RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .social-topbar-nome { display: none; }
  .social-topbar-inner { justify-content: center; gap: var(--space-4); }
}

/* ================================================================
   DEPOIMENTOS - PLUGIN EXTERNO
   ================================================================ */

/* ── Trustindex — ajuste de cores para fundo escuro ── */
.ti-widget.ti-wp-testimonial-1 .ti-footer .ti-name,
.ti-widget.ti-wp-testimonial-1 .ti-footer .ti-name a,
.ti-widget.ti-wp-testimonial-1 .ti-widget-container .ti-name {
  color: #FFFFFF !important;
}
.ti-widget.ti-wp-testimonial-1 .ti-footer .ti-date,
.ti-widget.ti-wp-testimonial-1 .ti-widget-container .ti-date {
  color: rgba(255,255,255,0.55) !important;
}

/* ================================================================
   CORREÇÃO LOGOTIPO NO FOOTER
   ================================================================ */

.footer-logo-img {
  height: auto;
  width: auto;
  max-width: 280px;
}
/* ================================================================
   ACCESSIBILITY
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ================================================================
   CSS ADICIONAL — Páginas Secundárias Greenleaf SIS
   ================================================================ */
.page-hero {
  padding: calc(var(--header-h) + var(--social-bar-h, 35px) + var(--space-16)) 0 var(--space-16);
  min-height: 40vh;
  display: flex;
  align-items: center;
}
.page-hero--green {
  background: linear-gradient(135deg, var(--gl-green-900) 0%, var(--gl-green-700) 100%);
  position: relative;
}
.page-hero-inner { max-width: 720px; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.72); line-height: 1.8; margin-top: var(--space-4); }
.page-hero h1 { color: var(--gl-white); font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb { display: flex; align-items: center; gap: var(--space-2); font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: var(--space-4); }
.breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--gl-white); }
.breadcrumb span { color: rgba(255,255,255,.55); }
.page-content-grid { display: grid; grid-template-columns: 1fr 320px; gap: var(--space-12); align-items: start; }
.page-content-main h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: var(--space-5); }
.page-content-main h3 { font-size: 1.15rem; margin-top: var(--space-8); margin-bottom: var(--space-3); }
.page-content-main p { line-height: 1.85; color: var(--color-text); margin-bottom: var(--space-4); }
.aside-card { background: var(--gl-white); border: 1px solid var(--color-border-g); border-radius: var(--r-xl); padding: var(--space-7); position: sticky; top: calc(var(--header-h) + var(--social-bar-h, 35px) + var(--space-6)); }
.aside-card h4 { font-size: 1rem; margin-bottom: var(--space-5); color: var(--gl-green-800); }
.page-content-aside { position: relative; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; flex-direction: column; padding: var(--space-3) 0; border-bottom: 1px solid var(--color-border-g); gap: 2px; }
.info-list li:last-child { border-bottom: none; }
.il-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--color-text-muted); }
.il-val { font-size: .9rem; font-weight: 600; color: var(--gl-green-800); }
.info-box { background: var(--gl-green-50, #f0f9f5); border: 1px solid var(--color-border-g); border-radius: var(--r-lg); padding: var(--space-7); }
.info-box h3 { margin-top: 0; }
.info-box-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-top: var(--space-4); }
.info-box-item strong { display: block; color: var(--gl-green-700); margin-bottom: var(--space-2); }
.info-box-item p { font-size: .9rem; margin: 0; }
.info-highlight { background: rgba(15,112,80,.06); border-left: 3px solid var(--color-primary); border-radius: 0 var(--r-md) var(--r-md) 0; padding: var(--space-5) var(--space-6); font-size: .92rem; line-height: 1.75; }
.lead { font-size: 1.1rem; color: var(--color-text-muted); line-height: 1.75; }
.indicacoes-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.indicacoes-list li { padding: var(--space-2) var(--space-3); background: var(--gl-green-50, #f0f9f5); border-radius: var(--r-md); font-size: .9rem; color: var(--gl-green-800); display: flex; align-items: center; gap: var(--space-2); }
.indicacoes-list li::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; }
.faq-list { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-6); }
.faq-item { border: 1px solid var(--color-border-g); border-radius: var(--r-lg); overflow: hidden; background: var(--gl-white); }
.faq-question { padding: var(--space-5) var(--space-6); font-weight: 600; font-size: .95rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--gl-green-800); transition: background var(--dur-fast); }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--color-primary); flex-shrink: 0; margin-left: var(--space-4); transition: transform var(--dur-fast); }
details[open] .faq-question { background: var(--gl-green-50, #f0f9f5); }
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 var(--space-6) var(--space-5); font-size: .92rem; line-height: 1.8; color: var(--color-text); }
.faq-answer p { margin: 0; }
.section--cream { background: var(--gl-cream, #F7F4EE); }
@media (max-width: 900px) { .page-content-grid { grid-template-columns: 1fr; } .aside-card { position: static; } .indicacoes-list { grid-template-columns: 1fr; } .info-box-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .page-hero { min-height: 30vh; } }

.eq-divisor { height: 1px; background: var(--color-border-g); margin: 0; }
.eq-perfil { display: grid; grid-template-columns: 380px 1fr; gap: 3rem; align-items: start; }
.eq-perfil--reverse { grid-template-columns: 1fr 380px; }
.eq-perfil--reverse .eq-perfil-foto { order: 2; }
.eq-perfil--reverse .eq-perfil-texto { order: 1; }
.eq-perfil-foto { border-radius: var(--r-xl); overflow: hidden; position: sticky; top: calc(var(--header-h) + var(--social-bar-h,35px) + var(--space-6)); }
.eq-perfil-foto--compact { max-height: 400px; }
.eq-perfil-tag { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--color-primary); font-weight: 600; margin-bottom: var(--space-3); }
.eq-perfil-texto h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; margin-bottom: var(--space-2); color: var(--gl-green-900); }
.eq-perfil-registro { font-size: .82rem; color: var(--color-text-muted); margin-bottom: var(--space-7); }
.eq-perfil-texto p { line-height: 1.9; color: var(--color-text); margin-bottom: var(--space-4); }
.eq-citacao { position: relative; margin: var(--space-6) 0; padding: var(--space-5) var(--space-6) var(--space-5) var(--space-8); border-left: 3px solid var(--color-primary); font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height: 1.7; color: var(--gl-green-800); background: rgba(15,112,80,.04); border-radius: 0 var(--r-md) var(--r-md) 0; }
.eq-citacao-aspas { position: absolute; top: -8px; left: var(--space-3); font-size: 3rem; line-height: 1; color: var(--color-primary); opacity: .35; font-family: var(--font-display); }
.eq-perfil-dados { display: flex; flex-direction: column; gap: 0; margin-top: var(--space-7); border: 1px solid var(--color-border-g); border-radius: var(--r-lg); overflow: hidden; }
.eq-dado { display: grid; grid-template-columns: 120px 1fr; gap: var(--space-4); padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--color-border-g); align-items: start; }
.eq-dado:last-child { border-bottom: none; }
.eq-dado-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--color-text-muted); font-weight: 600; padding-top: 2px; }
.eq-dado-val { font-size: .9rem; color: var(--gl-green-800); font-weight: 500; line-height: 1.5; }
.eq-procedimentos { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.eq-proc-pill { display: inline-flex; align-items: center; gap: var(--space-2); background: rgba(15,112,80,.07); color: var(--gl-green-700); font-size: .8rem; font-weight: 500; padding: var(--space-2) var(--space-3); border-radius: var(--r-full); }
.eq-proc-pill svg { width: 10px; height: 10px; flex-shrink: 0; }
@media (max-width: 960px) { .eq-perfil, .eq-perfil--reverse { grid-template-columns: 1fr; } .eq-perfil--reverse .eq-perfil-foto, .eq-perfil--reverse .eq-perfil-texto { order: unset; } .eq-perfil-foto { position: static; max-height: 420px; } }
@media (max-width: 600px) { .eq-dado { grid-template-columns: 1fr; gap: var(--space-1); } }

.page-editor-content { padding: var(--space-16) 0; }
.page-editor-content--legal { padding: var(--space-12) 0 var(--space-16); }
.page-editor-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--gl-green-900); margin: var(--space-10) 0 var(--space-4); }
.page-editor-content h2:first-child { margin-top: 0; }
.page-editor-content h3 { font-size: 1.1rem; color: var(--gl-green-800); margin: var(--space-7) 0 var(--space-3); }
.page-editor-content p { line-height: 1.9; color: var(--color-text); margin-bottom: var(--space-4); }
.page-editor-content ul, .page-editor-content ol { margin: var(--space-3) 0 var(--space-5) var(--space-6); }
.page-editor-content li { line-height: 1.8; margin-bottom: var(--space-2); color: var(--color-text); }
.page-editor-content strong { color: var(--gl-green-800); }
.page-editor-content a { color: var(--color-primary); }
.page-editor-content details { margin-bottom: var(--space-2); }
.page-editor-content--legal h2 { font-size: 1.2rem; border-bottom: 1px solid var(--color-border-g); padding-bottom: var(--space-2); margin-top: var(--space-10); }
.page-editor-content--legal p { max-width: 100%; }
.page-editor-content--legal table { width: 100%; border-collapse: collapse; font-size: .88rem; margin: var(--space-5) 0; }
.page-editor-content--legal th { background: var(--gl-green-800); color: var(--gl-white); padding: var(--space-3) var(--space-4); text-align: left; }
.page-editor-content--legal td { padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--color-border-g); vertical-align: top; line-height: 1.6; }
.page-editor-content--legal tr:nth-child(even) td { background: rgba(15,112,80,.03); }

/* CORREÇÃO — space-14 não existe no tema, usar space-12 */
.eq-perfil { gap: 3rem; }