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

:root {
  /* Brand palette — Up Life (roxo + verde) */
  /* --navy-* = tons de ROXO (cor primária) */
  --navy-900: #2c1a4d;
  --navy-800: #3d2568;
  --navy-700: #5a3696;
  --navy-600: #6f47b3;
  --navy-50: #f2ecfb;

  /* --gold-* = tons de VERDE (cor de destaque) */
  --gold-500: #86c440;
  --gold-600: #6ba62f;
  --gold-400: #a3d76a;
  --gold-100: #eef7dd;

  --cream-50: #faf9fd;
  --cream-100: #f4f0fb;
  --cream-200: #e8e0f4;

  --ink-900: #201733;
  --ink-700: #2e2740;
  --ink-500: #5a5270;
  --ink-300: #948da6;

  --white: #ffffff;

  /* Type — headings com serifa moderna (Playfair Display), corpo sans-serif */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: var(--font-sans);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(44, 26, 77, 0.05);
  --shadow-md: 0 4px 14px rgba(44, 26, 77, 0.08);
  --shadow-lg: 0 14px 40px rgba(44, 26, 77, 0.12);
  --shadow-xl: 0 24px 60px rgba(44, 26, 77, 0.18);
  --shadow-gold: 0 8px 24px rgba(90, 54, 150, 0.25);

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

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

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p { margin-bottom: 1rem; }

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

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

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

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

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

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

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

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

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

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

.btn-gold:hover {
  background: linear-gradient(180deg, var(--gold-400) 0%, var(--gold-500) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(90, 54, 150, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-500);
  border-color: rgba(90, 54, 150, 0.5);
}

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

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

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

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

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

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

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

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0 12px;
  transition: all var(--t-base);
  background: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

/* Pílula de contato "Atendimento 24h" à direita da navbar */
.nav-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 7px 22px 7px 8px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 18px rgba(12, 42, 28, 0.25);
  transition: all var(--t-base);
}
.nav-cta-pill:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(12, 42, 28, 0.32);
}
.nav-cta-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-cta-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-cta-text small {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
}
.nav-cta-text strong { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em; }

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #2c1a4d 0%, #3d2568 50%, #5a3696 100%);
}

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

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

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

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

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

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

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

/* Feature cards — faixa sobreposta ao hero */
.feature-strip-section {
  position: relative;
  z-index: 5;
  margin-top: -110px;
  padding-bottom: 70px;
  background: transparent;
}

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

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

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

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

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

.feature-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 26px 24px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all var(--t-base);
  border: 1px solid rgba(90, 54, 150, 0.08);
  overflow: hidden;
}

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

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

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--navy-800);
  display: grid;
  place-items: center;
  color: var(--gold-400);
  margin-bottom: 16px;
  transition: all var(--t-base);
}

.feature-icon svg{
  color: #FFFFFF;
}

.feature-card:hover .feature-icon {
  background: var(--gold-500);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}

.feature-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

.stat-item {
  border-left: 2px solid rgba(90, 54, 150, 0.4);
  padding-left: 16px;
}

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

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

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

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

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

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

.help-banner-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12, 42, 28, 0.15);
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   Sobre a Clínica (features + stats + foto)
============================================ */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-50);
  color: var(--navy-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 1.3rem;
}
.about-badge svg { color: var(--navy-600); }

.about-section .about-lead {
  margin-top: 1.2rem;
  color: var(--ink-500);
  max-width: 540px;
}
.about-section .about-lead p:last-child { margin-bottom: 0; }

/* Linha de 4 pilares (ícone + rótulo) */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2.2rem;
}
.about-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.af-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--navy-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  transition: all var(--t-base);
}
.about-feature:hover .af-icon {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  color: var(--white);
  transform: translateY(-3px);
}
.af-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.3;
}

/* Linha de 4 indicadores (cards) */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 1.8rem;
}
.about-stat {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--t-base);
}
.about-stat:hover {
  border-color: var(--navy-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.as-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--white);
  color: var(--navy-600);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2px;
}
.about-stat strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy-800);
}
.about-stat small {
  font-size: 0.68rem;
  color: var(--ink-500);
  line-height: 1.3;
}
.about-stat small.as-only {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-top: 2px;
}

