/* ============================================================
   Casais Fortes · Ministério Famílias Vitoriosas · ADVEC SP
   Identidade preservada do projeto original + camada moderna
   (movimento, profundidade, micro-interações). Ordem e conteúdo
   das seções mantidos.
   ============================================================ */

:root{
  --ink: #241a0d;
  --ink-2: #362512;
  --ink-3: #47301a;
  --paper: #F2EBDD;
  --paper-2: #EAE1CE;
  --gold: #C8912F;
  --gold-light: #F1AF41;
  --gold-line: #D9B876;
  --wine: #7A3113;
  --text-on-paper: #2B2620;
  --text-muted: #6B6255;
  --ring-radius: 3px;
  --whatsapp-green: #25D366;

  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 28px);
  --section-y: clamp(60px, 9vw, 96px);
  --ease: cubic-bezier(.2, .7, .2, 1);

  /* grão sutil reutilizável nas seções escuras */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--text-on-paper);
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; }

h1, h2, h3, .display{
  font-family: 'Archivo Black', 'Arial Black', sans-serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.04;
  margin: 0;
}

.eyebrow{
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}
.mono{ font-family: 'Space Mono', monospace; }

.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

a:focus-visible, button:focus-visible, summary:focus-visible{
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   MOVIMENTO — revelação no scroll + entrada do hero
   (só ativa com JS; sem JS tudo aparece normal)
   ============================================================ */
.js .section-head,
.js .confessions li,
.js .pillar,
.js .step,
.js .testimonial,
.js .detail-item,
.js .gallery-item,
.js .audience-card,
.js .stat-strip-inner,
.js .rings-divider,
.js .map-embed,
.js .faq-item,
.js .final-cta .wrap > *{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.js .is-visible{ opacity: 1 !important; transform: none !important; }

@keyframes heroIn{
  from{ opacity: 0; transform: translateY(22px); }
  to{ opacity: 1; transform: none; }
}
.js .hero-inner > *{ opacity: 0; animation: heroIn .8s var(--ease) forwards; }
.js .hero-inner > *:nth-child(1){ animation-delay: .05s; }
.js .hero-inner > *:nth-child(2){ animation-delay: .18s; }
.js .hero-inner > *:nth-child(3){ animation-delay: .30s; }
.js .hero-inner > *:nth-child(4){ animation-delay: .42s; }
.js .hero-year-badge{ opacity: 0; animation: heroIn .8s var(--ease) .6s forwards; }

/* ---------- assinatura: divisor de anéis ---------- */
.rings-divider{
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin: 0 auto; width: 100%; max-width: 420px;
}
.rings-divider .line{ flex: 1; height: 1px; background: currentColor; opacity: 0.35; }
.rings-divider svg{ flex-shrink: 0; opacity: 0.9; }
.ring-bullet{ flex-shrink: 0; color: var(--gold-line); transition: transform .4s var(--ease); }

/* ---------- nav (encolhe no scroll) ---------- */
header.nav{
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,235,221,0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,38,32,0.1);
  padding-top: env(safe-area-inset-top);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
header.nav.scrolled{
  background: rgba(242,235,221,0.96);
  box-shadow: 0 6px 24px rgba(33,29,26,0.12);
}
.nav-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--maxw); margin: 0 auto; gap: 16px;
  transition: padding .3s var(--ease);
}
header.nav.scrolled .nav-inner{ padding-top: 9px; padding-bottom: 9px; }
.nav-brand{ display: flex; align-items: center; gap: 14px; min-width: 0; }
.nav-brand img{ height: 34px; width: auto; transition: height .3s var(--ease); }
header.nav.scrolled .nav-brand img{ height: 30px; }
.nav-brand .sep{ width: 1px; height: 26px; background: rgba(43,38,32,0.2); }
.nav-brand .familia-mark{ height: 20px; width: auto; }
.nav-cta{
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  font-family: 'Space Mono', monospace; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  padding: 11px 18px; border-radius: var(--ring-radius);
  text-decoration: none; white-space: nowrap;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover{ background: var(--wine); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(122,49,19,0.35); }
.nav-actions{ display: flex; align-items: center; gap: 14px; }
.nav-social{
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--text-on-paper);
  border: 1px solid rgba(43,38,32,0.2); border-radius: 50%; flex-shrink: 0;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.nav-social svg{ width: 18px; height: 18px; }
.nav-social:hover{ background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-1px); }

