/* ==========================================================================
   ANA PAULA RIZZUTTI — Sistema Visual
   Psicopedagoga | Neuropsicopedagoga
   ========================================================================== */

/* ---- Tokens ---- */
:root {
  /* Paleta de marca — versão vívida (referência: header teal + cards coloridos) */
  --verde-profundo: #0E5C5A;      /* teal petróleo vívido — títulos, header, autoridade */
  --verde-profundo-2: #0A4745;    /* teal petróleo mais escuro — hover, footer */
  --verde-salvia: #22A99B;        /* teal/menta vívido — acentos, ícones, links */
  --verde-salvia-claro: #8FDCCF;  /* teal claro — destaques suaves sobre fundo escuro */
  --off-white: #FAF9F5;
  --areia: #FFF3E4;               /* pêssego bem claro — substitui a areia neutra */
  --areia-escura: #FBE2C4;
  --terracota: #B84F25;           /* coral escuro — contraste AA com texto branco */
  --terracota-suave: #F3A06E;
  --dourado-fosco: #E3A62B;       /* dourado/mostarda vívido — destaques, badges */
  --azul-vivo: #2E7FBE;           /* azul vívido — variação de destaque */
  --lilas-vivo: #7C6FCE;          /* lilás vívido — variação de destaque */
  --rosa-vivo: #E0668C;           /* rosa vívido — variação de destaque */
  --texto-principal: #1E2B29;
  --texto-suave: #4B5C59;
  --branco: #FFFFFF;

  /* Tipografia */
  --font-titulo: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-texto: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 7rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-texto: 720px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Sombra discreta */
  --shadow-soft: 0 8px 30px rgba(30, 54, 43, 0.08);
  --shadow-hover: 0 14px 40px rgba(30, 54, 43, 0.13);

  /* Transição */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-texto);
  color: var(--texto-principal);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
h1, h2, h3, h4 {
  font-family: var(--font-titulo);
  color: var(--verde-profundo);
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 var(--space-sm); color: var(--texto-suave); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.2rem; color: var(--texto-suave); }
li { margin-bottom: 0.4rem; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container-texto {
  max-width: var(--max-width-texto);
  margin: 0 auto;
}

/* Acessibilidade: foco visível */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--terracota);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--verde-profundo);
  color: var(--branco);
  padding: 0.8rem 1.2rem;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Eyebrow / kicker ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-texto);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--terracota);
}

/* ---- Barra de topo (contato rápido) ---- */
.topbar {
  background: var(--verde-profundo);
  color: var(--verde-salvia-claro);
  font-size: 0.8rem;
}
.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.55rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-info { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--verde-salvia-claro); font-weight: 500; }
.topbar-info a:hover { color: var(--branco); }
.topbar-info svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-social { display: flex; align-items: center; gap: 0.6rem; }
.topbar-social a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease);
}
.topbar-social a:hover { background: var(--terracota); }
.topbar-social svg { width: 13px; height: 13px; color: var(--branco); }
@media (max-width: 720px) { .topbar { display: none; } }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 245, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(30, 54, 43, 0.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--space-md);
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  color: var(--verde-profundo);
  font-weight: 600;
  line-height: 1.1;
}
.brand span {
  display: block;
  font-family: var(--font-texto);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--texto-suave);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.nav-desktop {
  display: none;
}
.nav-desktop ul {
  display: flex;
  gap: 1.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-desktop a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--verde-profundo-2);
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] {
  color: var(--terracota);
  border-bottom-color: var(--terracota);
}
.header-actions { display: flex; align-items: center; gap: 0.8rem; }
@media (max-width: 480px) {
  .site-header .header-actions > .btn-whatsapp.btn-sm { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.93rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
}
.btn-primary {
  background: var(--verde-profundo);
  color: var(--branco);
}
.btn-primary:hover { background: var(--verde-profundo-2); box-shadow: var(--shadow-hover); transform: translateY(-1px); }
.btn-whatsapp {
  background: var(--terracota);
  color: var(--branco);
}
.btn-whatsapp:hover { background: #923B1B; box-shadow: var(--shadow-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--verde-profundo);
  border-color: var(--verde-profundo-2);
}
.btn-outline:hover { background: var(--verde-profundo); color: var(--branco); }
.btn-ghost {
  background: transparent;
  color: var(--verde-profundo);
  padding: 0.85rem 0.4rem;
}
.btn-ghost:hover { color: var(--terracota); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* Mobile menu button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(30,54,43,0.15);
  border-radius: 10px;
  align-items: center;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--verde-profundo);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--off-white);
  z-index: 99;
  padding: 6rem 1.5rem 2rem;
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.nav-mobile a {
  display: block;
  font-family: var(--font-titulo);
  font-size: 1.5rem;
  padding: 0.85rem 0;
  color: var(--verde-profundo);
  border-bottom: 1px solid rgba(30,54,43,0.08);
}
.nav-mobile .header-actions { margin-top: 2rem; flex-direction: column; align-items: stretch; }
.nav-mobile .btn { width: 100%; }