/* Foto + faixa de citação */
.about-photo-wrap { position: relative; }
.about-photo {
  height: 460px;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-quote {
  position: relative;
  margin: -54px 0 0 auto;
  width: calc(100% - 40px);
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-quote .aq-mark {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 0.7;
  color: var(--gold-400);
  flex-shrink: 0;
}
.about-quote p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.5;
}
.about-quote .accent { color: var(--gold-400); font-style: italic; }

@media (max-width: 991px) {
  .about-features { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-photo { height: 380px; }
}
@media (max-width: 575px) {
  .about-features { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-quote { width: 100%; margin-top: -40px; }
}

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

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


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

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

.treatments-section h2 .accent,
.treatments-section h2 .italic-accent {
  color: var(--navy-600);
  font-style: italic;
}

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

/* Card horizontal: ícone à esquerda, texto, seta à direita */
.treatment-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-md);
  padding: 22px 22px;
  transition: all var(--t-base);
  cursor: pointer;
}

.treatment-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-600);
  box-shadow: var(--shadow-lg);
}

.treatment-ico {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--navy-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  transition: all var(--t-base);
}
.treatment-card:hover .treatment-ico {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  color: var(--white);
}

.treatment-body {
  flex: 1 1 auto;
  min-width: 0;
}
.treatment-body h5 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.treatment-body p {
  font-size: 0.8rem;
  color: var(--ink-500);
  line-height: 1.45;
  margin: 0;
}

.treatment-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  transition: all var(--t-base);
}
.treatment-card:hover .treatment-arrow {
  background: var(--navy-700);
  color: var(--white);
  transform: translateX(3px);
}

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

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

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

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

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

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

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

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

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

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

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

.blog-image-2 {
  background:
    linear-gradient(180deg, rgba(12, 42, 28, 0.2) 0%, rgba(90, 54, 150, 0.3) 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #2c3e5a, #6ba62f 70%, #a3d76a);
}

.blog-image-3 {
  background:
    linear-gradient(180deg, rgba(90, 54, 150, 0.2) 0%, rgba(12, 42, 28, 0.3) 100%),
    repeating-linear-gradient(-30deg, rgba(90, 54, 150, 0.1) 0 3px, transparent 3px 16px),
    linear-gradient(135deg, #8b7355, #6ba62f 50%, #3d5a2a);
}

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

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

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

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

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

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

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

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

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

.cta-inner {
  background: linear-gradient(105deg, var(--navy-800) 0%, var(--navy-700) 100%);
  border-radius: var(--r-lg);
  padding: 56px 60px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 54, 150, 0.15), transparent 70%);
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.cta-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.3);
}

.cta-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

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

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

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

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

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

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

.footer-address {
  max-width: 310px;
  margin: -8px 0 20px;
  font-size: .8rem;
  font-style: normal;
  line-height: 1.55;
}
.footer-address a {
  color: rgba(255, 255, 255, .72);
}
.footer-address a:hover {
  color: var(--gold-400);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Clinics (galeria) cards — usando imagens reais */
.clinics-section {
  padding: 100px 0;
  background: var(--white);
}
.clinics-header {
  text-align: center;
  margin-bottom: 3rem;
}
.clinics-header h2 {
  max-width: 760px;
  margin: 0 auto 1rem;
}
.clinics-header p {
  color: var(--ink-500);
  max-width: 720px;
  margin: 0 auto;
}
.clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 2.5rem;
}
.clinic-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid var(--cream-200);
  display: flex;
  flex-direction: column;
}
.clinic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-600);
}
.clinic-card .clinic-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.clinic-card .clinic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.clinic-card:hover .clinic-image img { transform: scale(1.05); }
.clinic-card .clinic-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy-800);
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.clinic-card .clinic-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.clinic-card .clinic-body h4 {
  font-size: 1.12rem;
  margin-bottom: 4px;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  gap: 8px;
}
.clinic-pin { color: var(--navy-600); display: inline-flex; flex-shrink: 0; }
.clinic-card .clinic-body .clinic-loc {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-200);
}
.clinic-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.clinic-feats li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--ink-700);
}
.clinic-feats li svg { color: var(--navy-600); flex-shrink: 0; }
.clinic-card .clinic-body .clinic-cta {
  margin-top: auto;
  justify-content: center;
  color: var(--navy-700);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--r-pill);
  transition: all var(--t-base);
}
.clinic-card .clinic-body .clinic-cta:hover {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
}

