/* ============================================================
   CLARAMENTE — CSS COMPLETO
   Estrutura baseada em institutoinfinitamente.net.br
   Paleta: Azul Serenidade · Papel de Arroz · Cinza Chumbo
   Foco: Águas Lindas de Goiás
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cores principais */
  --blue:       #007BFF;
  --blue-dark:  #0056D2;
  --blue-xdark: #003FA0;
  --blue-light: #E8F1FF;
  --blue-mid:   #CCE0FF;

  --white:      #FFFFFF;
  --off-white:  #F7F6F2;
  --gray-bg:    #F3F4F6;
  --gray-light: #E5E7EB;
  --gray-mid:   #9CA3AF;
  --gray-dark:  #374151;
  --black:      #111827;

  --green-wa:   #25D366;
  --green-dark: #1ebe5b;

  --therapy-accent: var(--blue);
  --neuro-accent:   var(--blue-dark);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w:      1140px;
  --pad:        clamp(20px, 4vw, 60px);
  --section-py: clamp(70px, 9vw, 120px);
  --r-sm:       8px;
  --r-md:       16px;
  --r-lg:       24px;
  --r-xl:       32px;
  --r-full:     9999px;

  /* Shadows */
  --sh-xs:  0 1px 4px rgba(0,0,0,0.06);
  --sh-sm:  0 2px 12px rgba(0,0,0,0.08);
  --sh-md:  0 6px 28px rgba(0,0,0,0.10);
  --sh-lg:  0 12px 48px rgba(0,0,0,0.13);
  --sh-blu: 0 6px 24px rgba(0,123,255,0.28);
  --sh-grn: 0 4px 20px rgba(37,211,102,0.40);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Scrollbar */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--blue-mid);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .accent { color: var(--blue); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 640px;
  line-height: 1.75;
}

/* Accent underline below section titles */
.section-header.centered .section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--blue);
  border-radius: var(--r-full);
  margin: 14px auto 0;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.09); }

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Alinhamento à esquerda */
  gap: 32px;
  height: 90px; /* Ajustado para um visual mais equilibrado */
}

/* Brand / Seal */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.85; }

.nav-seal {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: var(--white);
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}
.nav-brand:hover .nav-seal {
  border-color: var(--blue-mid);
  box-shadow: var(--sh-blu);
}
.nav-seal-img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

.nav-brand-text { display: flex; flex-direction: column; gap: 1px; }
.nav-brand-name {
  font-size: 1.75rem; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.1;
}
.brand-clara { color: var(--black); }
.brand-mente { color: var(--blue); }
.nav-brand-sub {
  font-size: 0.9rem; font-weight: 600;
  color: var(--black); letter-spacing: 0.01em;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--gray-dark);
  padding: 6px 12px;
  border-radius: var(--r-full);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--blue); background: var(--blue-light); }
.nav-link.active { color: var(--blue); background: var(--blue-light); font-weight: 600; }

/* CTA button */
.btn-nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--green-wa) !important;
  color: var(--white) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  padding: 11px 20px !important;
  border-radius: var(--r-full) !important;
  box-shadow: var(--sh-grn) !important;
  transition: all 0.25s var(--ease) !important;
  white-space: nowrap; flex-shrink: 0;
}
.btn-nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 28px rgba(37,211,102,0.55) !important;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1.5px solid var(--gray-light);
  border-radius: var(--r-sm); cursor: pointer; padding: 9px 10px;
  transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--blue); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  padding: 12px var(--pad) 20px;
  border-top: 1px solid var(--gray-light);
  gap: 2px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
}
.mobile-link {
  display: block; padding: 12px 14px;
  font-size: 0.95rem; font-weight: 500;
  color: var(--gray-dark); border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--blue); background: var(--blue-light); }
.cta-mobile {
  background: var(--green-wa) !important; color: var(--white) !important;
  text-align: center; margin-top: 8px; font-weight: 700 !important;
  box-shadow: var(--sh-grn);
}
.cta-mobile:hover { background: var(--green-dark) !important; color: var(--white) !important; }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(160deg, #EEF4FF 0%, #F7F6F2 50%, #EFF9F3 100%);
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px var(--pad) 60px;
  position: relative; overflow: hidden;
}

