/* ==========================================================================
   Elevar International Christian School — Campanha "Elevar por Inteiro" 2027
   Kit de marca: Laranja Elevar #EA5B1E · Amarelo #F6B60A · Papel #F7F4ED ·
   Grafite #22252A · Cinza #6C7075 · Bricolage Grotesque + Inter
   ========================================================================== */

:root{
  --ink:#22252A;
  --ink-soft:#3B3F45;
  --cream:#F7F4ED;
  --cream-2:#F0E9DC;
  --cream-3:#E8DCC8;
  --paper:#FFFFFF;
  --orange:#EA5B1E;
  --orange-2:#C94A17;
  --orange-light:#FBE0D2;
  --yellow:#F6B60A;
  --yellow-light:#FDECC0;
  --gray:#6C7075;
  --line: rgba(34,37,42,.13);
  --line-2: rgba(247,244,237,.18);
  --shadow-sm: 0 10px 24px -14px rgba(41,24,10,.22);
  --shadow-lg: 0 20px 34px -18px rgba(41,24,10,.22), 0 8px 14px -10px rgba(41,24,10,.14);
  --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1280px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font:inherit; border:none; background:none; cursor:pointer; color:inherit; }
section{ position:relative; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(20px, 5vw, 64px);
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:800;
  margin:0;
  letter-spacing:-.02em;
  color:var(--ink);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--orange-2);
}
.eyebrow::before{
  content:'';
  width:20px; height:2px;
  background:var(--orange-2);
  border-radius:2px;
}