.clinics-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--t-base);
}
.clinics-all-link:hover { color: var(--navy-900); gap: 12px; }

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

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

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

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

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

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

@media (max-width: 991px) {
  .clinics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .clinics-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Páginas internas — hero compacto + breadcrumb
============================================ */
.page-hero {
  position: relative;
  padding: 160px 0 70px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, #3a5a9e 100%);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(90, 54, 150, 0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(30, 58, 122, 0.4), transparent 50%);
  z-index: -1;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: -1;
}
.page-hero > .container {
  position: relative;
  z-index: 2;
}
.page-hero-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 76px;
  background: url('../img/onda-hero.svg') no-repeat center bottom / 100% 100%;
  pointer-events: none;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p.lead {
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  font-size: 1.05rem;
}
.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}
.page-hero .breadcrumb a { color: #fff!important; }
.page-hero .breadcrumb a:hover { color: var(--gold-400); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.7); }

@media (max-width: 640px) {
  .page-hero-wave {
    height: 54px;
  }
}

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

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

.article-content .article-intro {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--navy-800);
}
.article-content .article-highlight,
.article-content .article-warning {
  margin: 1.75rem 0;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: color-mix(in srgb, var(--gold-400) 10%, var(--white));
}
.article-content .article-highlight p,
.article-content .article-warning p:last-child { margin-bottom: 0; }
.article-content .article-warning h2,
.article-content .article-related h2 {
  margin-top: 0;
  font-size: 1.3rem;
}
.article-content .article-index {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.article-content .article-index p { margin-bottom: .65rem; }
.article-content .article-index ul,
.article-content .article-related ul { margin-bottom: 0; }
.article-content .article-index a { text-decoration: none; }
.article-content .article-index a:hover { text-decoration: underline; }
.article-content .article-related {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--r-md);
  background: var(--navy-50);
}

@media (max-width: 575.98px) {
  .article-content .article-highlight,
  .article-content .article-warning,
  .article-content .article-index,
  .article-content .article-related { padding: 1rem; }
  .article-content .article-intro { font-size: 1.04rem; }
}

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

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

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

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

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

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

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

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

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

/* ============================================
   Home Clinicas Oliveira - referencia arqExterno
============================================ */
body {
  background: #fff;
  color: #22302a;
}

.top-service-bar {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-800));
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 700;
}
.top-service-bar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.top-service-list {
  display: flex;
  align-items: center;
  gap: 44px;
}
.top-service-list span,
.top-service-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  white-space: nowrap;
}
.top-service-list svg {
  color: var(--gold-500);
}
.top-service-phone {
  font-size: 1rem;
  color: #fff;
}
.top-service-phone:hover {
  color: #fff;
}

.navbar-custom {
  top: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transition: top var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.navbar-custom .container,
.navbar-custom.scrolled .container {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 18px 12px;
}
.navbar-custom.scrolled {
  top: 0;
  padding: 0;
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 30px rgba(44, 26, 77,.08);
}
.navbar-custom.scrolled .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
/* Home: nav fixo por cima do hero — gradiente branco (topo) que some no rodapé */
.navbar-custom.navbar-home {
  position: fixed;
  top: 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.85) 40%,
    rgba(255,255,255,0.45) 72%,
    rgba(255,255,255,0) 100%);
  box-shadow: none;
}
/* Ao rolar, ganha fundo branco sólido para leitura sobre o conteúdo */
.navbar-custom.navbar-home.scrolled {
  top: 0;
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 30px rgba(44, 26, 77,.08);
}
.nav-logo-img {
  max-height: 68px;
}
.navbar-custom.scrolled .nav-logo-img {
  max-height: 58px;
}
.nav-links {
  gap: 18px;
}
.nav-links a {
  color: #24312b;
  font-size: .94rem;
  border-radius: 0;
  padding: 10px 2px;
  position: relative;
}
.nav-links a:hover {
  color: var(--navy-800);
  background: transparent;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 99px;
  background: var(--navy-700);
  transform: scaleX(0);
  transition: transform var(--t-fast);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta-pill {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-900));
  padding: 13px 24px;
  gap: 9px;
  box-shadow: 0 10px 22px rgba(61, 37, 104,.22);
}
.nav-cta-icon {
  width: 22px;
  height: 22px;
  background: transparent;
}
.nav-cta-text small {
  display: none;
}
.nav-cta-text strong {
  font-size: .94rem;
}