/* Decorative circles */
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,123,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,86,210,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--max-w);
  margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px; align-items: center;
  position: relative; z-index: 1;
}

/* Hero text column */
.hero-text { display: flex; flex-direction: column; gap: 28px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-full);
  font-size: 0.8rem; font-weight: 600;
  color: var(--gray-dark);
  padding: 6px 14px;
  box-shadow: var(--sh-xs);
}
.badge-icon { font-size: 1rem; }

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.13;
  color: var(--black); letter-spacing: -0.025em;
}
.hero-accent { color: var(--blue); }

.hero-subtitle {
  font-size: 1.05rem; color: var(--gray-dark);
  line-height: 1.75; max-width: 520px;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.hero-subtitle strong { color: var(--black); }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-wa); color: var(--white);
  font-size: 1rem; font-weight: 700;
  padding: 15px 28px; border-radius: var(--r-full);
  box-shadow: var(--sh-grn);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

.btn-hero-secondary {
  display: inline-flex; align-items: center;
  background: var(--white); color: var(--gray-dark);
  font-size: 0.95rem; font-weight: 600;
  padding: 15px 24px; border-radius: var(--r-full);
  border: 1.5px solid var(--gray-light);
  box-shadow: var(--sh-xs);
  transition: all 0.25s var(--ease);
}
.btn-hero-secondary:hover {
  border-color: var(--blue); color: var(--blue);
  transform: translateY(-2px); box-shadow: var(--sh-sm);
}

/* Stats row */
.hero-stats {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-light);
  box-shadow: var(--sh-sm);
  width: fit-content;
}
.stat-item { display: flex; flex-direction: column; gap: 3px; }
.stat-number {
  font-size: 1.5rem; font-weight: 900;
  color: var(--blue-dark); line-height: 1;
}
.stat-label { font-size: 0.73rem; color: var(--gray-mid); font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background: var(--gray-light); }

/* Hero images column */
.hero-images {
  display: flex; gap: 24px;
  position: relative;
  justify-content: center;
  align-items: flex-start;
}

.hero-photo-card {
  position: relative;
  flex: 1;
  width: 100%;
  min-width: 0;
  max-width: 280px;
}

.hero-photo-card--right { margin-top: 40px; }

.hero-photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}

.therapy-photo { border: 3px solid var(--blue); }
.neuro-photo   { border: 3px solid var(--blue-dark); }

.hero-photo-badge {
  position: absolute; bottom: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--gray-light);
  font-size: 0.78rem; font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  text-align: center;
}
.hero-photo-badge span { font-size: 1.1rem; }
.hero-photo-badge small { font-weight: 400; color: var(--gray-mid); font-size: 0.68rem; }

.therapy-badge-pill { border-top: 3px solid var(--blue); }
.neuro-badge-pill   { border-top: 3px solid var(--blue-dark); }

/* Float card */
.hero-float-card {
  position: absolute;
  top: 80px; left: -30px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 10px;
  animation: floatVertical 3s ease-in-out infinite;
}
.float-icon { font-size: 1.3rem; }
.float-text { display: flex; flex-direction: column; gap: 2px; }
.float-text strong { font-size: 0.82rem; font-weight: 700; color: var(--black); }
.float-text small  { font-size: 0.72rem; color: var(--gray-mid); }