/* Grain overlay ------------------------------------------------------- */
.grain{
  position:fixed; inset:0;
  z-index:999;
  pointer-events:none;
  opacity:.05;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Buttons --------------------------------------------------------------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 30px;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.98rem;
  white-space:nowrap;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), background .3s ease, color .3s ease;
  isolation:isolate;
  overflow:hidden;
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn-primary{
  background:var(--orange);
  color:var(--cream);
  box-shadow:0 16px 32px -12px rgba(249,76,17,.55);
}
.btn-primary::before{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(120deg,var(--orange-2),var(--orange));
  z-index:-1;
  opacity:0;
  transition:opacity .35s ease;
}
.btn-primary:hover{ transform:translateY(-3px) scale(1.02); box-shadow:0 22px 40px -14px rgba(249,76,17,.65); }
.btn-primary:hover::before{ opacity:1; }
.btn-ghost{
  background:transparent;
  color:var(--ink);
  border:1.5px solid var(--line);
}
.btn-ghost:hover{ border-color:var(--ink); transform:translateY(-3px); }
.btn-light{
  background:var(--cream);
  color:var(--ink);
}
.btn-light:hover{ transform:translateY(-3px); box-shadow:0 18px 34px -14px rgba(0,0,0,.35); }
.btn-sm{ padding:12px 22px; font-size:.85rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:fixed; top:0; left:0; right:0;
  z-index:500;
  padding:22px 0;
  transition:padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header::before{
  content:'';
  position:absolute; inset:0;
  background:rgba(255,249,241,0);
  backdrop-filter:blur(0px);
  transition:background .4s var(--ease), backdrop-filter .4s var(--ease);
  z-index:-1;
}
.site-header.is-scrolled{
  padding:12px 0;
  box-shadow:0 8px 30px -18px rgba(23,22,23,.3);
}
.site-header.is-scrolled::before{
  background:rgba(255,249,241,.88);
  backdrop-filter:blur(14px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:38px; width:auto; transition:height .4s var(--ease); }
.is-scrolled .brand img{ height:32px; }

.nav-desktop{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-desktop a{
  font-family:var(--font-display);
  font-weight:600;
  font-size:.9rem;
  color:var(--ink-soft);
  position:relative;
  padding:4px 0;
}
.nav-desktop a::after{
  content:'';
  position:absolute; left:0; right:100%; bottom:0;
  height:2px;
  background:var(--orange);
  transition:right .35s var(--ease);
}
.nav-desktop a:hover::after{ right:0; }

.header-cta{ display:flex; align-items:center; gap:14px; }
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:50%;
  border:1.5px solid var(--line);
  align-items:center; justify-content:center;
  position:relative;
  flex:none;
}
.burger span, .burger span::before, .burger span::after{
  content:'';
  position:absolute;
  width:18px; height:2px;
  background:var(--ink);
  border-radius:2px;
  transition:transform .35s var(--ease), opacity .3s ease, top .3s ease;
}
.burger span{ top:50%; transform:translateY(-50%); }
.burger span::before{ top:-6px; }
.burger span::after{ top:6px; }
.burger.is-open span{ background:transparent; }
.burger.is-open span::before{ top:0; transform:rotate(45deg); }
.burger.is-open span::after{ top:0; transform:rotate(-45deg); }

.mobile-nav{
  position:fixed; inset:0;
  z-index:490;
  background:var(--ink);
  color:var(--cream);
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:100px 32px 40px;
  transform:translateY(-100%);
  transition:transform .55s var(--ease);
}
.mobile-nav.is-open{ transform:translateY(0); }
.mobile-nav a{
  display:block;
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(1.8rem,8vw,2.6rem);
  padding:14px 0;
  border-bottom:1px solid var(--line-2);
  opacity:0;
  transform:translateY(16px);
  transition:opacity .5s ease, transform .5s ease;
}
.mobile-nav.is-open a{ opacity:1; transform:translateY(0); }
.mobile-nav a:nth-child(1){ transition-delay:.08s; }
.mobile-nav a:nth-child(2){ transition-delay:.14s; }
.mobile-nav a:nth-child(3){ transition-delay:.2s; }
.mobile-nav a:nth-child(4){ transition-delay:.26s; }
.mobile-nav a:nth-child(5){ transition-delay:.32s; }
.mobile-nav .btn{ margin-top:24px; }

@media (max-width: 900px){
  .nav-desktop{ display:none; }
  .burger{ display:flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  padding:160px 0 90px;
  overflow:clip;
  background:
    radial-gradient(60% 55% at 82% 8%, var(--cream-3) 0%, rgba(245,223,198,0) 70%),
    var(--cream);
}
.hero-dots{
  position:absolute;
  inset:0;
  background-image:radial-gradient(var(--line) 1.4px, transparent 1.4px);
  background-size:22px 22px;
  -webkit-mask-image:linear-gradient(180deg, rgba(0,0,0,.55), transparent 78%);
  mask-image:linear-gradient(180deg, rgba(0,0,0,.55), transparent 78%);
  pointer-events:none;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 18px 9px 10px;
  border-radius:999px;
  background:var(--paper);
  border:1.5px dashed var(--orange);
  transform:rotate(-3deg);
  font-family:var(--font-display);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--ink);
  box-shadow:var(--shadow-sm);
}
.hero-badge .dot{
  width:9px; height:9px; border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 4px var(--orange-light);
  animation:pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{ box-shadow:0 0 0 4px var(--orange-light); }
  50%{ box-shadow:0 0 0 8px transparent; }
}

.hero-title{
  margin-top:26px;
  font-size:clamp(2.6rem, 5.6vw, 4.7rem);
  line-height:.98;
}
.hero-title .line{ display:block; }
.hero-title .line span{ display:inline-block; }
.has-js .hero-title .line span{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
  will-change:transform;
}
.hero.in-view .hero-title .line:nth-child(1) span{ transition-delay:.05s; opacity:1; transform:translateY(0); }
.hero.in-view .hero-title .line:nth-child(2) span{ transition-delay:.16s; opacity:1; transform:translateY(0); }
.hero.in-view .hero-title .line:nth-child(3) span{ transition-delay:.27s; opacity:1; transform:translateY(0); }
.hero-title em{
  font-style:normal;
  color:var(--orange);
  position:relative;
  white-space:nowrap;
}
.hero-title .underline-path{
  position:absolute;
  left:-2%; right:-2%; bottom:-.08em;
  width:104%;
  height:.3em;
  overflow:visible;
}
.hero-title .underline-path path{
  fill:none;
  stroke:var(--orange);
  stroke-width:9;
  stroke-linecap:round;
  stroke-dasharray:340;
}
.has-js .hero-title .underline-path path{
  stroke-dashoffset:340;
  transition:stroke-dashoffset 1.1s var(--ease) .95s;
}
.hero.in-view .hero-title .underline-path path{ stroke-dashoffset:0; }

.hero-slogan{
  margin:22px 0 0;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(1.15rem,2vw,1.5rem);
  color:var(--ink);
}
.hero-sub{
  margin:14px 0 0;
  max-width:520px;
  font-size:clamp(1rem,1.4vw,1.15rem);
  color:var(--ink-soft);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:36px;
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:40px;
}
.meta-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 16px;
  border-radius:999px;
  background:rgba(23,22,23,.04);
  border:1px solid var(--line);
  font-size:.82rem;
  font-weight:600;
  color:var(--ink-soft);
}
.meta-chip svg{ width:15px; height:15px; color:var(--orange); flex:none; }

.hero-visual{
  position:relative;
  height:clamp(420px,52vw,620px);
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.hero-blob{
  position:absolute;
  width:112%; height:112%;
  top:-6%; left:-6%;
  background:linear-gradient(155deg, var(--orange) 0%, var(--orange-2) 55%, #ffb98f 100%);
  border-radius:62% 38% 55% 45% / 48% 45% 55% 52%;
  animation:blobMorph 14s var(--ease) infinite;
  z-index:1;
  filter:drop-shadow(0 30px 50px rgba(249,76,17,.35));
}
@keyframes blobMorph{
  0%,100%{ border-radius:62% 38% 55% 45% / 48% 45% 55% 52%; }
  33%{ border-radius:45% 55% 40% 60% / 60% 40% 60% 40%; }
  66%{ border-radius:55% 45% 62% 38% / 40% 62% 38% 60%; }
}
.hero-photo{
  position:relative;
  z-index:3;
  max-height:100%;
  width:auto;
  margin:0 auto;
  filter:drop-shadow(0 35px 45px rgba(23,22,23,.28));
  transform:translateZ(0);
}
.hero-chip{
  position:absolute;
  z-index:4;
  display:flex;
  align-items:center;
  gap:8px;
  padding:11px 16px;
  background:var(--paper);
  border-radius:16px;
  box-shadow:var(--shadow-sm);
  font-family:var(--font-display);
  font-weight:700;
  font-size:.82rem;
  animation:floaty 5s ease-in-out infinite;
}
.hero-chip svg{ width:18px; height:18px; color:var(--orange); }
.hero-chip.c1{ top:6%; left:-4%; animation-delay:.2s; }
.hero-chip.c2{ top:38%; right:-8%; animation-delay:1.1s; }
.hero-chip.c3{ bottom:8%; left:-8%; animation-delay:.6s; }
@keyframes floaty{
  0%,100%{ transform:translateY(0) rotate(-1deg); }
  50%{ transform:translateY(-14px) rotate(1deg); }
}
.hero-ring{
  position:absolute;
  width:120px; height:120px;
  border:2px dashed var(--ink);
  opacity:.18;
  border-radius:50%;
  top:-6%;
  right:6%;
  animation:spin 24s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

@media (max-width:900px){
  .hero{ padding:130px 0 60px; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; height:clamp(320px,90vw,420px); margin-bottom:8px; }
  .hero-sub{ max-width:100%; }
  .hero-chip{ font-size:.72rem; padding:9px 12px; }
  .hero-chip.c1{ left:0; }
  .hero-chip.c2{ right:0; }
  .hero-chip.c3{ left:0; }
}

/* ==========================================================================
   Marquee strip
   ========================================================================== */
.marquee-strip{
  background:var(--ink);
  color:var(--cream);
  padding:18px 0;
  overflow:hidden;
  transform:rotate(-1.4deg) scale(1.02);
  margin:-34px 0 34px;
  position:relative;
  z-index:5;
  box-shadow:0 20px 40px -20px rgba(23,22,23,.4);
}
.marquee-track{
  display:flex;
  width:max-content;
  gap:48px;
  animation:marquee 26s linear infinite;
}
.marquee-strip:hover .marquee-track{ animation-play-state:paused; }
.marquee-track span{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  white-space:nowrap;
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--cream);
}
.marquee-track span::after{ content:'✦'; color:var(--orange); font-size:.8em; }
@keyframes marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ==========================================================================
   Section heading helper
   ========================================================================== */
.section-head{
  max-width:640px;
  margin-bottom:56px;
}
.section-head h2{
  margin-top:16px;
  font-size:clamp(2rem,3.6vw,2.9rem);
  line-height:1.05;
}
.section-head p{
  margin-top:18px;
  color:var(--ink-soft);
  font-size:1.05rem;
  max-width:520px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.on-dark h2{ color:var(--cream); }
.section-head.on-dark p{ color:rgba(255,249,241,.68); }
.section-head.on-dark .eyebrow{ color:var(--orange); }

.section-cta{
  display:flex;
  justify-content:center;
  margin-top:56px;
}
.fe .section-cta{ grid-column:1 / -1; margin-top:8px; justify-content:flex-start; }
.brand-statement .section-cta{ margin-top:40px; }
@media (max-width:900px){
  .section-cta{ margin-top:44px; }
}

/* ==========================================================================
   Segments
   ========================================================================== */
.segments{ padding:120px 0 100px; }
.segments-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.seg-card{
  background:var(--paper);
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  position:relative;
  overflow:hidden;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.seg-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-lg); }
.seg-photo{
  position:relative;
  aspect-ratio:3/4;
}
.seg-photo-frame{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.seg-photo-frame img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 22%;
  display:block;
  transition:transform .6s var(--ease);
}
.seg-card:hover .seg-photo-frame img{ transform:scale(1.05); }
.seg-num{
  position:absolute;
  top:18px; right:20px;
  font-family:var(--font-display);
  font-weight:800;
  font-size:.85rem;
  color:rgba(247,244,237,.75);
  -webkit-text-stroke:1px rgba(247,244,237,.75);
}
.seg-icon{
  position:absolute;
  left:24px; bottom:-26px;
  z-index:2;
  width:60px; height:60px;
  border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  background:var(--paper);
  color:var(--orange-2);
  box-shadow:var(--shadow-sm);
  transition:transform .5s var(--ease), background .4s ease, color .4s ease;
}
.seg-icon svg{ width:28px; height:28px; }
.seg-card:hover .seg-icon{ background:var(--orange); color:var(--cream); transform:rotate(-8deg) scale(1.08); }
.seg-card-body{ padding:44px 30px 34px; }
.seg-age{
  display:inline-block;
  padding:5px 12px;
  border-radius:999px;
  background:rgba(23,22,23,.05);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.03em;
  margin-bottom:14px;
}
.seg-card h3{
  font-size:1.4rem;
  margin-bottom:6px;
}
.seg-card .en{
  display:block;
  font-family:var(--font-body);
  font-weight:600;
  font-size:.82rem;
  color:var(--orange-2);
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:10px;
}
.seg-card p{ color:var(--ink-soft); font-size:.96rem; }

@media (max-width:900px){
  .segments-grid{ grid-template-columns:1fr; }
  .segments{ padding:90px 0 70px; }
}

/* ==========================================================================
   Elevar por Inteiro — Intelecto · Caráter · Aliança
   ========================================================================== */
.mente-coracao{
  padding:110px 0 130px;
  background:var(--cream-2);
  position:relative;
}
.mc-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
  margin-bottom:50px;
}
.mc-dots{ display:flex; align-items:center; gap:10px; padding-bottom:6px; }
.mc-dots span{ width:14px; height:14px; border-radius:50%; }
.mc-dots .d1{ background:var(--ink); }
.mc-dots .d2{ background:var(--orange); }
.mc-dots .d3{ background:var(--yellow); }
.mc-quote{
  margin:0 0 60px;
  padding:38px clamp(24px,4vw,52px);
  background:var(--paper);
  border-left:5px solid var(--orange);
  border-radius:0 var(--radius-md) var(--radius-md) 0;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(1.15rem,2.1vw,1.55rem);
  line-height:1.4;
  color:var(--ink);
  box-shadow:var(--shadow-sm);
}
.mc-grid{
  display:grid;
  grid-template-columns:1.15fr 1fr 1fr;
  gap:26px;
  align-items:start;
}
.mc-col{
  border-radius:var(--radius-lg);
  padding:40px clamp(24px,2.4vw,36px) 36px;
  position:relative;
  overflow:hidden;
  height:100%;
}
.mc-col.intelecto{
  background:var(--ink);
  color:var(--cream);
}
.mc-col.carater,
.mc-col.alianca{
  background:var(--paper);
  border:1px solid var(--line);
}
.mc-col-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}
.mc-col-icon{
  width:52px; height:52px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background:var(--orange);
  color:var(--cream);
  flex:none;
}
.mc-col.carater .mc-col-icon{ background:var(--orange-light); color:var(--orange-2); }
.mc-col.alianca .mc-col-icon{ background:var(--yellow-light); color:#8a6100; }
.mc-col-icon svg{ width:26px; height:26px; }
.mc-col h3{ font-size:1.5rem; }
.mc-col.intelecto h3{ color:var(--cream); }
.mc-col.carater h3,
.mc-col.alianca h3{ color:var(--ink); }
.mc-col-desc{
  font-size:.95rem;
  margin:0 0 26px;
  color:var(--gray);
}
.mc-col.intelecto .mc-col-desc{ color:rgba(247,244,237,.7); }
.mc-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 16px;
}
.mc-list.mc-list-1col{ grid-template-columns:1fr; }
.mc-list li{
  border-bottom:1px dashed var(--line);
}
.mc-col.intelecto .mc-list li{ border-bottom-color:var(--line-2); }
.mc-item{
  box-sizing:border-box;
  display:flex;
  align-items:center;
  gap:8px;
  width:100%;
  font-family:var(--font-body);
  font-size:.93rem;
  font-weight:600;
  color:inherit;
  background:none;
  border:none;
  border-radius:8px;
  padding:11px 4px;
  cursor:pointer;
  text-align:left;
  transition:color .25s ease, padding-left .25s ease;
}
.mc-item:hover,
.mc-item:focus-visible{ color:var(--orange); padding-left:8px; }
.mc-col.alianca .mc-item:hover,
.mc-col.alianca .mc-item:focus-visible{ color:#B08600; }
.mc-item:focus-visible{ outline:2px solid var(--orange); outline-offset:-2px; }
.mc-item-arrow{
  margin-left:auto;
  width:14px; height:14px;
  flex:none;
  opacity:0;
  transform:translateX(-4px);
  transition:opacity .25s ease, transform .25s ease;
}
.mc-item:hover .mc-item-arrow,
.mc-item:focus-visible .mc-item-arrow{ opacity:.7; transform:translateX(0); }

@media (max-width:1100px){
  .mc-grid{ grid-template-columns:1fr; }
}
@media (max-width:900px){
  .mc-list{ grid-template-columns:1fr; }
  .mente-coracao{ padding:80px 0 90px; }
}

/* ==========================================================================
   Modal — detalhe do programa (Intelecto / Caráter / Aliança)
   ========================================================================== */
.mc-modal{
  position:fixed;
  inset:0;
  z-index:700;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity .35s var(--ease);
}
.mc-modal.is-open{ opacity:1; pointer-events:auto; }
.mc-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(34,37,42,.6);
  backdrop-filter:blur(4px);
}
.mc-modal-dialog{
  position:relative;
  width:100%;
  max-width:500px;
  max-height:86vh;
  overflow-y:auto;
  background:var(--paper);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  transform:translateY(24px) scale(.97);
  transition:transform .4s var(--ease);
}
.mc-modal.is-open .mc-modal-dialog{ transform:translateY(0) scale(1); }
.mc-modal-close{
  position:absolute;
  top:14px; right:14px;
  z-index:2;
  width:38px; height:38px;
  border-radius:50%;
  background:var(--paper);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:background .25s ease, transform .35s var(--ease);
}
.mc-modal-close:hover{ background:var(--cream-2); transform:rotate(90deg); }
.mc-modal-close svg{ width:17px; height:17px; }
.mc-modal-media{
  height:190px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--ink);
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  position:relative;
  overflow:hidden;
}
.mc-modal-media img{ width:100%; height:100%; object-fit:cover; object-position:center 25%; }
.mc-modal-media svg{ width:56px; height:56px; color:var(--cream); opacity:.92; position:relative; z-index:1; }
.mc-modal-media::before{
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(120% 120% at 18% 0%, rgba(255,255,255,.16), transparent 60%);
}
.mc-modal-dialog[data-category="intelecto"] .mc-modal-media{ background:linear-gradient(135deg,#22252A,#3B3F45); }
.mc-modal-dialog[data-category="carater"] .mc-modal-media{ background:linear-gradient(135deg,var(--orange-2),var(--orange)); }
.mc-modal-dialog[data-category="alianca"] .mc-modal-media{ background:linear-gradient(135deg,#B08600,var(--yellow)); }
.mc-modal-body{ padding:28px clamp(22px,4vw,34px) 32px; }
.mc-modal-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--orange);
}
.mc-modal-dialog[data-category="alianca"] .mc-modal-tag{ color:#B08600; }
.mc-modal-title{ margin:10px 0 14px; font-size:clamp(1.3rem,3vw,1.6rem); }
.mc-modal-desc{ margin:0; color:var(--ink-soft); font-size:1rem; line-height:1.65; }

@media (prefers-reduced-motion: reduce){
  .mc-modal, .mc-modal-dialog, .mc-modal-close{ transition:none !important; }
}

/* ==========================================================================
   STEAM — letras + carrossel
   ========================================================================== */
.steam{
  padding:110px 0 120px;
  background:var(--paper);
}
.steam-letters{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px,1fr));
  gap:20px;
  margin-top:54px;
}
.steam-letters li{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px 24px 26px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), background .3s ease;
}
.steam-letters li:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); background:var(--paper); }
.steam-letters li .steam-letter-tile{
  width:52px; height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--ink);
  color:#FFFFFF;
  font-family:var(--font-display);
  font-weight:800;
  font-size:1.35rem;
  line-height:1;
  margin-bottom:6px;
}
.steam-letters li strong{ font-family:var(--font-display); font-weight:700; font-size:1.08rem; color:var(--ink); }
.steam-letters li span{ color:var(--ink-soft); font-size:.92rem; line-height:1.5; }

