/* ============================================================
   CLÍNICA BERENICE MATTIELLO — DESIGN SYSTEM
   components.css  |  Componentes reutilizáveis
   ============================================================
   Ordem:
     1.  Topbar
     2.  Nav / Header
     3.  Menu mobile
     4.  Botões
     5.  Badge / Eyebrow / Section Label
     6.  Grids de seção
     7.  Cards de especialidade
     8.  Feature items (Autismo)
     9.  Float cards
    10.  Visual cards (hero)
    11.  Hero / Slider
    12.  Seção Autismo
    13.  Seção Sobre
    14.  Seção Especialidades
    15.  Seção Quote
    16.  Seção Depoimentos
    17.  Seção CTA + Mapa
    18.  Footer
    19.  WhatsApp floating button
    20.  Responsivo
   ============================================================ */

/* ─── 1. TOPBAR ───────────────────────────────────────────── */
.topbar {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 9px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar a:hover { color: var(--primary-pale); }

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ─── 2. NAV / HEADER ─────────────────────────────────────── */
nav,
.site-header {
  background: var(--white);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px var(--shadow);
  transition: box-shadow 0.3s;
}

nav.scrolled,
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(26, 171, 161, 0.18);
}

nav .container,
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  flex-shrink: 0;
}

.logo img { height: 55px; width: auto; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

/* Underline animado */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Dropdown de especialidades */
.has-dropdown { position: relative; }

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Ocultar underline no item dropdown (usa ícone em vez disso) */
.has-dropdown > a::after { display: none !important; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(26, 171, 161, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 8px;
  min-width: 210px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li { margin-bottom: 0; }

.nav-dropdown a {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover { color: var(--primary); background: #f0faf9; }
.nav-dropdown a::after { display: none !important; }

/* Botão CTA no nav */
.btn-nav {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-nav:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--shadow-md);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ─── 3. MENU MOBILE ──────────────────────────────────────── */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0 24px;
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  list-style: none;
  padding: 0 var(--container-pad);
}

.mobile-menu li + li { border-top: 1px solid var(--border); }

.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 13px 0;
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--primary); }

.mobile-menu .mobile-cta {
  margin: 16px var(--container-pad) 0;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  transition: background var(--transition);
}

.mobile-menu .mobile-cta:hover {
  background: var(--primary-hover);
  color: #fff;
}

/* ─── 4. BOTÕES ───────────────────────────────────────────── */
/* Primário (teal) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: #fff;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--shadow-md);
}

/* WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--whatsapp);
  color: var(--text);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

/* Telefone (CTA claro) */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--primary-deep);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-phone:hover {
  border-color: var(--primary);
  background: rgba(26, 171, 161, 0.06);
  color: var(--primary);
}

/* btn-phone sobre fundo escuro (ex: page-hero) */
.page-hero .btn-phone {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.page-hero .btn-phone:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

/* Ghost (borda, fundos claros) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--primary-deep);
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary-bg);
  color: var(--primary);
}

/* Outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--primary);
  padding: 13px 26px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  margin-top: 8px;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* Botão claro (sobre fundo escuro) */
.btn-light,
.btn-autism {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary-light);
  color: var(--primary-deep);
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: 8px;
}

.btn-light:hover,
.btn-autism:hover {
  background: var(--primary-pale);
  color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Grupo de botões */
.btn-group,
.cta-buttons,
.h-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── 5. BADGE / EYEBROW / SECTION LABEL ─────────────────── */
.h-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg-alt);
  color: var(--primary-deep);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.h-eyebrow i,
.eyebrow i { width: 12px; height: 12px; }

/* Badge sobre fundo escuro */
.autism-badge,
.badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--primary-pale);
  margin-bottom: 22px;
}

/* Section label (linha + texto uppercase) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Section header centrado */
.section-header,
.services-header,
.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.services-header { max-width: 600px; margin-bottom: 56px; }
.testimonials-header { max-width: 520px; margin-bottom: 48px; }