@keyframes floatVertical {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   SEÇÃO "VOCÊ SE RECONHECE?" — DESIGN DARK PREMIUM
============================================================ */
.dor-section {
  padding: var(--section-py) 0;
  background: linear-gradient(165deg, #0a1628 0%, #111d35 40%, #0d1a2e 100%);
  position: relative;
  overflow: hidden;
}
.dor-section::before {
  content: '';
  position: absolute; top: -20%; left: -15%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,123,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.dor-section::after {
  content: '';
  position: absolute; bottom: -25%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-tag--light {
  background: rgba(255,255,255,0.08) !important;
  color: #93C5FD !important;
  border: 1px solid rgba(147,197,253,0.2);
}

.dor-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 16px;
}
.dor-title span {
  background: linear-gradient(135deg, #60A5FA, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dor-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.dor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.dor-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 22px 24px;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.dor-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #60A5FA, #818CF8);
  opacity: 0;
  transition: opacity 0.35s;
}
.dor-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(96,165,250,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(96,165,250,0.1);
}
.dor-card:hover::before {
  opacity: 1;
}

.dor-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(96,165,250,0.15), rgba(129,140,248,0.15));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: #60A5FA;
  transition: all 0.35s;
}
.dor-card:hover .dor-card-icon {
  background: linear-gradient(135deg, #60A5FA, #818CF8);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(96,165,250,0.3);
}

.dor-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93C5FD;
  margin-bottom: 12px;
}

.dor-frase {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 12px;
  position: relative;
  padding-left: 14px;
  border-left: 2px solid rgba(96,165,250,0.4);
}

.dor-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* CTA after grid */
.dor-cta-wrapper {
  text-align: center;
  margin-top: 56px;
}

.dor-cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.dor-cta-text strong {
  color: #fff;
}

.btn-dor-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-wa); color: var(--white);
  font-size: 1.05rem; font-weight: 700;
  padding: 16px 32px; border-radius: var(--r-full);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-dor-cta:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

/* ============================================================
   SOBRE
============================================================ */
.sobre-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.sobre-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
  padding: 48px;
  border-radius: var(--r-xl);
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
  margin-bottom: 40px;
  transition: box-shadow 0.3s;
}
.sobre-card:hover { box-shadow: var(--sh-md); }
.sobre-card:last-child { margin-bottom: 0; }

.sobre-card--reverse {
  grid-template-columns: 1fr 300px;
  background: var(--white);
}
.sobre-card--reverse .sobre-photo-wrapper { order: 2; }
.sobre-card--reverse .sobre-info { order: 1; }

.sobre-photo-wrapper {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  position: relative;
}

.sobre-photo-frame {
  border-radius: var(--r-xl);
  padding: 4px;
  width: 100%;
}
.therapy-frame { background: linear-gradient(135deg, var(--blue), var(--blue-mid)); }
.neuro-frame   { background: linear-gradient(135deg, var(--blue-dark), #B3CAEF); }

.sobre-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  border-radius: calc(var(--r-xl) - 4px);
  display: block;
}

.sobre-crp-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-lg);
  padding: 12px 18px;
  box-shadow: var(--sh-sm);
  width: 100%;
}
.crp-icon { font-size: 1.4rem; }
.sobre-crp-badge strong { display: block; font-size: 0.88rem; color: var(--black); }
.sobre-crp-badge small  { font-size: 0.72rem; color: var(--gray-mid); }

.sobre-info { display: flex; flex-direction: column; gap: 16px; }

.sobre-role {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full);
}
.therapy-role { background: var(--blue-light); color: var(--blue-dark); }
.neuro-role   { background: #EBF0FB; color: var(--blue-xdark); }

.sobre-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--black);
  margin-top: -4px;
}

.sobre-bio {
  font-size: 0.96rem; color: var(--gray-dark); line-height: 1.78;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sobre-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.highlight-item {
  font-size: 0.85rem; font-weight: 600;
  color: var(--gray-dark); padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-sm);
}

.btn-sobre {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  font-size: 0.95rem; font-weight: 700;
  padding: 13px 24px; border-radius: var(--r-full);
  box-shadow: var(--sh-blu);
  transition: all 0.25s var(--ease);
  width: fit-content;
}
.btn-sobre:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,123,255,0.4);
}
.btn-sobre--neuro { background: var(--blue-dark); }
.btn-sobre--neuro:hover { background: var(--blue-xdark); }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner-section {
  padding: var(--section-py) 0;
  background: var(--blue-dark);
  position: relative; overflow: hidden;
}
.cta-banner-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  width: 100%;
}