@media (max-width:900px){
  .steam{ padding:80px 0 90px; }
}
@media (max-width:640px){
  .steam-letters{ grid-template-columns:1fr 1fr; }
}
@media (max-width:420px){
  .steam-letters{ grid-template-columns:1fr; }
}

/* ==========================================================================
   Fé / Capelania
   ========================================================================== */
.fe{
  background:var(--ink);
  color:var(--cream);
  padding:130px 0;
  position:relative;
  overflow:clip;
}
.fe-glow{
  position:absolute;
  width:640px; height:640px;
  background:radial-gradient(circle, rgba(249,76,17,.35), transparent 70%);
  top:-220px; right:-200px;
  filter:blur(10px);
  pointer-events:none;
}
.fe-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
}
.fe-mark{
  width:74px; height:74px;
  border-radius:22px;
  background:var(--orange);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:30px;
  transform:rotate(-6deg);
}
.fe-mark svg{ width:36px; height:36px; color:var(--cream); }
.fe h2{
  color:var(--cream);
  font-size:clamp(2rem,3.6vw,2.8rem);
  line-height:1.08;
  margin-bottom:22px;
}
.fe p{
  color:rgba(255,249,241,.72);
  font-size:1.06rem;
  max-width:520px;
  margin:0 0 18px;
}
.fe-verse{
  margin-top:30px;
  padding-left:20px;
  border-left:3px solid var(--orange);
  font-family:var(--font-display);
  font-style:normal;
  font-weight:700;
  font-size:1.05rem;
  color:var(--cream);
}
.fe-verse cite{
  display:block;
  margin-top:8px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:.82rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--orange);
  font-style:normal;
}
.fe-chips{
  display:flex; flex-wrap:wrap; gap:12px;
}
.fe-chip{
  padding:12px 18px;
  border-radius:16px;
  background:rgba(255,249,241,.06);
  border:1px solid var(--line-2);
  font-weight:700;
  font-size:.88rem;
  display:flex; align-items:center; gap:10px;
  transition:background .3s ease, transform .3s ease;
}
.fe-chip:hover{ background:rgba(249,76,17,.18); transform:translateY(-4px); }
.fe-chip svg{ width:17px; height:17px; color:var(--orange); }