/* Telefone + botão agrupados à direita do nav */
.nav-contact {
  align-items: center;
  gap: 18px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-weight: 700;
  font-size: .98rem;
  white-space: nowrap;
  text-decoration: none;
}
.nav-phone svg {
  color: var(--navy-600);
}
.nav-phone:hover {
  color: var(--navy-700);
}

.hero-home {
  min-height: 790px !important;
  padding: 190px 0 170px !important;
  background: #ffffff;
  color: #22302a;
}
/* Onda decorativa no rodapé — sobreposta (passa por cima da foto à direita,
   revelando também o lado verde da onda de ponta a ponta) */
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/onda-hero.svg') no-repeat center bottom;
  background-size: 100% 160px;
  z-index: 1;
  pointer-events: none;
}

/* Foto do banner confinada ao lado direito, como no layout de referência */
.hero-home .hero-slides-bg {
  left: auto !important;
  right: 0 !important;
  width: 65% !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  z-index: -3;
}
.hero-home .hero-slide-bg {
  background-position: center right !important;
  /* Suaviza a borda esquerda da foto para fundir com o fundo claro/ondas */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}
.hero-home .hero-video-overlay {
  display: none !important;
  z-index: -2;
  background: none;
}
.hero-home .container {
  z-index: 3;
}
.hero-home .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  letter-spacing: 0;
  text-transform: none;
  font-size: .9rem;
  font-weight: 600;
  background: rgba(93, 63, 168, .12);
  padding: 7px 16px 7px 14px;
  border-radius: 999px;
  margin-bottom: 1.35rem;
}
.hero-home .kicker::before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  background: currentColor;
  -webkit-mask: no-repeat center / contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 21s-8-4.6-8-10a4.5 4.5 0 0 1 8-2.8A4.5 4.5 0 0 1 20 11c0 5.4-8 10-8 10z'/></svg>");
          mask: no-repeat center / contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 21s-8-4.6-8-10a4.5 4.5 0 0 1 8-2.8A4.5 4.5 0 0 1 20 11c0 5.4-8 10-8 10z'/></svg>");
}
.hero-home h1 {
  color: var(--navy-900);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
}
.hero-home .hero-lead {
  color: #24312b;
  font-size: 1.25rem;
  max-width: 560px;
}
.hero-actions {
  margin-bottom: 2.4rem;
}
.btn-gold,
.hero-home .btn-gold {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-900));
  border-color: var(--navy-700);
  color: #fff;
  box-shadow: 0 14px 28px rgba(61, 37, 104,.22);
}
.hero-home .btn-ghost-light {
  background: #fff;
  color: var(--navy-800);
  border-color: var(--navy-700);
  box-shadow: none;
}
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(78px, 1fr));
  gap: 0;
  max-width: 620px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(93, 63, 168, .1);
  border-radius: 18px;
  padding: 18px 8px;
  box-shadow: 0 18px 40px rgba(35, 20, 60, .1);
  backdrop-filter: blur(4px);
}
.hero-proof-grid span {
  display: grid;
  gap: 8px;
  padding: 0 16px;
  color: #1d3329;
  font-size: .78rem;
  line-height: 1.25;
  font-weight: 700;
}
.hero-proof-grid span + span {
  border-left: 1px solid rgba(93, 63, 168, .12);
}
.hero-proof-grid svg {
  color: var(--navy-700);
}