.cta-banner-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 12px; line-height: 1.25;
}
.cta-banner-text h2 span { color: #93C5FD; }
.cta-banner-text p {
  font-size: 1.05rem; color: rgba(255,255,255,0.9);
  max-width: 900px; line-height: 1.8;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.btn-banner-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-wa); color: var(--white);
  font-size: 1rem; font-weight: 700;
  padding: 16px 28px; border-radius: var(--r-full);
  box-shadow: var(--sh-grn);
  transition: all 0.25s var(--ease);
  white-space: nowrap; flex-shrink: 0;
}
.btn-banner-cta:hover {
  background: var(--green-dark);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

/* ============================================================
   SERVIÇOS
============================================================ */
.servicos-section {
  padding: var(--section-py) 0;
  background: var(--gray-bg);
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.servico-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.servico-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

/* Card header (gradient) */
.servico-header-block {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px 20px;
  color: var(--white);
  min-height: 130px;
}
.therapy-card .servico-header-block { background: linear-gradient(135deg, var(--blue) 0%, #1a8cff 100%); }
.neuro-card .servico-header-block   { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-xdark) 100%); }

.servico-header-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}

.servico-header-block h3 {
  font-size: 1.25rem; font-weight: 800; color: var(--white);
  margin-bottom: 2px;
}
.servico-header-sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 500;
}

.servico-header-desc {
  padding: 24px 32px;
  font-size: 0.9rem; color: rgba(255,255,255,0.88); line-height: 1.65;
  min-height: 130px;
}
.therapy-card .servico-header-desc { background: linear-gradient(135deg, #1a8cff 0%, var(--blue) 100%); }
.neuro-card .servico-header-desc   { background: linear-gradient(135deg, var(--blue-xdark) 0%, var(--blue-dark) 100%); }

/* Tag badge */
.servico-tag-badge {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 16px;
  border-radius: 0 0 var(--r-md) 0;
  background: #FFF3E0; color: #E65100;
  border-bottom: 1px solid #FFE0B2;
}
.servico-tag-badge--green {
  background: #E8F5E9; color: #2E7D32;
  border-bottom-color: #C8E6C9;
}

/* Card body (white) */
.servico-body {
  padding: 28px 32px 20px;
  display: flex; flex-direction: column; gap: 28px;
  flex-grow: 1;
}

.servico-block h4 {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}
.servico-block h4 svg { color: var(--blue); flex-shrink: 0; }

/* Check list */
.check-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  padding-left: 0;
}
.check-list li {
  font-size: 0.85rem; color: var(--gray-dark); line-height: 1.5;
  padding-left: 26px;
  position: relative;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-light);
  border: 2px solid var(--blue);
}
.check-list li::after {
  content: '';
  position: absolute; left: 4px; top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.check-list.green li::before { background: #E8F5E9; border-color: var(--green-wa); }
.check-list.green li::after  { border-color: var(--green-wa); }

/* Numbered steps */
.steps-numbered {
  display: flex; flex-direction: column; gap: 16px;
}
.step-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.step-number {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--blue); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800;
}
.neuro-card .step-number { background: var(--blue-dark); }
.step-item strong {
  display: block; font-size: 0.88rem; font-weight: 700; color: var(--black);
}
.step-item small {
  font-size: 0.78rem; color: var(--gray-mid);
}

/* Modalidades */
.modalidades-row { display: flex; gap: 10px; flex-wrap: wrap; }
.modalidade-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: var(--r-full);
  border: 1.5px solid var(--gray-light);
  color: var(--gray-dark);
  background: var(--white);
  transition: all 0.2s;
}
.modalidade-pill svg { color: var(--blue); }
.online-pill { border-color: var(--blue-mid); color: var(--blue-dark); background: var(--blue-light); }

/* CTA button */
.btn-servico-new {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 0 32px 28px;
  background: var(--blue-dark); color: var(--white);
  font-size: 0.95rem; font-weight: 700;
  padding: 14px 24px; border-radius: var(--r-full);
  box-shadow: var(--sh-blu);
  transition: all 0.25s var(--ease);
  margin-top: auto;
}
.btn-servico-new:hover {
  background: var(--blue-xdark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,86,210,0.5);
}
.btn-servico-new--neuro { background: var(--blue-dark); box-shadow: var(--sh-blu); }
.btn-servico-new--neuro:hover {
  background: var(--blue-xdark);
  box-shadow: 0 8px 28px rgba(0,86,210,0.5);
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
.depoimentos-section {
  padding: var(--section-py) 0;
  background: var(--gray-bg);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dep-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px;
  border: 1px solid var(--gray-light);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.dep-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-mid);
}