@media (max-width:900px){
  .fe-inner{ grid-template-columns:1fr; }
  .fe{ padding:90px 0; }
}

/* ==========================================================================
   Depoimentos
   ========================================================================== */
.depoimentos{ padding:120px 0 60px; }
.testi-track{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:6px 4px 26px;
  margin:0 -4px;
  -ms-overflow-style:none;
  scrollbar-width:none;
}
.testi-track::-webkit-scrollbar{ display:none; }
.testi-card{
  scroll-snap-align:start;
  flex:0 0 clamp(270px,32vw,360px);
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px 26px;
  display:flex;
  flex-direction:column;
  gap:18px;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.testi-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.testi-stars{ display:flex; gap:4px; color:var(--yellow); }
.testi-stars svg{ width:16px; height:16px; }
.testi-card p{
  font-size:1rem;
  color:var(--ink-soft);
  flex:1;
}
.testi-person{
  display:flex; align-items:center; gap:12px;
  padding-top:14px;
  border-top:1px dashed var(--line);
}
.testi-avatar{
  width:44px; height:44px;
  border-radius:50%;
  background:var(--orange-light);
  color:var(--orange-2);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  font-weight:800;
  font-size:.9rem;
  flex:none;
}
.testi-name{ font-family:var(--font-display); font-weight:700; font-size:.92rem; }
.testi-role{ font-size:.8rem; color:var(--gray); }
.testi-flag{
  font-size:.66rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--gray);
  opacity:.75;
}
.testi-controls{
  display:flex; justify-content:center; gap:14px; margin-top:8px;
}
.testi-controls button{
  width:46px; height:46px;
  border-radius:50%;
  border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s ease, transform .3s ease, border-color .3s ease;
}
.testi-controls button:hover{ background:var(--orange); border-color:var(--orange); color:var(--cream); transform:scale(1.06); }
.testi-controls svg{ width:18px; height:18px; }