.services-header h2,
.testimonials-header h2 {
  font-size: 2.4rem;
  color: var(--primary-deep);
  margin-bottom: 14px;
}

.testimonials-header h2 { font-size: 2.3rem; margin-bottom: 10px; }

.services-header p,
.testimonials-header p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* ─── 6. GRIDS DE SEÇÃO ───────────────────────────────────── */
.autism-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ─── 7. CARDS DE ESPECIALIDADE ───────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px var(--shadow-md);
  transform: translateY(-4px);
  color: inherit;
}

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

.service-icon {
  width: 54px;
  height: 54px;
  background: var(--primary-bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--transition);
}

.service-icon i {
  width: 26px;
  height: 26px;
  color: var(--primary);
  transition: color var(--transition);
}

.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon i { color: #fff; }

.service-card h3 {
  font-size: 1.18rem;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-link {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}

.service-card:hover .service-link { gap: 9px; }

/* ─── 8. FEATURE ITEMS (AUTISMO) ──────────────────────────── */
.autism-features,
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.autism-feature,
.feature-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
}

.autism-feature:hover,
.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.autism-feature-icon,
.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(159, 221, 165, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.autism-feature-icon i,
.feature-icon i { width: 22px; height: 22px; color: var(--primary-light); }

.autism-feature h4,
.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 3px;
  line-height: 1.3;
  color: #fff;
}

.autism-feature p,
.feature-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin: 0;
}

/* ─── 9. FLOAT CARDS ──────────────────────────────────────── */
.about-float-card,
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: 0 12px 40px var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-float-card { bottom: -20px; right: -20px; }

.afc-icon,
.float-card-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.afc-icon i,
.float-card-icon i { width: 22px; height: 22px; color: var(--primary); }

.about-float-card strong,
.float-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.93rem;
  color: var(--primary-deep);
}

.about-float-card span,
.float-card span { font-size: 0.78rem; color: var(--text-muted); }

/* ─── 10. VISUAL CARDS (HERO SLIDES 2 & 3) ───────────────── */
.h-visual-card,
.visual-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 20px 60px var(--shadow), 0 0 0 1px rgba(26, 171, 161, 0.05);
}

.h-vc-badge,
.vc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-bg-alt);
  color: var(--primary-deep);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.h-vc-badge i, .vc-badge i { width: 12px; height: 12px; }

.h-vc-icon,
.vc-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-bg-alt);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.h-vc-icon i, .vc-icon i { width: 32px; height: 32px; color: var(--primary); }

.h-visual-card h3,
.visual-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-deep);
  margin-bottom: 10px;
}

.h-visual-card p,
.visual-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.h-vc-stats,
.vc-stats {
  display: flex;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.h-vc-stat,
.vc-stat { flex: 1; text-align: center; }

.h-vc-stat + .h-vc-stat,
.vc-stat + .vc-stat { border-left: 1px solid var(--border); }

.h-vc-stat strong,
.vc-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.h-vc-stat span,
.vc-stat span { font-size: 0.72rem; color: var(--text-muted); }

/* ─── 11. HERO / SLIDER ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--primary-bg);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 92vh;
}

.h-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.h-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.h-slide-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.h-text { position: relative; z-index: 2; }

.h-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--primary-deep);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.h-title em { font-style: italic; color: var(--primary); }

.h-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

/* Botão hero WhatsApp */
.h-btn-fill {
  background: var(--whatsapp);
  color: var(--text);
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.h-btn-fill:hover {
  background: var(--whatsapp-hover);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* Botão hero Ghost */
.h-btn-ghost {
  background: transparent;
  color: var(--primary-deep);
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.h-btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary-bg);
  color: var(--primary);
}

/* Photo grid (slide 1) */
.h-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.h-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 480px;
  width: 100%;
}

.h-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-bg-alt));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary-mid);
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(26, 171, 161, 0.08);
  transition: transform 0.5s ease;
}