.dep-stars {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem;
}
.dep-stars span { font-weight: 700; color: var(--gray-dark); font-size: 0.9rem; }

.dep-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--r-full);
  width: fit-content;
}

.dep-text {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}

.dep-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
}

.dep-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.therapy-avatar { background: var(--blue); }
.neuro-avatar   { background: var(--blue-dark); }

.dep-author strong { display: block; font-size: 0.88rem; color: var(--black); }
.dep-author small  { font-size: 0.75rem; color: var(--gray-mid); }

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}

.faq-item {
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--blue-mid); box-shadow: var(--sh-xs); }
.faq-item.open  { border-color: var(--blue); }

.faq-question {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-size: 0.95rem; font-weight: 600; color: var(--black);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-item.open .faq-question { color: var(--blue); }

.faq-icon {
  font-size: 1.4rem; color: var(--blue);
  font-weight: 300; flex-shrink: 0; line-height: 1;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem; line-height: 1.75;
  color: var(--gray-dark);
  border-top: 1px solid var(--gray-light);
  padding-top: 14px;
}

.faq-cta {
  text-align: center; margin-top: 48px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.faq-cta p { font-size: 1rem; color: var(--gray-dark); font-weight: 500; }

.btn-faq-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: var(--white);
  font-size: 0.95rem; font-weight: 700;
  padding: 13px 24px; border-radius: var(--r-full);
  box-shadow: var(--sh-grn);
  transition: all 0.25s var(--ease);
}
.btn-faq-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final-section {
  padding: var(--section-py) 0;
  background: var(--black);
  position: relative; overflow: hidden;
}
.cta-final-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,123,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final-inner {
  text-align: center;
  position: relative; z-index: 1;
}

.cta-final-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 16px; letter-spacing: -0.02em;
}

.cta-final-sub {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 52px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

.cta-final-cards {
  display: flex; align-items: center;
  justify-content: center; gap: 20px;
  flex-wrap: wrap; margin-bottom: 36px;
}

.cta-final-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  max-width: 280px; width: 100%;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}
.cta-final-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  border-color: rgba(0,123,255,0.35);
}

.cta-card-emoji { display: block; font-size: 2.5rem; margin-bottom: 14px; }

.cta-final-card h4 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--white); margin-bottom: 10px;
}

.cta-final-card p {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  line-height: 1.65; margin-bottom: 24px;
}

.btn-cta-card {
  display: block;
  font-size: 0.9rem; font-weight: 700;
  padding: 12px 20px; border-radius: var(--r-full);
  transition: all 0.25s var(--ease);
}
.therapy-btn {
  background: var(--blue); color: var(--white);
  box-shadow: var(--sh-blu);
}
.therapy-btn:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 28px rgba(0,123,255,0.55);
  transform: translateY(-2px);
}
.neuro-btn {
  background: var(--blue-dark); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,86,210,0.35);
}
.neuro-btn:hover {
  background: var(--blue-xdark);
  transform: translateY(-2px);
}

.cta-final-divider {
  font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.3);
}

.cta-guarantee { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}

.footer-logo {
  height: 65px; width: auto; object-fit: contain;
  margin-bottom: 16px;
  image-rendering: auto;
}

.footer-tagline {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  line-height: 1.65; margin-bottom: 18px;
}

.footer-seals { display: flex; flex-direction: column; gap: 6px; }
.footer-seals span { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.footer-col {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col strong {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.87rem; color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue); }

.footer-whatsapp-link {
  display: inline-flex !important;
  align-items: center; gap: 8px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: var(--green-wa) !important;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.footer-whatsapp-link:hover {
  background: var(--green-wa) !important;
  color: var(--white) !important;
}

.footer-hours, .footer-location {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s var(--ease);
  animation: bounceIn 1s 1s both;
}
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: ringPulse 2s 2s ease-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.65);
}
@keyframes ringPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes bounceIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
}