@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--texto-suave);
  padding: 1.1rem var(--space-md) 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
.breadcrumbs a { color: var(--verde-profundo-2); }
.breadcrumbs a:hover { color: var(--terracota); }
.breadcrumbs span[aria-hidden] { margin: 0 0.4rem; opacity: 0.5; }

/* ---- Sections ---- */
section { padding: var(--space-xl) 0; }
.section-narrow { padding: var(--space-lg) 0; }
.bg-verde {
  background: var(--verde-profundo);
  color: var(--areia);
}
.bg-verde h2, .bg-verde h3, .bg-verde h4 { color: var(--branco); }
.bg-verde p { color: var(--verde-salvia-claro); }
.bg-verde .eyebrow { color: var(--terracota-suave); }
.bg-areia { background: var(--areia); }
.bg-salvia { background: #DCF3EE; }
.bg-branco { background: var(--branco); }
/* Fundos vívidos de apoio — usar com moderação, para destacar blocos específicos */
.bg-coral { background: #FDE4D3; }
.bg-gold { background: #FBEACB; }
.bg-azul { background: #DCEAF7; }
.bg-lilas { background: #E7E3F9; }
.bg-rosa { background: #FBE1E8; }

.section-head {
  max-width: 680px;
  margin: 0 0 var(--space-lg);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Hero ---- */
.hero {
  padding: var(--space-lg) 0 var(--space-xl);
  background: linear-gradient(180deg, #F3EEE3 0%, var(--off-white) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-xl); }
}
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--verde-profundo-2);
  background: var(--areia);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.hero-eyebrow .icon { width: 16px; height: 16px; }
.hero h1 { margin-bottom: var(--space-sm); }
.hero-lead { font-size: 1.1rem; max-width: 540px; }
.hero-assinatura {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(30,54,43,0.12);
}
.hero-assinatura strong {
  display: block;
  font-family: var(--font-titulo);
  color: var(--verde-profundo);
  font-size: 1.1rem;
}
.hero-assinatura span { font-size: 0.88rem; color: var(--texto-suave); }
.hero-local {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--verde-profundo-2);
  margin-top: 0.7rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: var(--space-md); }

.photo-placeholder {
  position: relative;
  background: linear-gradient(145deg, var(--verde-salvia-claro) 0%, var(--areia) 60%, var(--terracota-suave) 130%);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.35), transparent 45%),
                     radial-gradient(circle at 80% 85%, rgba(30,54,43,0.15), transparent 50%);
}
.photo-placeholder .ph-label {
  position: relative;
  z-index: 1;
  background: rgba(250,247,241,0.92);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  font-size: 0.85rem;
  color: var(--verde-profundo);
  font-weight: 600;
  line-height: 1.5;
  max-width: 240px;
}
.photo-placeholder .ph-icon { font-size: 1.6rem; display:block; margin-bottom: 0.5rem; }
.photo-placeholder.ratio-square { aspect-ratio: 1/1; }
.photo-placeholder.ratio-wide { aspect-ratio: 16/10; }

/* ---- Foto real (retrato) ---- */
.photo-real {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(145deg, var(--verde-salvia-claro) 0%, var(--areia) 60%, var(--terracota-suave) 130%);
}
.photo-real.ratio-square { aspect-ratio: 1/1; }
.photo-real.ratio-wide { aspect-ratio: 16/10; }
.photo-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-pos, center);
  display: block;
}

/* ---- Painel de ilustração original (humaniza sem depender de fotos reais) ---- */
.illus-panel {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.illus-panel.ratio-wide { aspect-ratio: 16/10; }
.illus-panel.ratio-square { aspect-ratio: 1/1; }
.illus-panel svg { width: 68%; max-width: 260px; height: auto; }
.illus-panel.tone-teal { background: linear-gradient(150deg, #CDEFE9 0%, #E9F7F4 100%); }
.illus-panel.tone-coral { background: linear-gradient(150deg, #FBDCC4 0%, #FEF0E4 100%); }
.illus-panel.tone-gold { background: linear-gradient(150deg, #F8E3AE 0%, #FDF4DC 100%); }
.illus-panel.tone-lilas { background: linear-gradient(150deg, #DCD5F7 0%, #F0ECFC 100%); }

/* ---- Cards de identificação ---- */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin: var(--space-lg) 0;
}
.chip {
  background: var(--branco);
  border: 1px solid rgba(30,54,43,0.08);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.3rem;
  font-size: 0.93rem;
  color: var(--verde-profundo-2);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.chip:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.chip .dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracota);
  margin-top: 0.45rem;
}
.closing-note {
  max-width: 640px;
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  color: var(--verde-profundo);
  font-weight: 500;
  line-height: 1.5;
  margin: var(--space-lg) 0 var(--space-md);
}
.closing-note-centered {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---- Cards de área de atuação ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 1000px) {
  .home-area-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .all-areas-grid, .areas-balanced .card-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .all-areas-grid .card, .areas-balanced .card-grid .card { grid-column: span 2; }
  .all-areas-grid .card:nth-child(5), .areas-balanced .card-grid .card:nth-child(5) { grid-column: 2 / span 2; }
  .process-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}
.card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-top: 4px solid var(--verde-salvia);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card .icon {
  width: 46px; height: 46px;
  color: var(--verde-profundo);
  margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; margin-bottom: 0; }
.card a.card-link { display:inline-block; margin-top:0.9rem; font-size:0.85rem; font-weight:600; color: var(--terracota); }

/* Variantes de cor vívida para ciclar entre os cards (áreas de atuação, princípios etc.) */
.card-grid .card:nth-child(8n+1) { border-top-color: var(--verde-salvia); }
.card-grid .card:nth-child(8n+1) .icon { color: var(--verde-profundo); }
.card-grid .card:nth-child(8n+2) { border-top-color: var(--terracota); }
.card-grid .card:nth-child(8n+2) .icon { color: var(--terracota); }
.card-grid .card:nth-child(8n+3) { border-top-color: var(--azul-vivo); }
.card-grid .card:nth-child(8n+3) .icon { color: var(--azul-vivo); }
.card-grid .card:nth-child(8n+4) { border-top-color: var(--dourado-fosco); }
.card-grid .card:nth-child(8n+4) .icon { color: var(--dourado-fosco); }
.card-grid .card:nth-child(8n+5) { border-top-color: var(--lilas-vivo); }
.card-grid .card:nth-child(8n+5) .icon { color: var(--lilas-vivo); }
.card-grid .card:nth-child(8n+6) { border-top-color: var(--rosa-vivo); }
.card-grid .card:nth-child(8n+6) .icon { color: var(--rosa-vivo); }
.card-grid .card:nth-child(8n+7) { border-top-color: var(--verde-profundo); }
.card-grid .card:nth-child(8n+7) .icon { color: var(--verde-profundo); }
.card-grid .card:nth-child(8n+8) { border-top-color: var(--terracota-suave); }
.card-grid .card:nth-child(8n+8) .icon { color: var(--terracota-suave); }

/* ---- Timeline (Como funciona) ---- */
.timeline { position: relative; margin-top: var(--space-lg); }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--verde-salvia), var(--areia-escura));
}
@media (min-width: 780px) {
  .timeline::before { left: 50%; transform: translateX(-1px); }
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.3rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 780px) {
  .timeline-item { grid-template-columns: 1fr 56px 1fr; align-items: start; }
  .timeline-item .timeline-num { order: 2; }
  .timeline-item .timeline-content { order: 1; text-align: right; }
  .timeline-item:nth-child(even) .timeline-content { order: 3; text-align: left; }
  .timeline-item .timeline-spacer { order: 3; }
  .timeline-item:nth-child(even) .timeline-spacer { order: 1; }
}
.timeline-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--verde-profundo);
  color: var(--branco);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-titulo);
  font-size: 1.15rem;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}
.timeline-content { background: var(--branco); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-soft); }
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.93rem; margin: 0; }
/* Cores vívidas cicladas nos círculos numerados */
.timeline-item:nth-child(7n+1) .timeline-num { background: var(--verde-profundo); }
.timeline-item:nth-child(7n+2) .timeline-num { background: var(--terracota); }
.timeline-item:nth-child(7n+3) .timeline-num { background: var(--azul-vivo); }
.timeline-item:nth-child(7n+4) .timeline-num { background: var(--dourado-fosco); }
.timeline-item:nth-child(7n+5) .timeline-num { background: var(--lilas-vivo); }
.timeline-item:nth-child(7n+6) .timeline-num { background: var(--rosa-vivo); }
.timeline-item:nth-child(7n+7) .timeline-num { background: var(--verde-salvia); }

/* ---- Princípios / "O que eu acredito" ---- */
.principle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); gap: 1.3rem; }
.principle-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.principle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.principle-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--branco);
}
.principle-icon svg { width: 24px; height: 24px; }
.principle-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.principle-card p { font-size: 0.88rem; margin: 0; }
.principle-grid .principle-card:nth-child(7n+1) .principle-icon { background: var(--verde-profundo); }
.principle-grid .principle-card:nth-child(7n+2) .principle-icon { background: var(--terracota); }
.principle-grid .principle-card:nth-child(7n+3) .principle-icon { background: var(--azul-vivo); }
.principle-grid .principle-card:nth-child(7n+4) .principle-icon { background: var(--dourado-fosco); }
.principle-grid .principle-card:nth-child(7n+5) .principle-icon { background: var(--lilas-vivo); }
.principle-grid .principle-card:nth-child(7n+6) .principle-icon { background: var(--rosa-vivo); }
.principle-grid .principle-card:nth-child(7n+7) .principle-icon { background: var(--verde-salvia); }