/* ==========================================================================
   Elevar por Inteiro — assinatura de marca
   ========================================================================== */
.brand-statement{
  background:var(--ink);
  color:var(--cream);
  padding:96px 0;
  text-align:center;
  overflow:hidden;
}
.bs-lockup{
  margin:0;
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(2.4rem,6vw,4.6rem);
  line-height:1;
  letter-spacing:-.02em;
  color:var(--cream);
}
.bs-lockup em{ font-style:normal; color:var(--orange); }
.bs-tagline{
  margin:28px 0 0;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(1rem,1.6vw,1.2rem);
  letter-spacing:.02em;
  color:rgba(247,244,237,.85);
}
.bs-tagline span{ color:var(--yellow); margin:0 10px; }
.bs-hashtag{
  display:inline-block;
  margin-top:26px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.82rem;
  letter-spacing:.04em;
  color:rgba(247,244,237,.5);
}

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final{
  margin:60px clamp(16px,4vw,40px) 0;
  border-radius:40px;
  padding:clamp(50px,8vw,90px) clamp(24px,6vw,80px);
  background:linear-gradient(135deg, var(--orange-2) 0%, var(--orange) 55%, var(--yellow) 130%);
  color:var(--cream);
  position:relative;
  overflow:hidden;
  text-align:center;
}
.cta-final::before{
  content:'';
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,.18) 1.6px, transparent 1.6px);
  background-size:26px 26px;
  opacity:.5;
}
.cta-final-inner{ position:relative; z-index:2; max-width:720px; margin:0 auto; }
.cta-final .eyebrow{ color:var(--cream); justify-content:center; }
.cta-final .eyebrow::before{ background:var(--cream); }
.cta-final h2{
  color:var(--cream);
  font-size:clamp(2.1rem,4.6vw,3.4rem);
  line-height:1.05;
  margin:18px 0 20px;
}
.cta-final p{ color:rgba(255,249,241,.9); font-size:1.08rem; max-width:520px; margin:0 auto 34px; }
.cta-final .actions{ display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.cta-final .btn-ghost{ border-color:rgba(255,249,241,.5); color:var(--cream); }
.cta-final .btn-ghost:hover{ border-color:var(--cream); background:rgba(255,249,241,.12); }
.cta-phone{
  margin-top:28px;
  font-family:var(--font-display);
  font-weight:700;
  letter-spacing:.02em;
  font-size:.95rem;
  opacity:.9;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer{
  background:var(--ink);
  color:var(--cream);
  padding:80px 0 30px;
  margin-top:80px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:50px;
  padding-bottom:50px;
  border-bottom:1px solid var(--line-2);
}
.footer-brand img{ height:34px; margin-bottom:18px; }
.footer-brand p{ color:rgba(255,249,241,.65); max-width:320px; font-size:.94rem; }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.footer-social a{
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid var(--line-2);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s ease, transform .3s ease;
}
.footer-social a:hover{ background:var(--orange); border-color:var(--orange); transform:translateY(-3px); }
.footer-social svg{ width:17px; height:17px; }
.footer-col h4{
  font-family:var(--font-display);
  font-weight:700;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--orange);
  margin-bottom:18px;
}
.footer-col li{ margin-bottom:12px; }
.footer-col a, .footer-col span{
  color:rgba(255,249,241,.75);
  font-size:.95rem;
  transition:color .3s ease;
}
.footer-col a:hover{ color:var(--cream); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  padding-top:26px;
  font-size:.82rem;
  color:rgba(255,249,241,.5);
}

@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr; gap:34px; }
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.wa-float{
  position:fixed;
  right:22px; bottom:22px;
  z-index:480;
  width:62px; height:62px;
  border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(37,211,102,.55);
  animation:waPulse 2.6s ease-in-out infinite;
}
.wa-float svg{ width:30px; height:30px; color:#fff; }
@keyframes waPulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.08); }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
/* Reveal animations are progressive enhancement: content is fully visible by
   default (no-JS, JS-error, print, or any renderer that doesn't replicate a
   real scroll) and only hidden-then-revealed once .has-js confirms the
   IntersectionObserver in main.js is in control. */