.h-photo:nth-child(2) { transform: translateY(30px); }
.h-photo:nth-child(4) { transform: translateY(30px); }
.h-photo:hover { transform: translateY(-4px); }
.h-photo:nth-child(2):hover { transform: translateY(26px); }
.h-photo:nth-child(4):hover { transform: translateY(26px); }
.h-photo i { width: 32px; height: 32px; opacity: 0.45; }

.h-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Slider dots */
.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.h-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.h-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 10px;
}

/* Animações de entrada dos slides */
.h-slide.active .h-eyebrow { animation: fadeUp 0.6s ease both; }
.h-slide.active .h-title   { animation: fadeUp 0.6s ease 0.1s both; }
.h-slide.active .h-desc    { animation: fadeUp 0.6s ease 0.2s both; }
.h-slide.active .h-btns    { animation: fadeUp 0.6s ease 0.3s both; }
.h-slide.active .h-visual  { animation: fadeUp 0.7s ease 0.2s both; }

/* ─── 12. SEÇÃO AUTISMO ───────────────────────────────────── */
.autism-section {
  background: var(--primary-deep);
  color: #fff;
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.autism-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

.autism-section h2 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.autism-section h2 em {
  font-style: italic;
  color: var(--primary-light);
}

.autism-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ─── 13. SEÇÃO SOBRE ─────────────────────────────────────── */
.about-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.about-img-area { position: relative; }

.about-img-placeholder {
  background: linear-gradient(135deg, var(--primary-bg-alt), var(--primary-bg));
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary-mid);
  box-shadow: 0 24px 60px var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-section h2 {
  font-size: 2.4rem;
  color: var(--primary-deep);
  margin-bottom: 18px;
}

.about-section p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 14px;
}

/* ─── 14. SEÇÃO ESPECIALIDADES ────────────────────────────── */
.services-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

/* ─── 15. SEÇÃO QUOTE ─────────────────────────────────────── */
.quote-section {
  background: var(--primary-bg);
  padding: 72px 0;
  text-align: center;
}

.quote-section blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--primary-deep);
  max-width: 760px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.quote-section blockquote em {
  color: var(--primary);
  font-style: normal;
}

/* ─── 16. SEÇÃO DEPOIMENTOS ───────────────────────────────── */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.trustindex-placeholder {
  background: var(--primary-bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.trustindex-placeholder strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

/* ─── 17. SEÇÃO CTA + MAPA ────────────────────────────────── */
.cta-section {
  background: #e1fff2;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-content { color: var(--text); }

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--primary-deep);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta-address {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-address strong {
  color: var(--text);
  font-family: var(--font-heading);
}

.cta-address-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta-address-item i {
  width: 15px;
  height: 15px;
  opacity: 0.7;
  flex-shrink: 0;
}

/* Mapa */
.cta-map { position: relative; z-index: 1; }

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 171, 161, 0.15);
  display: block;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 380px;
  position: relative;
}

.map-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.32);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  cursor: pointer;
}

.map-pill {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--primary-deep);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  transition: all var(--transition);
}

.map-wrapper:hover .map-pill {
  background: var(--primary);
  color: #fff;
}

/* ─── 18. FOOTER ──────────────────────────────────────────── */
footer,
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  max-width: 260px;
}

footer h4,
.site-footer h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

footer ul, .site-footer ul { list-style: none; }
footer li, .site-footer li { margin-bottom: 9px; }

footer a,
.site-footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s;
}

footer a:hover,
.site-footer a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-address {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ─── 19. WHATSAPP FLOATING BUTTON ────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: all var(--transition);
  animation: fadeIn 0.5s ease 1s both;
}