/* ---- Depoimentos / avaliações ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 1.4rem; }
.testimonial-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-stars { color: var(--dourado-fosco); font-size: 0.95rem; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.testimonial-quote { font-style: italic; color: var(--texto-principal); font-size: 0.95rem; margin-bottom: 1rem; }
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--verde-profundo-2); }
.testimonial-placeholder-tag {
  display: inline-block;
  background: #FBEFE3;
  color: #A35B2A;
  border: 1px dashed #D8A87B;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-top: 0.7rem;
}
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--branco);
  border: 1px solid var(--areia-escura);
  border-radius: 100px;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texto-principal);
  box-shadow: var(--shadow-soft);
}
.google-rating-badge .stars { color: var(--dourado-fosco); }

/* ---- Diagrama pessoa-família-escola ---- */
.orbit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin: var(--space-lg) 0;
}
.orbit-center {
  width: 170px; height: 170px;
  border-radius: 50%;
  background: var(--verde-profundo);
  color: var(--branco);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-titulo);
  font-size: 1.15rem;
  padding: 1rem;
  box-shadow: var(--shadow-hover);
}
.orbit-satellites { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr)); gap: 1rem; max-width: 700px; }
.orbit-balanced { max-width: 820px; margin-left: auto; margin-right: auto; }
.orbit-balanced .orbit-satellites { flex: 1 1 220px; grid-template-columns: 1fr; max-width: 230px; }
.orbit-item {
  background: var(--branco);
  border: 1px solid var(--areia-escura);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--verde-profundo-2);
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid rgba(30,54,43,0.12);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--font-titulo);
  font-size: 1.05rem;
  color: var(--verde-profundo);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--terracota);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 0 1.5rem; font-size: 0.96rem; max-width: 700px; }