/* No desktop, os selos ocupam a área livre sobre a foto. Mantê-los dentro
   de cada slide evita perder a sincronização durante a troca do banner. */
@media (min-width: 992px) {
  .home-banner-carousel .carousel-inner {
    overflow: visible;
  }
  .hero-home .hero-proof-grid {
    position: absolute;
    left: calc(100% + 30px);
    bottom: -96px;
    width: min(620px, calc(50vw - 48px));
    max-width: none;
    z-index: 4;
  }
}
.hero-help-card {
  position: absolute;
  right: 10%;
  bottom: 92px;
  z-index: 4;
  width: min(410px, 34vw);
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(61, 37, 104,.08);
  border-radius: 22px;
  padding: 24px 28px;
  box-shadow: 0 22px 46px rgba(35, 20, 60,.18);
}
.hero-help-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-700);
  color: #fff;
  font-weight: 900;
  flex: 0 0 auto;
}
.hero-help-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 1rem;
}
.hero-help-card p {
  margin: 4px 0 12px;
  color: #33423a;
  font-size: .88rem;
  line-height: 1.45;
}
.hero-help-card a {
  display: inline-flex;
  color: #fff;
  background: var(--navy-700);
  border-radius: 999px;
  padding: 7px 18px;
  font-weight: 800;
  font-size: .86rem;
}

.section.about-section {
  padding: 38px 0 20px;
  background: #fff !important;
}
.about-section .container,
.treatments-section .container,
.clinics-section .container {
  max-width: 1320px;
}
.about-model-row {
  background: #fff;
  border-radius: 24px;
  padding: 42px;
  margin-top: 0; /* anula o -3rem que o gutter g-5 do Bootstrap aplica na .row (evita sobrepor o hero) */
}
.about-image-col {
  order: 1;
}
.about-copy-col {
  order: 2;
}
.about-photo {
  height: 515px;
  border-radius: 18px;
  box-shadow: none;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-600);
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  font-size: .95rem;
  font-weight: 700;
}
.about-badge svg { color: var(--gold-600); }
.about-section h2 {
  color: var(--navy-900);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0;
}
.about-section .italic-accent {
  color: var(--navy-900);
  font-style: normal;
}
/* 4 pilares: ícone circular + rótulo centralizado embaixo, como no layout */
.about-features {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 2.2rem;
}
.about-feature {
  min-height: 0;
  background: none;
  border-radius: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 12px;
  padding: 0;
}
.af-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(93, 63, 168, .1);
  color: var(--navy-700);
  flex: 0 0 auto;
}
.about-feature:hover .af-icon {
  background: rgba(93, 63, 168, .16);
}
.af-label {
  color: #2c3a33;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Selo flutuante sobre a foto */
.about-photo-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-700);
  color: #fff;
  padding: 12px 20px 12px 12px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: 0 16px 34px rgba(35, 20, 60, .28);
}
.about-photo-badge .apb-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .18);
  flex: 0 0 auto;
}

.treatments-section {
  margin: 26px auto 0;
  max-width: 1320px;
  border-radius: 24px;
  padding: 56px 48px;
}
.treatments-section h2 {
  max-width: 920px;
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: 0;
}
.treatments-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 2.5rem 0 1.6rem;
}
.treatment-card {
  min-height: 258px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
  padding: 34px 24px;
  box-shadow: 0 16px 34px rgba(44, 26, 77,.08);
}
.treatment-ico {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #edf5ef;
}
.treatment-body h5 {
  color: var(--navy-800);
  font-size: 1.12rem;
  line-height: 1.15;
}
.treatment-body p {
  font-size: .9rem;
  color: #32433a;
}