.whatsapp-float:hover {
  background: #1fba59;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float i { width: 28px; height: 28px; }

/* ─── 21. PAGE HERO (páginas internas) ────────────────────── */
.page-hero {
  background: var(--primary-deep);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-hero--center { text-align: center; }
.page-hero--center .container { max-width: 720px; }

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-pale);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.page-hero-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.page-hero-icon i { width: 36px; height: 36px; color: var(--primary-pale); }

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.page-hero-img {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary));
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}


/* ─── 22. STEPS ───────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px var(--shadow-md);
}

.step-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 5px;
}

.step-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── 23. FAQ ─────────────────────────────────────────────── */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-deep);
  transition: color var(--transition);
}

.faq-q:hover { color: var(--primary); }

.faq-q i {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q i { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 0 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-a { display: block; }

/* ─── 24. DIFERENCIAIS CARDS ──────────────────────────────── */
.diferenciais-section {
  padding: var(--section-padding) 0;
  background: var(--primary-bg);
}

.diferencial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}

.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-md);
}

.diferencial-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.diferencial-icon i { width: 26px; height: 26px; color: var(--primary); }

.diferencial-card h3 {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.diferencial-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── 25. VALUES (Sobre) ──────────────────────────────────── */
.values-list { display: flex; flex-direction: column; gap: 22px; }

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--primary-bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i { width: 22px; height: 22px; color: var(--primary); }

.value-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 5px;
}

.value-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── 26. CONTACT CARDS ───────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px var(--shadow-md);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact-card-icon i { width: 30px; height: 30px; color: #fff; }

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 6px;
  line-height: 1.6;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-bg-alt);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── 27. FORMULÁRIO ──────────────────────────────────────── */
.form-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.form-grid h2 {
  font-size: 1.9rem;
  color: var(--primary-deep);
  margin-bottom: 10px;
}

.form-grid > div > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 171, 161, 0.12);
}

.form-group textarea { height: 130px; resize: vertical; }

.form-select-wrap { position: relative; }

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-muted);
  pointer-events: none;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

/* Map section */
.map-section h2 {
  font-size: 1.9rem;
  color: var(--primary-deep);
  margin-bottom: 22px;
}

.address-detail {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.address-detail strong { color: var(--primary-deep); font-family: var(--font-heading); }

/* ─── 28. HORÁRIO TABLE ───────────────────────────────────── */
.hours-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.hours-table th {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 14px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hours-table td {
  padding: 14px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.hours-table tr:last-child td { border-bottom: none; color: var(--text-muted); }
.hours-table tr:nth-child(even) td { background: var(--primary-bg); }

/* ─── 29. CUIDADO INTEGRADO (Especialidades) ──────────────── */
.integrated-section {
  padding: var(--section-padding) 0;
  background: var(--primary-bg);
  text-align: center;
}

.integrated-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--primary-deep);
  max-width: 640px;
  margin: 0 auto 14px;
}

.integrated-section > .container > p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 44px;
  font-size: 1rem;
}

.integrated-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.integrated-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  border: 1.5px solid var(--border);
  min-width: 130px;
  transition: all var(--transition);
}

.integrated-card.highlight {
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.integrated-card i {
  width: 28px;
  height: 28px;
  color: var(--primary);
  display: block;
  margin: 0 auto 10px;
}

.integrated-card span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-deep);
}

/* ─── 30. DIFERENCIAIS BLOCOS (Sobre) ─────────────────────── */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.diff-block {
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
}

.diff-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow);
}

.diff-block h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 10px;
}

.diff-block p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── 31. CHECKLIST ───────────────────────────────────────── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.checklist li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--primary-bg-alt);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231aaba1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ─── 32. INDICAÇÕES LIST (Especialidades) ─────────────────── */
.indica-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.indica-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-light);
}

.indica-list li i {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── 33. SEÇÃO PARA CRIANÇAS / ADULTOS (Autismo) ─────────── */
.for-section { padding: var(--section-padding) 0; }
.for-section.bg-alt { background: var(--off-white); }

.for-img-area {
  background: linear-gradient(135deg, var(--primary-bg-alt), var(--primary-bg));
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-mid);
  font-size: 5rem;
  overflow: hidden;
}