/* ---------- hero ---------- */
.hero{
  background:
    var(--grain),
    radial-gradient(ellipse 900px 500px at 50% 100%, rgba(241,175,65,0.35), transparent 70%),
    linear-gradient(180deg, #1c1309 0%, #3a2712 45%, #6b451c 78%, #b6772c 100%);
  background-size: 160px 160px, auto, auto;
  color: var(--paper);
  padding: clamp(58px, 8vw, 84px) 0 clamp(66px, 9vw, 92px);
  position: relative; overflow: hidden;
}
.hero::before,
.hero::after{
  content: ""; position: absolute; border-radius: 50%;
  border: 1px solid rgba(241,175,65,0.22); pointer-events: none;
}
.hero::before{ right: -120px; top: -160px; width: 480px; height: 480px; animation: spin 60s linear infinite; }
.hero::after{ right: -40px; top: -60px; width: 320px; height: 320px; border-color: rgba(241,175,65,0.16); animation: spin 45s linear infinite reverse; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.hero-year-badge{
  position: absolute; top: 26px; right: var(--gutter); z-index: 3;
  text-align: right; font-family: 'Space Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.08em; color: var(--gold-light);
  opacity: 0.85; line-height: 1.3;
}
.hero-year-badge strong{ display: block; font-size: 0.85rem; color: var(--paper); }
.hero-inner{ position: relative; z-index: 2; max-width: 720px; }
.hero .eyebrow{ color: var(--gold-light); margin-bottom: 22px; display: block; max-width: 60%; }
.hero-logo{
  max-width: 470px; width: 100%; height: auto; margin: 0 0 26px -4px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.35));
}
.hero p.lede{
  font-size: clamp(1.1rem, 2.4vw, 1.24rem); font-style: italic;
  color: #E9E2D3; max-width: 560px; margin: 0 0 36px;
}
.hero-actions{ display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.btn-primary{
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--ink);
  font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.02em; text-transform: uppercase;
  padding: 16px 28px; border-radius: var(--ring-radius); text-decoration: none;
  box-shadow: 0 6px 18px rgba(200,145,47,0.28);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary:hover{ background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(241,175,65,0.4); }
.btn-primary svg{ width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s var(--ease); }
.btn-primary:hover svg{ transform: translateX(3px); }
.hero-note{
  font-family: 'Space Mono', monospace; font-size: 0.78rem;
  color: var(--gold-light); letter-spacing: 0.02em;
}

/* ---------- seção genérica ---------- */
section{ padding: var(--section-y) 0; }
.section-head{ max-width: 640px; margin-bottom: clamp(34px, 5vw, 52px); }
.section-head .eyebrow{ color: var(--wine); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 10px; }
.section-head .eyebrow::before{ content: ""; width: 26px; height: 1px; background: var(--wine); opacity: .55; }
.section-head h2{ font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.section-head p{ margin-top: 16px; color: var(--text-muted); font-size: 1.05rem; }
.pillars-section .section-head .eyebrow::before,
.details-section .section-head .eyebrow::before{ background: var(--gold-light); }

/* ---------- stat strip ---------- */
.stat-strip{
  background: var(--ink-3); padding: 30px 0;
  border-top: 1px solid rgba(241,175,65,0.2);
  border-bottom: 1px solid rgba(241,175,65,0.2);
  background-image: var(--grain), none; background-size: 150px 150px;
}
.stat-strip-inner{
  display: flex; align-items: baseline; justify-content: center;
  gap: 16px; flex-wrap: wrap; text-align: center;
}
.stat-number{
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.3rem); color: var(--gold-light);
}
.stat-label{
  font-family: 'Space Mono', monospace; font-size: 0.85rem;
  letter-spacing: 0.03em; text-transform: uppercase; color: #E9E2D3;
}

/* ---------- conversa honesta ---------- */
.confessions{ display: flex; flex-direction: column; gap: 22px; max-width: 680px; margin: 0 0 40px; padding: 0; }
.confessions li{
  list-style: none; border-left: 3px solid var(--wine);
  padding-left: 22px; font-size: clamp(1.06rem, 2.4vw, 1.16rem);
  font-style: italic; color: var(--text-on-paper);
}
.confessions-close{
  max-width: 680px; font-size: clamp(1.06rem, 2.4vw, 1.16rem); font-weight: 500;
  border-top: 1px solid rgba(43,38,32,0.15); padding-top: 28px;
}
.confessions-close strong{ color: var(--wine); font-style: normal; }

/* ---------- pilares (cards com profundidade) ---------- */
.pillars-section{ background: var(--ink-2); color: var(--paper); background-image: var(--grain); background-size: 150px 150px; }
.pillars-section .section-head .eyebrow{ color: var(--gold-light); }
.pillars-section .section-head p{ color: #C9C0AF; }
.pillars-grid{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(242,235,221,0.14);
  border: 1px solid rgba(242,235,221,0.14);
}
.pillar{
  background: var(--ink-2); position: relative;
  padding: clamp(28px, 4vw, 38px) clamp(24px, 4vw, 34px);
  display: flex; flex-direction: column; gap: 14px;
  transition: background .3s var(--ease);
}
.pillar::before{
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .4s var(--ease);
}
.pillar:hover{ background: #3f2c15; }
.pillar:hover::before{ width: 100%; }
.pillar:hover .ring-bullet{ transform: rotate(-8deg) scale(1.08); }
.pillar .ring-bullet{ margin-bottom: 4px; }
.pillar h3{ font-size: 1.28rem; }
.pillar p{ margin: 0; color: #C9C0AF; font-size: 0.98rem; }

/* ---------- como funciona (números + linha guia) ---------- */
.how-it-works{ background: var(--paper-2); }
.steps-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step{ position: relative; padding-left: 4px; }
.step-num{
  font-family: 'Archivo Black', sans-serif; font-size: clamp(2.6rem, 5vw, 3.2rem);
  line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px rgba(122,49,19,0.32); text-stroke: 1.5px rgba(122,49,19,0.32);
  display: block; margin-bottom: 10px; transition: color .35s var(--ease), -webkit-text-stroke-color .35s var(--ease);
}
.step:hover .step-num{ color: rgba(122,49,19,0.14); -webkit-text-stroke-color: var(--wine); }
.step h3{ font-size: 1.16rem; margin-bottom: 10px; }
.step p{ margin: 0; color: var(--text-muted); font-size: 0.98rem; }

/* ---------- para quem ---------- */
.audience{ background: var(--ink); color: var(--paper); background-image: var(--grain); background-size: 150px 150px; }
.audience-grid{ display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.audience-main .eyebrow{ color: var(--gold-light); margin-bottom: 16px; display: block; }
.audience-main h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }
.audience-main p{ color: #E9E2D3; font-size: 1.08rem; max-width: 520px; }
.audience-card{
  background: var(--ink-3); border: 1px solid rgba(182,138,62,0.3);
  border-radius: var(--ring-radius); padding: 32px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.audience-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.35); border-color: rgba(241,175,65,0.55); }
.audience-card .eyebrow{ color: var(--gold-light); margin-bottom: 10px; display: block; }
.audience-card h3{ font-size: 1.24rem; margin-bottom: 12px; }
.audience-card p{ color: #C9C0AF; font-size: 0.95rem; margin: 0 0 20px; }
.link-secondary{
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold-light);
  text-decoration: none; font-family: 'Space Mono', monospace; font-size: 0.82rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(217,184,118,0.5); padding-bottom: 3px;
  transition: border-color .25s var(--ease), gap .25s var(--ease);
}
.link-secondary:hover{ border-color: var(--gold-light); gap: 12px; }

/* ---------- depoimentos (aspas + elevação) ---------- */
.testimonials-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial{
  background: var(--paper-2); border-radius: var(--ring-radius);
  padding: 34px 26px 30px; display: flex; flex-direction: column; gap: 18px;
  position: relative; box-shadow: 0 2px 10px rgba(33,29,26,0.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial::before{
  content: "\201C"; position: absolute; top: 6px; left: 20px;
  font-family: 'Archivo Black', serif; font-size: 3.4rem; line-height: 1;
  color: var(--gold); opacity: 0.35;
}
.testimonial:hover{ transform: translateY(-5px); box-shadow: 0 18px 36px rgba(33,29,26,0.16); }
.testimonial blockquote{ margin: 0; font-style: italic; font-size: 1.06rem; color: var(--text-on-paper); }
.testimonial cite{
  font-style: normal; font-family: 'Space Mono', monospace; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-muted);
}

/* ---------- galeria (zoom no hover) ---------- */
.gallery-section{ background: var(--paper); }
.gallery-track{
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar{ display: none; }
.gallery-item{
  flex: 0 0 auto; width: 260px; scroll-snap-align: start;
  border-radius: var(--ring-radius); overflow: hidden;
  box-shadow: 0 10px 26px rgba(33,29,26,0.16);
  transition: box-shadow .35s var(--ease);
}
.gallery-item:hover{ box-shadow: 0 18px 40px rgba(33,29,26,0.28); }
.gallery-item img{
  width: 100%; height: 340px; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-controls{ display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.gallery-arrows{ display: flex; gap: 10px; }
.gallery-arrow{
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(43,38,32,0.25); background: transparent;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--text-on-paper); padding: 0;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.gallery-arrow:hover{ background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.gallery-arrow svg{ width: 18px; height: 18px; }

/* ---------- detalhes ---------- */
.details-section{ background: var(--ink-2); color: var(--paper); background-image: var(--grain); background-size: 150px 150px; }
.details-section .section-head .eyebrow{ color: var(--gold-light); }
.details-section .section-head p{ color: #C9C0AF; }
.details-grid{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(242,235,221,0.14); border: 1px solid rgba(242,235,221,0.14);
}
.detail-item{ background: var(--ink-2); padding: 30px 26px; transition: background .3s var(--ease); }
.detail-item:hover{ background: #3f2c15; }
.detail-item .eyebrow{ color: var(--gold-light); display: block; margin-bottom: 10px; }
.detail-item p{ margin: 0; font-size: 1.02rem; }
.detail-item .editable{ border-bottom: 1px dashed rgba(217,184,118,0.6); }
.detail-item--wide{ grid-column: span 2; }
.detail-turmas{
  margin: 0; padding: 0; list-style: none; display: flex; gap: 22px; flex-wrap: wrap;
  font-family: 'Space Mono', monospace; font-size: 0.85rem; color: var(--gold-light);
}
.detail-turmas li{ padding: 6px 12px; border: 1px solid rgba(241,175,65,0.3); border-radius: var(--ring-radius); }

/* ---------- mapa ---------- */
.map-embed{
  margin-top: 36px; border-radius: var(--ring-radius); overflow: hidden;
  border: 1px solid rgba(242,235,221,0.15); filter: grayscale(0.15) contrast(1.05);
}
.map-embed iframe{ display: block; width: 100%; }

/* ---------- faq ---------- */
.faq-section{ background: var(--paper); }
.faq-list{ display: flex; flex-direction: column; gap: 0; max-width: 760px; border-top: 1px solid rgba(43,38,32,0.15); }
.faq-item{ border-bottom: 1px solid rgba(43,38,32,0.15); padding: 20px 0; }
.faq-item summary{
  cursor: pointer; font-family: 'Archivo Black', sans-serif; font-size: 1.02rem; font-weight: 400;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: color .25s var(--ease);
}
.faq-item summary:hover{ color: var(--wine); }
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+"; font-family: 'Space Mono', monospace; font-size: 1.4rem;
  color: var(--wine); flex-shrink: 0; transition: transform .3s var(--ease);
}
.faq-item[open] summary::after{ content: "+"; transform: rotate(45deg); }
.faq-item p{ margin: 14px 0 0; color: var(--text-muted); font-size: 1rem; max-width: 620px; }

/* ---------- cta final ---------- */
.final-cta{
  background:
    radial-gradient(ellipse 700px 400px at 50% 0%, rgba(255,255,255,0.18), transparent 70%),
    var(--gold);
  color: var(--ink); text-align: center; padding: clamp(66px, 10vw, 96px) 0;
}
.final-cta h2{ font-size: clamp(1.9rem, 4vw, 2.9rem); max-width: 720px; margin: 0 auto 28px; }
.final-cta .btn-primary{ background: var(--ink); color: var(--paper); box-shadow: 0 8px 22px rgba(33,29,26,0.28); }
.final-cta .btn-primary:hover{ background: var(--wine); color: var(--paper); box-shadow: 0 14px 30px rgba(33,29,26,0.4); }
.final-cta .hero-note{ color: var(--ink); opacity: 0.65; margin-top: 18px; display: block; }
.share-btn{
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  background: transparent; border: 1px solid rgba(33,29,26,0.35); color: var(--ink);
  font-family: 'Space Mono', monospace; font-size: 0.82rem; letter-spacing: 0.02em;
  padding: 12px 20px; border-radius: var(--ring-radius); cursor: pointer; max-width: 100%;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.share-btn svg{ width: 18px; height: 18px; flex-shrink: 0; }
.share-btn:hover{ background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }

/* ---------- footer ---------- */
footer{ background: var(--ink); color: #C9C0AF; padding: 56px 0 calc(34px + env(safe-area-inset-bottom)); background-image: var(--grain); background-size: 150px 150px; }
.footer-top{
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 24px; padding-bottom: 32px; border-bottom: 1px solid rgba(242,235,221,0.15); margin-bottom: 28px;
}
.footer-brand{ display: flex; align-items: center; gap: 16px; }
.footer-brand img{ height: 28px; width: auto; }
.footer-brand .sep{ width: 1px; height: 22px; background: rgba(242,235,221,0.2); }
footer .foot-meta{
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: 'Space Mono', monospace; font-size: 0.76rem; letter-spacing: 0.02em;
}
footer a.wa-foot{ color: var(--gold-light); text-decoration: none; }
footer a.wa-foot:hover{ text-decoration: underline; }
.foot-credit{ margin-top: 22px; font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.02em; color: #8a8072; text-align: center; }
.foot-credit a{ color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(217,184,118,0.4); }
.foot-credit a:hover{ border-color: var(--gold-light); }

/* ---------- whatsapp flutuante ---------- */
.wa-float{
  position: fixed; right: calc(22px + env(safe-area-inset-right)); bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 100; width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28); text-decoration: none;
  animation: wa-pulse 2.6s ease-in-out infinite; transition: transform .25s var(--ease);
}
.wa-float svg{ width: 30px; height: 30px; }
.wa-float:hover{ transform: scale(1.08); }
@keyframes wa-pulse{
  0%, 100% { box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 10px rgba(37,211,102,0); }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px){
  .details-grid{ grid-template-columns: repeat(2, 1fr); }
  .detail-item--wide{ grid-column: span 2; }
}
@media (max-width: 860px){
  .pillars-grid{ grid-template-columns: 1fr; }
  .audience-grid{ grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .steps-grid{ grid-template-columns: 1fr; gap: 28px; }
  .details-grid{ grid-template-columns: 1fr; }
  .detail-item--wide{ grid-column: span 1; }
  .nav-brand .familia-mark{ display: none; }
  .nav-brand .sep{ display: none; }
}
@media (max-width: 560px){
  body{ font-size: 16px; }
  .hero .eyebrow{ max-width: 100%; }
  .hero-logo{ max-width: 100%; }
  .hero-year-badge{ display: none; }
  .nav-cta{ padding: 9px 14px; font-size: 0.7rem; }
  .gallery-item{ width: 72vw; }
  .gallery-item img{ height: 300px; }
  .foot-meta{ text-align: left; }
}
@media (max-width: 360px){
  .nav-inner{ gap: 10px; }
  .btn-primary{ width: 100%; justify-content: center; }
  .hero-actions{ gap: 16px; }
  .detail-turmas{ gap: 12px; }
}
@media (min-width: 1600px){ :root{ --maxw: 1200px; } }

/* movimento reduzido: desliga tudo e mostra o conteúdo */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; animation: none !important; }
  .js .section-head, .js .confessions li, .js .pillar, .js .step,
  .js .testimonial, .js .detail-item, .js .gallery-item, .js .audience-card,
  .js .stat-strip-inner, .js .rings-divider, .js .map-embed, .js .faq-item,
  .js .final-cta .wrap > *, .js .hero-inner > *, .js .hero-year-badge{
    opacity: 1 !important; transform: none !important;
  }
}