.has-js [data-reveal]{
  opacity:0;
  transform:translateY(36px);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in-view{ opacity:1; transform:translateY(0); }
.has-js [data-reveal-stagger] > *{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal-stagger].in-view > *{ opacity:1; transform:translateY(0); }
[data-reveal-stagger].in-view > *:nth-child(1){ transition-delay:.05s; }
[data-reveal-stagger].in-view > *:nth-child(2){ transition-delay:.15s; }
[data-reveal-stagger].in-view > *:nth-child(3){ transition-delay:.25s; }
[data-reveal-stagger].in-view > *:nth-child(4){ transition-delay:.35s; }
[data-reveal-stagger].in-view > *:nth-child(5){ transition-delay:.45s; }
[data-reveal-stagger].in-view > *:nth-child(6){ transition-delay:.55s; }

@media (prefers-reduced-motion: reduce){
  .has-js [data-reveal],.has-js [data-reveal-stagger] > *,.has-js .hero-title .line span{ opacity:1 !important; transform:none !important; }
  .has-js .hero-title .underline-path path{ stroke-dashoffset:0 !important; }
  .hero-blob,.hero-chip,.hero-ring,.wa-float,.marquee-track{ animation:none !important; }
}

/* Printing (and headless full-page capture) doesn't replay a real scroll, so
   force every reveal state visible instead of relying on IntersectionObserver. */
@media print{
  .has-js [data-reveal],.has-js [data-reveal-stagger] > *,.has-js .hero-title .line span{ opacity:1 !important; transform:none !important; }
  .has-js .hero-title .underline-path path{ stroke-dashoffset:0 !important; }
  .site-header{ position:static; }
  .wa-float,.mobile-nav,.marquee-strip{ display:none !important; }
}