/* ============================================================
   INSTAGRAM SECTION
============================================================ */
.instagram-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.instagram-title-group {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 20px;
}
.instagram-section .section-title {
  margin-bottom: 0;
}
.instagram-section .section-header.centered .section-title::after {
  display: none;
}
.ig-icon {
  color: #E1306C;
}
.instagram-section .section-title span {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.instagram-card-wrapper {
  max-width: 480px; margin: 40px auto 0;
}
.ig-profile-card {
  display: flex; flex-direction: column; width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--sh-md);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ig-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.ig-card-header {
  display: flex; align-items: center; padding: 16px 20px;
  border-bottom: 1px solid var(--gray-light);
}
.ig-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  padding: 2px; margin-right: 14px; flex-shrink: 0;
}
.ig-avatar img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--white);
  background: var(--white);
}
.ig-user-info {
  display: flex; flex-direction: column; flex-grow: 1;
}
.ig-username {
  font-size: 0.95rem; font-weight: 700; color: var(--black); line-height: 1.2;
}
.ig-fullname {
  font-size: 0.8rem; color: var(--gray-mid);
}
.ig-follow-btn {
  background: var(--blue); color: var(--white);
  font-size: 0.85rem; font-weight: 700;
  padding: 6px 16px; border-radius: 6px;
  transition: background 0.2s;
}
.ig-profile-card:hover .ig-follow-btn { background: var(--blue-dark); }

.ig-card-body {
  position: relative; width: 100%; aspect-ratio: 1/1;
  background: var(--gray-bg);
}
.ig-placeholder-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white);
}
.ig-placeholder-img img {
  width: 60%; height: auto; opacity: 0.5; filter: grayscale(1);
}
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.ig-profile-card:hover .ig-overlay { opacity: 1; }
.ig-overlay span {
  color: var(--white); font-weight: 600; font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
}/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .dor-grid              { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid      { grid-template-columns: 1fr 1fr; }
  .footer-grid           { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand          { grid-column: 1 / -1; }

  .sobre-card,
  .sobre-card--reverse   { grid-template-columns: 1fr; gap: 32px; }
  .sobre-card--reverse .sobre-photo-wrapper { order: 1; }
  .sobre-card--reverse .sobre-info          { order: 2; }
  .sobre-photo-wrapper   { max-width: 280px; margin: 0 auto; }
  .sobre-info            { align-items: center; text-align: center; }
  .sobre-role            { margin: 0 auto; }
  .sobre-highlights      { margin: 0 auto; width: 100%; max-width: 320px; text-align: left; }
  .btn-sobre             { margin: 0 auto; }
  
  /* Alinha fotos do Hero na mesma altura no tablet */
  .hero-photo-card--right { margin-top: 0; }
}

@media (max-width: 768px) {
  .nav-links   { display: none; }
  .btn-nav-cta { display: none !important; }
  .hamburger   { display: flex; }
  .mobile-menu.open { display: flex; }

  .nav-container  { height: 80px; justify-content: space-between; }
  .nav-seal        { width: 62px; height: 62px; }
  .nav-brand-name  { font-size: 1.4rem; }
  .nav-brand-sub   { display: none; }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .hero-container  { grid-template-columns: 1fr; gap: 40px; }
  .hero-images     { display: none; }
  .hero-stats      { width: 100%; justify-content: space-around; }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-headline {
    text-align: center;
  }
  .hero-subtitle {
    text-align: center;
    margin: 0 auto;
  }
  .hero-ctas {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .dor-grid            { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid       { grid-template-columns: 1fr; }
  .depoimentos-grid    { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 28px; }

  .cta-banner          { flex-direction: column; text-align: center; }
  .cta-final-cards     { flex-direction: column; align-items: center; }
  .cta-final-card      { max-width: 100%; }
  .cta-final-divider   { display: none; }

  .sobre-card          { padding: 28px 20px; }
  .sobre-highlights    { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline       { font-size: 1.9rem; }
  .dor-grid            { grid-template-columns: 1fr; }
  .hero-ctas           { flex-direction: column; align-items: center; }
  .nav-brand-name      { font-size: 1.2rem; }
  .section-title       { font-size: 1.65rem; }
  .instagram-title-group { flex-direction: column; gap: 4px; }
}