/* ---- Formulário ---- */
.form-grid { display: grid; gap: 1.2rem; }
@media (min-width: 700px) { .form-row-2 { grid-template-columns: 1fr 1fr; display: grid; gap: 1.2rem; } }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--verde-profundo-2);
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(30,54,43,0.18);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--branco);
  color: var(--texto-principal);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-checkbox { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.87rem; color: var(--texto-suave); }
.field-checkbox input { width: 18px; height: 18px; margin-top: 0.2rem; flex-shrink: 0; }
.field-note { font-size: 0.78rem; color: var(--texto-suave); margin-top: 0.3rem; }
.form-privacy-note { font-size: 0.82rem; background: var(--areia); padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.4rem; }

/* ---- Contato / mapa ---- */
.contact-grid { display: grid; gap: var(--space-lg); }
.contact-grid > * { min-width: 0; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-card {
  background: var(--verde-profundo);
  color: var(--areia);
  border-radius: var(--radius);
  padding: 2.2rem;
}
.contact-info-card h3 { color: var(--branco); }
.contact-info-card a { color: var(--terracota-suave); font-weight: 600; }
.contact-info-card .addr { margin-top: 1rem; font-size: 0.95rem; line-height: 1.7; }
.contact-options { display: grid; gap: 0.85rem; margin: 1.5rem 0; }
.contact-option {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(14,92,90,0.18);
  border-radius: var(--radius-sm);
  background: var(--branco);
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-option strong { color: var(--verde-profundo); font-family: var(--font-titulo); font-size: 1.08rem; }
.contact-option span { color: var(--texto-suave); font-size: .88rem; }
.contact-option:hover { border-color: var(--terracota); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-wrap iframe { width: 100%; max-width: 100%; height: 320px; border: 0; display: block; }

/* ---- Blog / Conteúdos ---- */
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1.7rem; }
.article-card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.article-card .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--verde-salvia-claro), var(--areia));
  display: flex; align-items: center; justify-content: center;
  color: var(--verde-profundo);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}