.clinics-section {
  max-width: 1320px;
  margin: 26px auto 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #faf9fd 0%, #f4f0fb 100%);
  padding: 62px 48px;
}
.clinics-header {
  max-width: 740px;
  margin: 0 auto 28px;
}
.clinics-header h2 {
  color: var(--navy-900);
  font-weight: 800;
}
.clinics-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: center;
  gap: 38px;
}
.clinics-map {
  min-height: 330px;
  display: grid;
  place-items: center;
}
.map-shape {
  width: 250px;
  height: 310px;
  position: relative;
  background: linear-gradient(135deg, #e8e0f4, #f2ecfb);
  clip-path: polygon(28% 2%, 72% 8%, 90% 30%, 76% 55%, 86% 83%, 56% 98%, 33% 79%, 8% 86%, 18% 56%, 5% 35%);
  filter: drop-shadow(0 22px 32px rgba(61, 37, 104,.12));
}
.map-shape::before,
.map-shape::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(61, 37, 104,.08);
  border-radius: 50%;
  inset: 16%;
}
.map-shape::after {
  inset: 28%;
}
.map-shape .pin {
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--navy-700);
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 16px rgba(61, 37, 104,.25);
}
.map-shape .pin-1 { right: 54px; top: 54px; }
.map-shape .pin-2 { left: 92px; top: 154px; }
.map-shape .pin-3 { left: 84px; bottom: 54px; }
.clinics-layout .clinics-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 0;
}
.clinic-card {
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(44, 26, 77,.08);
}
.clinic-card .clinic-image {
  height: 138px;
}
.clinic-card .clinic-body {
  padding: 18px 20px 20px;
}
.clinic-card .clinic-body h4 {
  color: var(--navy-800);
  font-size: 1.22rem;
  font-weight: 800;
}
.clinic-card .clinic-body .clinic-loc,
.clinic-card .clinic-body .clinic-cta {
  display: none;
}
.clinic-feats {
  margin: 14px 0 0;
  gap: 8px;
}
.clinic-feats li {
  font-size: .84rem;
}
.clinics-all-link {
  margin-top: 30px;
  border: 1.5px solid var(--navy-700);
  border-radius: 999px;
  padding: 12px 24px;
}

/* Cards de unidade simples: foto + selo flutuante (layout de referência) */
.clinics-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 8px;
}
.clinics-simple-grid.is-single {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}
.clinic-simple-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(44, 26, 77, .1);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.clinic-simple-card img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--t-base);
}
.clinic-simple-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(44, 26, 77, .16);
}
.clinic-simple-card:hover img {
  transform: scale(1.05);
}
.clinic-simple-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--navy-800);
  font-size: .95rem;
  font-weight: 700;
  padding: 11px 20px 11px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(44, 26, 77, .2);
}
.clinic-simple-badge svg {
  color: var(--navy-600);
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .clinics-simple-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .clinic-simple-card img { height: 210px; }
}

.testimonials-section,
.faq-section {
  display: none;
}
.blog-section {
  background: #fff;
  padding: 72px 0 52px;
}
.blog-header h2 {
  color: var(--navy-900);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 800;
}
.blog-grid {
  gap: 28px;
}
.blog-card {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(44, 26, 77,.07);
}
.blog-image {
  height: 188px;
}
.blog-tag {
  position: static;
  background: transparent;
  color: var(--navy-700);
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  font-size: .82rem;
}
.blog-body {
  padding: 22px 24px 26px;
}
.blog-card h4 {
  color: #17251e;
  font-weight: 800;
}
.blog-meta {
  border: 0;
  padding: 0;
}
.blog-meta span {
  display: none;
}
.blog-read-more {
  color: var(--navy-700);
  font-size: .9rem;
}
.blog-section .text-center {
  display: none;
}