.for-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.for-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--primary-deep);
  margin-bottom: 16px;
}

.for-section p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.for-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.55;
}

.for-list li i { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ─── 34. CTA SECTION — VARIANTE SIMPLES ─────────────────── */
.cta-section--simple {
  text-align: center;
  padding-bottom: var(--section-padding);
}

.cta-section--simple .cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section--simple .cta-buttons {
  justify-content: center;
}

/* ─── 20. RESPONSIVO ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .h-slide-inner,
  .autism-grid,
  .about-grid,
  .cta-grid { grid-template-columns: 1fr; gap: 44px; }

  .h-visual { order: -1; }
  .h-photo-grid { max-width: 360px; }
  .h-title { font-size: 2.5rem; }

  .autism-section h2 { font-size: 2.2rem; }
  .about-section h2,
  .services-header h2,
  .cta-content h2 { font-size: 2rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-float-card { bottom: 16px; right: 16px; }
  .map-wrapper { height: 320px; }

  /* Page hero */
  .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero { padding: 60px 0; }

  /* Form grid */
  .form-grid { grid-template-columns: 1fr; gap: 44px; }

  /* Diff grid */
  .diff-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Topbar */
  .topbar-right { display: none; }

  /* Nav */
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .btn-nav { display: none; }

  /* Hambúrguer → X */
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Dropdown mobile — sempre expandido */
  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 4px 16px;
    min-width: 0;
    border-left: 2px solid var(--primary-light);
  }
  .nav-dropdown a {
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: transparent;
    border-radius: 0;
  }
  .nav-dropdown a:hover { background: transparent; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-slides { height: auto; min-height: 100vh; }
  .h-slide { position: relative; }
  .h-slide:not(.active) { display: none; }
  .h-slide-inner { padding: 60px 20px 80px; grid-template-columns: 1fr; gap: 36px; }
  .h-title { font-size: 2rem; }
  .h-photo-grid { max-width: 280px; gap: 10px; }
  .hero-nav { bottom: 20px; }

  /* Seções */
  .autism-section { padding: var(--section-padding-sm) 0; }
  .autism-section h2 { font-size: 1.9rem; }
  .cta-content h2 { font-size: 1.8rem; }
  .map-wrapper { height: 260px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header h2,
  .testimonials-header h2 { font-size: 1.8rem; }

  /* Hero fotos — remover offset vertical em mobile */
  .h-photo:nth-child(2),
  .h-photo:nth-child(4) { transform: none; }
  .h-photo:nth-child(2):hover,
  .h-photo:nth-child(4):hover { transform: translateY(-4px); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  /* Page hero */
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 52px 0; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero-img { aspect-ratio: 16/9; }

  /* Grid 2 col for-sections */
  .grid-2 { gap: 36px; }

  /* Integrated cards */
  .integrated-cards { gap: 12px; }
  .integrated-card { min-width: 110px; padding: 18px 16px; }
}

@media (max-width: 480px) {
  .h-slide-inner { padding: 48px 16px 72px; }
  .h-title { font-size: 1.75rem; }
  .h-desc { font-size: 0.95rem; }
  .h-visual-card, .visual-card { padding: 32px 24px; }
  .h-btns,
  .btn-group,
  .cta-buttons { flex-direction: column; }
  .h-btn-fill,
  .h-btn-ghost,
  .btn-whatsapp,
  .btn-phone { width: 100%; justify-content: center; }

  /* Contact cards — botões full width */
  .contact-card .btn-primary,
  .contact-card .btn-outline { width: 100%; justify-content: center; }

  /* Section headers — espaçamento reduzido */
  .section-header,
  .services-header,
  .testimonials-header { margin-bottom: 32px; }
}