.article-card .body { padding: 1.4rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.article-card .cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--terracota);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.article-card h3 { font-size: 1.08rem; margin-bottom: 0.6rem; }
.article-card p { font-size: 0.9rem; flex: 1; }
.article-card .read-more { font-size: 0.85rem; font-weight: 600; color: var(--verde-profundo); margin-top: 0.8rem; }

.article-body { max-width: var(--max-width-texto); margin: 0 auto; }
.article-body h2 { margin-top: var(--space-lg); }
.article-body h3 { margin-top: var(--space-md); }
.article-body p, .article-body li { font-size: 1.02rem; }
.article-meta { font-size: 0.85rem; color: var(--texto-suave); margin-bottom: var(--space-md); }
.article-meta .cat-tag {
  display: inline-block;
  background: var(--areia);
  color: var(--verde-profundo-2);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-right: 0.5rem;
}
.article-cta {
  margin-top: var(--space-lg);
  background: var(--bg-areia, var(--areia));
  padding: 1.8rem;
  border-radius: var(--radius);
  text-align: center;
}

/* ---- Timeline formação ---- */
.formacao-list { display: grid; gap: 1rem; margin-top: var(--space-md); }
.formacao-item {
  background: var(--branco);
  border-left: 3px solid var(--dourado-fosco);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-soft);
}
.formacao-item strong { display: block; color: var(--verde-profundo); font-family: var(--font-titulo); font-size: 1.02rem; margin-bottom: 0.2rem; }
.placeholder-tag {
  display: inline-block;
  background: #FBEFE3;
  color: #A35B2A;
  border: 1px dashed #D8A87B;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-top: 0.4rem;
}

/* ---- CTA final ---- */
.cta-final {
  text-align: center;
  padding: var(--space-xl) 0;
}
.cta-final h2 { max-width: 780px; margin-left: auto; margin-right: auto; }
.cta-final .lead { max-width: 560px; margin: 0 auto var(--space-md); }
.cta-final .btn { margin: 0 auto; }
.cta-final .info-local { margin-top: 1rem; font-size: 0.85rem; opacity: 0.85; }

/* ---- Footer ---- */
.site-footer {
  background: var(--verde-profundo);
  color: var(--verde-salvia-claro);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: var(--space-lg);
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand { font-family: var(--font-titulo); color: var(--branco); font-size: 1.3rem; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.88rem; color: var(--verde-salvia-claro); margin-bottom: 1rem; }
.footer-addr { font-size: 0.87rem; line-height: 1.8; color: var(--verde-salvia-claro); }
.footer-addr a { color: var(--verde-salvia-claro); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.footer-addr a:hover { color: var(--terracota-suave); }
.footer-col h4 { color: var(--branco); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-texto); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.92rem; color: var(--verde-salvia-claro); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--terracota-suave); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(183,196,172,0.75);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
}

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.3rem;
  right: 1.3rem;
  width: 58px;
  height: 58px;
  background: var(--terracota);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  z-index: 150;
  color: var(--branco);
  transition: transform 0.25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mb-0 { margin-bottom: 0; }
.grid-2 { display: grid; gap: var(--space-lg); }
.grid-2 > * { min-width: 0; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; } }
.badge-local {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--verde-profundo-2);
  font-weight: 600;
}
.divider { height: 1px; background: rgba(30,54,43,0.1); margin: var(--space-lg) 0; border: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--space-sm); }
.tag {
  border: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--verde-profundo-2);
  background: var(--areia);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}
.tag.active { background: var(--verde-profundo); color: var(--branco); }

.validar-note {
  font-size: 0.75rem;
  color: #A35B2A;
  background: #FBEFE3;
  border: 1px dashed #D8A87B;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  margin-top: 0.5rem;
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