.cta-band {
  background: #fff;
  padding: 26px 0 36px;
}
.cta-inner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  grid-template-columns: minmax(0, 1fr) 460px;
  grid-template-areas:
    "content photo"
    "actions photo";
  align-content: center;
  gap: 18px 42px;
  background: linear-gradient(105deg, #35196a 0%, #472583 46%, #5a3696 100%);
  color: #fff;
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 24px 50px rgba(44, 26, 77, .22);
}
.cta-inner::before {
  display: none;
}
.cta-content {
  grid-area: content;
  align-items: flex-start;
  gap: 0;
  padding: 48px 24px 0 56px;
}
.cta-mark,
.cta-eyebrow {
  display: none;
}
.cta-content h3 {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  max-width: 600px;
}
.cta-content h3 .cta-accent {
  color: var(--gold-400);
}
.cta-content p {
  color: rgba(255, 255, 255, .82);
  max-width: 480px;
  font-size: 1rem;
  margin-top: 14px;
}
.cta-actions {
  grid-area: actions;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  margin-top: 16px;
  padding: 0 24px 48px 56px;
}
.cta-actions .cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-400);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
}
.cta-actions .cta-phone:hover {
  color: var(--gold-500);
}
.cta-photo {
  grid-area: photo;
  /* Foto colada às bordas, ocupando a altura total (sem padding em volta) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 460px;
  border-radius: 0 22px 22px 0;
  background: url("../img/foto-cta.webp") center / cover no-repeat;
  clip-path: none;
  /* Fade suave da esquerda para fundir a foto com o roxo, como no anexo */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
}
.footer {
  background: radial-gradient(circle at 25% 10%, #5a3696 0%, var(--navy-900) 42%, #1e1136 100%);
  padding-top: 68px;
}
.footer-grid {
  grid-template-columns: 1.35fr .8fr 1fr 1fr 1.25fr;
}
.footer-col h6 {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1rem;
}
.footer-links a,
.footer-contact li,
.footer-brand p {
  color: rgba(255,255,255,.82);
}
.footer-bottom {
  color: rgba(255,255,255,.78);
}

@media (max-width: 1199px) {
  .hero-help-card {
    right: 4%;
    width: 360px;
  }
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clinics-layout {
    grid-template-columns: 1fr;
  }
  .clinics-map {
    min-height: 230px;
  }
  .map-shape {
    transform: scale(.82);
  }
  .cta-photo {
    width: 330px;
  }
  .cta-inner {
    grid-template-columns: 1fr 330px;
  }
}

@media (max-width: 991px) {
  .top-service-bar {
    display: none;
  }
  .navbar-custom {
    position: fixed;
    top: 0;
  }
  .navbar-custom .container,
  .navbar-custom.scrolled .container {
    padding: 12px;
  }
  .hero-home {
    min-height: auto !important;
    padding: 112px 0 76px !important;
    background: var(--cream-50);
  }
  .hero-home::before {
    display: none;
  }
  .hero-home::after {
    display: block;
    background-size: 100% 96px;
    background-position: center bottom;
    z-index: 2;
  }
  .hero-home .container {
    z-index: 4;
  }
  .hero-home .row {
    min-height: 650px;
    align-items: flex-start;
  }
  .hero-home .col-lg-6 {
    width: 100%;
  }
  .hero-home .carousel-item {
    min-height: 0;
    padding: 22px 18px 20px;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.72) 52%, rgba(255,255,255,.18) 100%);
  }
  .hero-home .hero-slides-bg {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
  .hero-home .hero-slide-bg {
    background-position: 64% top !important;
    background-size: cover !important;
    border-radius: 0;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .hero-home .hero-slides-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.58) 43%, rgba(255,255,255,.08) 100%),
      linear-gradient(180deg, rgba(255,255,255,0) 42%, rgba(44, 26, 77,.42) 100%);
    pointer-events: none;
  }
  .hero-home .hero-video-overlay {
    display: none !important;
    background: none;
  }
  .hero-help-card {
    display: none;
  }
  .hero-proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
    margin-top: 22px;
    background: none;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
  }
  .hero-proof-grid span {
    min-width: 0;
    gap: 6px;
    padding: 0;
    font-size: .68rem;
    line-height: 1.15;
    color: var(--navy-900);
    word-break: normal;
  }
  .hero-proof-grid span + span {
    border-left: 0;
  }
  .hero-proof-grid svg {
    width: 20px;
    height: 20px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 12px;
    font-size: .86rem;
    white-space: nowrap;
  }
  .about-model-row,
  .treatments-section,
  .clinics-section {
    padding: 28px;
  }
  .about-image-col,
  .about-copy-col {
    order: initial;
  }
  .clinics-layout .clinics-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "actions" "photo";
    padding: 34px 28px 0;
  }
  .cta-content {
    padding: 0 0 4px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 0;
  }
  .cta-actions .cta-phone {
    justify-content: center;
  }
  .cta-photo {
    position: static;
    width: auto;
    min-height: 240px;
    border-radius: 18px 18px 0 0;
    clip-path: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 100%);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding: 90px 0 48px !important;
  }
  .hero-home::after {
    background-size: 100% 78px;
  }
  .hero-home h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.35rem);
    max-width: 11ch;
  }
  .hero-home .kicker {
    font-size: .9rem;
  }
  .hero-home .hero-lead {
    max-width: 19rem;
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-home .carousel-item {
    padding: 20px 14px 18px;
    background: none;
  }
  .hero-home .row {
    min-height: 610px;
  }
  .hero-proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .about-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .about-feature {
    gap: 8px;
  }
  .about-feature .af-icon {
    width: 46px;
    height: 46px;
  }
  .about-feature .af-icon svg {
    width: 21px;
    height: 21px;
  }
  .about-feature .af-label {
    font-size: .66rem;
    line-height: 1.2;
  }
  .treatments-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof-grid span {
    font-size: .62rem;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    min-height: 48px;
    padding-inline: 8px;
    font-size: .78rem;
  }
  .about-model-row,
  .treatments-section,
  .clinics-section {
    border-radius: 18px;
    padding: 22px 16px;
  }
  .about-photo {
    height: 330px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Canais de contato: telefone e WhatsApp */
.cta-whatsapp {
  gap: 11px;
  min-height: 54px;
  padding: 9px 18px;
}
.cta-whatsapp > svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}
.cta-whatsapp-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.cta-whatsapp-copy small {
  color: rgba(255, 255, 255, .84);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.cta-whatsapp-copy strong {
  color: #fff;
  font-size: .92rem;
}

.footer-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.footer-contact-copy small {
  color: rgba(255, 255, 255, .55);
  font-size: .67rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-contact-copy a {
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
  font-weight: 650;
  white-space: nowrap;
}
.footer-contact-copy a:hover {
  color: var(--gold-400);
}
.footer-contact .footer-whatsapp-item svg {
  color: #35dc72;
}
.footer-whatsapp-item .footer-contact-copy a:hover {
  color: #5aeb8d;
}

.sidebar-whatsapp-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  border: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(37, 211, 102, .2), transparent 42%),
    linear-gradient(145deg, var(--navy-800), var(--navy-900));
  box-shadow: 0 18px 45px rgba(29, 17, 52, .2);
}
.sidebar-whatsapp-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  right: -78px;
  bottom: -88px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none;
}
.sidebar-whatsapp-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 21px;
}
.sidebar-whatsapp-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: #25d366;
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .3);
}
.sidebar-whatsapp-head div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-whatsapp-eyebrow {
  color: rgba(255, 255, 255, .68);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.sidebar-whatsapp-head strong {
  color: #fff;
  font-size: 1.02rem;
}
.sidebar-box.sidebar-whatsapp-card h4 {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--gold-400);
  border: 0;
  padding: 0;
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.32rem;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}
.sidebar-whatsapp-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.sidebar-whatsapp-button {
  position: relative;
  z-index: 1;
  min-height: 48px;
  justify-content: center;
  gap: 9px;
  font-weight: 750;
  box-shadow: 0 10px 25px rgba(37, 211, 102, .24);
}

.float-wa {
  width: auto;
  min-width: 168px;
  height: 58px;
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px 0 15px;
  border-radius: 999px;
}
.float-wa-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.08;
}
.float-wa-copy small {
  color: rgba(255, 255, 255, .8);
  font-size: .62rem;
  font-weight: 600;
}
.float-wa-copy strong {
  color: #fff;
  font-size: .9rem;
  letter-spacing: .01em;
}

@media (max-width: 640px) {
  .float-wa {
    right: 16px;
    bottom: 16px;
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
  }
  .float-wa-copy {
    display: none;
  }
}
