/* ===========================================================
   SHALON ASSISTÊNCIA TÉCNICA — Estilos
   Limpo, profissional, confiável. Vermelho da marca + neutros quentes.
   =========================================================== */

:root{
  --red:        #C81E17;
  --red-600:    #B0160F;
  --red-700:    #8E120C;
  --red-050:    #FCEDEB;
  --red-100:    #F8DCD9;

  --ink:        #241A18;   /* texto principal (quente, quase preto) */
  --ink-2:      #61534E;   /* texto secundário */
  --ink-3:      #8C7E78;   /* texto terciário */

  --paper:      #FBF7F4;   /* fundo off-white quente */
  --paper-2:    #F4ECE7;   /* fundo alternado */
  --white:      #FFFFFF;
  --line:       rgba(36,26,24,.10);
  --line-2:     rgba(36,26,24,.06);

  --green:      #1E8A52;   /* "grátis" / positivo */
  --green-050:  #E6F4EC;

  --shadow-sm:  0 1px 2px rgba(36,26,24,.06), 0 2px 8px rgba(36,26,24,.05);
  --shadow-md:  0 8px 24px rgba(36,26,24,.08), 0 2px 6px rgba(36,26,24,.05);
  --shadow-lg:  0 24px 60px rgba(36,26,24,.14), 0 6px 18px rgba(36,26,24,.08);
  --shadow-red: 0 14px 30px rgba(200,30,23,.30);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --maxw: 1280px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:"Plus Jakarta Sans", system-ui, sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }

h1,h2,h3,h4{
  font-family:"Bricolage Grotesque", system-ui, sans-serif;
  font-weight:800;
  line-height:1.04;
  letter-spacing:-.02em;
  color:var(--ink);
}

.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 26px; }
.section{ padding:108px 0; position:relative; }
.section--tight{ padding:72px 0; }

/* ---- helpers ---- */
.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-weight:700; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--red);
}
.eyebrow::before{ content:""; width:22px; height:2px; background:var(--red); border-radius:2px; }
.section-head{ max-width:680px; margin-bottom:54px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(2.1rem,4.6vw,3.4rem); margin:16px 0 0; }
.section-head p{ font-size:1.12rem; color:var(--ink-2); margin-top:18px; }

.text-red{ color:var(--red); }
.text-green{ color:var(--green); }

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 26px; border-radius:999px; font-weight:700; font-size:1rem;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space:nowrap; line-height:1;
}
.btn svg{ width:20px; height:20px; }
.btn--wa{ background:var(--red); color:#fff; box-shadow:var(--shadow-red); }
.btn--wa:hover{ transform:translateY(-3px); box-shadow:0 20px 40px rgba(200,30,23,.4); }
.btn--ghost{ background:var(--white); color:var(--ink); box-shadow:var(--shadow-sm); border:1px solid var(--line); }
.btn--ghost:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.btn--lg{ padding:18px 34px; font-size:1.08rem; }
.btn--light{ background:rgba(255,255,255,.16); color:#fff; border:1px solid rgba(255,255,255,.28); }
.btn--light:hover{ background:rgba(255,255,255,.26); transform:translateY(-3px); }
.btn--white{ background:#fff; color:var(--red); }
.btn--white:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }

/* =========================================================
   ANNOUNCEMENT BAR (marquee)
   ========================================================= */
.topbar{
  background:var(--ink); color:#fff; font-size:.85rem; font-weight:600;
  overflow:hidden; white-space:nowrap; position:relative;
}
.topbar__track{ display:inline-flex; gap:54px; padding:9px 0; animation:marquee 28s linear infinite; }
.topbar__track span{ display:inline-flex; align-items:center; gap:10px; opacity:.92; }
.topbar__track b{ color:#fff; }
.topbar .dot{ width:5px; height:5px; border-radius:50%; background:var(--red); }
@keyframes marquee{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header{
  position:sticky; top:0; z-index:60;
  background:rgba(251,247,244,.82); backdrop-filter:blur(14px);
  border-bottom:1px solid transparent; transition:border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled{ border-color:var(--line); box-shadow:0 6px 24px rgba(36,26,24,.06); }
.nav{ display:flex; align-items:center; justify-content:space-between; height:84px; }
.nav__logo img{ height:62px; width:auto; }
.nav__links{ display:flex; align-items:center; gap:34px; }
.nav__links a{ font-weight:600; font-size:.98rem; color:var(--ink-2); position:relative; transition:color .2s; }
.nav__links a::after{
  content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--red);
  border-radius:2px; transition:width .28s var(--ease);
}
.nav__links a:hover{ color:var(--ink); }
.nav__links a:hover::after{ width:100%; }
.nav__cta{ display:flex; align-items:center; gap:14px; }
.nav__burger{ display:none; width:46px; height:46px; border-radius:12px; border:1px solid var(--line);
  background:#fff; align-items:center; justify-content:center; }
.nav__burger svg{ width:24px; height:24px; color:var(--ink); }

/* mobile menu */
.mobile-menu{
  position:fixed; inset:0 0 0 auto; width:min(82vw,360px); z-index:80;
  background:var(--white); box-shadow:var(--shadow-lg);
  transform:translateX(100%); transition:transform .4s var(--ease);
  padding:26px; display:flex; flex-direction:column;
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu__top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.mobile-menu__top img{ height:48px; }
.mobile-menu a{ font-size:1.25rem; font-weight:700; padding:16px 0; border-bottom:1px solid var(--line-2); color:var(--ink); }
.mobile-menu .btn{ margin-top:22px; }
.mclose{ width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;border:1px solid var(--line); }
.mclose svg{ width:22px;height:22px; }
.scrim{ position:fixed; inset:0; background:rgba(36,26,24,.4); z-index:70; opacity:0; pointer-events:none; transition:opacity .3s; }
.scrim.open{ opacity:1; pointer-events:auto; }

/* =========================================================
   HERO
   ========================================================= */
.hero{ position:relative; padding:72px 0 96px; overflow:hidden; }
.hero__bg{ position:absolute; inset:0; z-index:0; pointer-events:none; }
/* textura de pontos full-bleed para preencher os cantos em telas largas */
.hero__bg::before{ content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(200,30,23,.08) 1.2px, transparent 1.3px); background-size:30px 30px;
  -webkit-mask-image:radial-gradient(120% 100% at 50% 30%, #000, transparent 72%);
          mask-image:radial-gradient(120% 100% at 50% 30%, #000, transparent 72%); opacity:.7; }
.hero__blob{ position:absolute; border-radius:50%; filter:blur(60px); opacity:.6; }
.hero__blob.b1{ width:max(560px,40vw); height:max(560px,40vw); background:radial-gradient(circle,#F8DCD9,transparent 70%); top:-200px; right:-160px; }
.hero__blob.b2{ width:max(460px,32vw); height:max(460px,32vw); background:radial-gradient(circle,#FBE9D8,transparent 70%); bottom:-180px; left:-180px; }
.hero__grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
}
.hero__chip{
  display:inline-flex; align-items:center; gap:10px; padding:9px 16px 9px 11px;
  background:var(--white); border:1px solid var(--line); border-radius:999px;
  font-weight:700; font-size:.86rem; color:var(--ink); box-shadow:var(--shadow-sm);
}
.hero__chip .tag{ background:var(--green-050); color:var(--green); font-size:.72rem; padding:3px 9px; border-radius:999px; letter-spacing:.02em; }
.hero h1{ font-size:clamp(2.7rem,6vw,4.5rem); margin:22px 0 0; }
.hero h1 .script{ color:var(--red); }
.hero__sub{ font-size:1.2rem; color:var(--ink-2); margin-top:22px; max-width:520px; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero__trust{ display:flex; flex-wrap:wrap; gap:26px; margin-top:38px; }
.hero__trust .t{ display:flex; align-items:center; gap:12px; }
.hero__trust .t svg{ width:26px; height:26px; color:var(--red); flex:none; }
.hero__trust .t b{ display:block; font-size:1.02rem; font-family:"Bricolage Grotesque"; }
.hero__trust .t span{ font-size:.84rem; color:var(--ink-3); }

/* hero visual */
.hero__visual{ position:relative; }

/* palco da cena animada */
.hero__stage{
  position:relative; border-radius:var(--r-xl);
  aspect-ratio:4/4.4; overflow:hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #fff7f4, transparent 60%),
    linear-gradient(160deg,#FCEDEB 0%,#F4ECE7 60%,#EFE3DC 100%);
  box-shadow:var(--shadow-lg);
  display:flex; align-items:center; justify-content:center;
}
.hero__stage::before{ /* textura de pontos suave */
  content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(200,30,23,.10) 1.1px, transparent 1.2px);
  background-size:22px 22px; opacity:.5;
  -webkit-mask-image:radial-gradient(110% 90% at 50% 40%, #000 30%, transparent 78%);
          mask-image:radial-gradient(110% 90% at 50% 40%, #000 30%, transparent 78%);
}
.hero__stage-glow{
  position:absolute; width:78%; height:78%; border-radius:50%;
  background:radial-gradient(circle, rgba(200,30,23,.20), transparent 65%);
  filter:blur(20px); animation:stageGlow 5s ease-in-out infinite;
}
@keyframes stageGlow{ 0%,100%{ transform:scale(1); opacity:.7 } 50%{ transform:scale(1.08); opacity:1 } }

/* celular */
.device{
  position:relative; z-index:2; width:60%; max-width:236px; aspect-ratio:9/19;
  background:linear-gradient(155deg,#2A1311,#3A1A16);
  border-radius:34px; padding:11px;
  box-shadow:0 30px 60px rgba(36,26,24,.32), 0 6px 14px rgba(36,26,24,.2), inset 0 0 0 2px rgba(255,255,255,.06);
  animation:deviceFloat 6s ease-in-out infinite;
}
@keyframes deviceFloat{ 0%,100%{ transform:translateY(0) rotate(-2deg) } 50%{ transform:translateY(-14px) rotate(-2deg) } }
.device__notch{
  position:absolute; top:16px; left:50%; transform:translateX(-50%);
  width:34%; height:7px; background:#1a0d0b; border-radius:0 0 10px 10px; z-index:4;
}
.device__screen{
  position:relative; width:100%; height:100%; border-radius:24px; overflow:hidden;
  background:linear-gradient(170deg,#fff,#FDF6F3);
}
/* linha de escaneamento */
.scan{
  position:absolute; left:0; right:0; top:0; height:42%; z-index:3; pointer-events:none;
  background:linear-gradient(to bottom, rgba(200,30,23,0), rgba(200,30,23,.16) 70%, rgba(200,30,23,.42));
  border-bottom:2px solid rgba(200,30,23,.7);
  box-shadow:0 0 22px rgba(200,30,23,.4);
  animation:scanMove 4.6s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes scanMove{
  0%{ transform:translateY(-105%); opacity:0 }
  10%{ opacity:1 }
  46%{ transform:translateY(150%); opacity:1 }
  54%,100%{ transform:translateY(150%); opacity:0 }
}
/* conteúdo do diagnóstico */
.diag{ position:relative; z-index:2; padding:30px 14px 14px; height:100%; display:flex; flex-direction:column; gap:9px; }
.diag__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:4px; }
.diag__logo{ font-family:"Bricolage Grotesque"; font-weight:800; font-size:.66rem; color:var(--ink); letter-spacing:-.01em; }
.diag__logo i{ color:var(--red); font-style:normal; margin:0 2px; }
.diag__live{ display:flex; align-items:center; gap:4px; font-size:.54rem; font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:.06em; }
.diag__live i{ width:6px; height:6px; border-radius:50%; background:var(--red); animation:blink 1.2s infinite; }
@keyframes blink{ 0%,100%{ opacity:1 } 50%{ opacity:.25 } }

.diag__row{
  display:flex; align-items:center; gap:8px; padding:7px 9px; border-radius:11px;
  background:var(--paper); border:1px solid var(--line-2);
  opacity:0; transform:translateY(6px);
  animation:rowIn .5s var(--ease) forwards;
}
.diag__row[data-i="1"]{ animation-delay:.9s; }
.diag__row[data-i="2"]{ animation-delay:1.5s; }
.diag__row[data-i="3"]{ animation-delay:2.1s; }
.diag__row[data-i="4"]{ animation-delay:2.7s; }
@keyframes rowIn{ to{ opacity:1; transform:none } }
.diag__ic{ width:18px; height:18px; border-radius:50%; background:var(--green); color:#fff; display:flex; align-items:center; justify-content:center; flex:none; }
.diag__ic svg{ width:12px; height:12px; }
.diag__txt{ flex:1; font-size:.64rem; font-weight:600; color:var(--ink); }
.diag__val{ font-size:.6rem; font-weight:800; color:var(--green); }
.diag__done{
  margin-top:auto; text-align:center; padding:12px 8px 6px;
  display:flex; flex-direction:column; align-items:center; gap:1px;
  opacity:0; transform:scale(.9); animation:doneIn .5s var(--ease) 3.2s forwards;
}
@keyframes doneIn{ to{ opacity:1; transform:none } }
.diag__check{ width:34px; height:34px; border-radius:50%; background:var(--green); color:#fff; display:flex; align-items:center; justify-content:center; margin-bottom:4px; box-shadow:0 6px 14px rgba(30,138,82,.4); animation:pop .5s var(--ease) 3.2s backwards; }
.diag__check svg{ width:19px; height:19px; }
@keyframes pop{ 0%{ transform:scale(0) } 60%{ transform:scale(1.18) } 100%{ transform:scale(1) } }
.diag__done b{ font-family:"Bricolage Grotesque"; font-size:.82rem; color:var(--ink); }
.diag__done span{ font-size:.58rem; color:var(--ink-3); }

/* faíscas */
.spark{ position:absolute; z-index:3; border-radius:50%; background:var(--red); opacity:0; }
.spark.s1{ width:9px; height:9px; top:18%; right:-4px; animation:spark 4.6s ease-in-out 3.2s infinite; }
.spark.s2{ width:6px; height:6px; top:42%; left:-6px; background:#FFB020; animation:spark 4.6s ease-in-out 3.5s infinite; }
.spark.s3{ width:7px; height:7px; bottom:24%; right:6px; background:var(--green); animation:spark 4.6s ease-in-out 3.7s infinite; }
@keyframes spark{ 0%{ opacity:0; transform:scale(0) } 12%{ opacity:1; transform:scale(1.3) } 30%{ opacity:0; transform:scale(.6) } 100%{ opacity:0 } }

/* floating badge cards */
.fcard{
  position:absolute; z-index:6; background:#fff; border-radius:16px; padding:14px 16px;
  box-shadow:var(--shadow-md); display:flex; align-items:center; gap:12px;
  border:1px solid var(--line-2);
}
.fcard svg{ width:22px; height:22px; }
.fcard .ic{ width:40px; height:40px; border-radius:11px; display:flex; align-items:center; justify-content:center; flex:none; }
.fcard b{ font-family:"Bricolage Grotesque"; font-size:.96rem; display:block; line-height:1.1; }
.fcard span{ font-size:.76rem; color:var(--ink-3); }
.fcard.f1{ top:18px; left:-40px; animation:float1 6s ease-in-out infinite; }
.fcard.f2{ bottom:120px; right:-38px; animation:float2 7s ease-in-out infinite; }
.fcard.f3{ bottom:-18px; left:8px; animation:float1 8s ease-in-out infinite .6s; }
@keyframes float1{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes float2{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }

/* =========================================================
   LOGO STRIP / SERVICES MARQUEE
   ========================================================= */
.stripe{ background:var(--ink); color:#fff; padding:22px 0; overflow:hidden; }
.stripe__track{ display:flex; gap:46px; white-space:nowrap; animation:marquee 24s linear infinite; }
.stripe__track .it{ display:inline-flex; align-items:center; gap:13px; font-family:"Bricolage Grotesque"; font-size:1.18rem; font-weight:700; opacity:.95; }
.stripe__track .it svg{ width:24px; height:24px; color:var(--red); }
.stripe__track .star{ color:var(--red); }

/* =========================================================
   SERVICES
   ========================================================= */
#servicos{ position:relative; overflow:hidden;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(248,220,217,.55), transparent 60%),
    radial-gradient(55% 45% at 0% 100%, rgba(251,233,216,.5), transparent 60%),
    var(--paper);
}
/* formas decorativas nos cantos para preencher os vazios */
#servicos::before,#servicos::after{ content:""; position:absolute; border-radius:50%; pointer-events:none; z-index:0; }
#servicos::before{ width:320px; height:320px; top:-120px; left:-120px; border:46px solid rgba(200,30,23,.05); }
#servicos::after{ width:240px; height:240px; bottom:-90px; right:-70px; background:radial-gradient(circle,rgba(200,30,23,.07),transparent 70%); }
#servicos .wrap{ position:relative; z-index:1; }
.services-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.scard{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:30px 26px;
  box-shadow:var(--shadow-sm); transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  position:relative; overflow:hidden;
}
/* brilho que segue o topo no hover */
.scard::before{ content:""; position:absolute; top:-40%; left:-30%; width:80%; height:80%;
  background:radial-gradient(circle, rgba(200,30,23,.10), transparent 70%); opacity:0; transition:opacity .4s var(--ease); pointer-events:none; }
.scard::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:4px; background:linear-gradient(90deg,var(--red),#FF8A82); transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease); }
.scard:hover{ transform:translateY(-10px); box-shadow:var(--shadow-lg); border-color:transparent; }
.scard:hover::after{ transform:scaleX(1); }
.scard:hover::before{ opacity:1; }
.scard__ic{ width:60px; height:60px; border-radius:16px;
  background:linear-gradient(145deg,#FCEDEB,#F8DCD9); color:var(--red);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  transition:transform .4s var(--ease), background .3s, color .3s; box-shadow:inset 0 0 0 1px rgba(200,30,23,.08); }
.scard:hover .scard__ic{ background:linear-gradient(145deg,var(--red),var(--red-700)); color:#fff; transform:translateY(-4px) rotate(-8deg) scale(1.06); box-shadow:var(--shadow-red); }
.scard__ic svg{ width:30px; height:30px; }
.scard h3{ font-size:1.32rem; margin-bottom:12px; }
.scard ul{ list-style:none; display:grid; gap:2px; }
.scard li{ font-size:.92rem; color:var(--ink-2); padding:6px 0 6px 26px; position:relative; transition:color .25s, transform .25s var(--ease); }
.scard li::before{ content:""; position:absolute; left:4px; top:50%; transform:translateY(-50%) rotate(-45deg);
  width:8px; height:5px; border-left:2px solid var(--red); border-bottom:2px solid var(--red); opacity:.6; transition:opacity .25s; }
.scard:hover li{ color:var(--ink); }
.scard:hover li::before{ opacity:1; }

/* =========================================================
   DELIVERY
   ========================================================= */
.delivery{ background:linear-gradient(165deg,#2A1311,#3A1A16); color:#fff; border-radius:0; position:relative; overflow:hidden; }
.delivery .eyebrow{ color:#FF8A82; }
.delivery .eyebrow::before{ background:#FF8A82; }
.delivery h2{ color:#fff; }
.delivery .section-head p{ color:rgba(255,255,255,.78); }
.delivery__glow{ position:absolute; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(200,30,23,.5),transparent 70%); filter:blur(40px); top:-200px; right:-150px; opacity:.6; }
.delivery__steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; position:relative; z-index:1; margin-top:10px; }
.dstep{
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:var(--r-md);
  padding:30px 26px; backdrop-filter:blur(6px); position:relative;
}
.dstep__n{ font-family:"Bricolage Grotesque"; font-size:.9rem; font-weight:800; color:#FF8A82; letter-spacing:.1em; }
.dstep__ic{ width:62px; height:62px; border-radius:16px; background:rgba(255,138,130,.14); color:#FF8A82;
  display:flex; align-items:center; justify-content:center; margin:18px 0 18px; }
.dstep__ic svg{ width:32px; height:32px; }
.dstep h3{ color:#fff; font-size:1.34rem; margin-bottom:8px; }
.dstep p{ color:rgba(255,255,255,.72); font-size:.96rem; }
.dstep .arrow{ position:absolute; right:-26px; top:50%; transform:translateY(-50%); color:rgba(255,138,130,.55); z-index:2; }
.dstep .arrow svg{ width:30px; height:30px; }
.delivery__note{ margin-top:34px; display:flex; align-items:center; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }
.delivery__note .tagp{ display:inline-flex; align-items:center; gap:9px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); padding:10px 18px; border-radius:999px; font-weight:600; font-size:.92rem; }
.delivery__note .tagp svg{ width:18px; height:18px; color:#FF8A82; }

/* =========================================================
   SAM'S CLUB DISCOUNT BANNER
   ========================================================= */
.sams{ position:relative; }
.sams__card{
  background:linear-gradient(135deg,var(--red),var(--red-700));
  border-radius:var(--r-xl); padding:54px 56px; color:#fff; position:relative; overflow:hidden;
  box-shadow:var(--shadow-lg);
  display:grid; grid-template-columns:1.4fr .9fr; gap:40px; align-items:center;
}
.sams__card::before{ content:""; position:absolute; width:340px; height:340px; border-radius:50%; border:34px solid rgba(255,255,255,.07); top:-120px; right:-60px; }
.sams__card::after{ content:""; position:absolute; width:200px; height:200px; border-radius:50%; background:rgba(255,255,255,.06); bottom:-80px; left:30%; }
.sams__l{ position:relative; z-index:1; }
.sams__badge{ display:inline-flex; align-items:center; gap:9px; background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.28);
  padding:8px 16px; border-radius:999px; font-weight:700; font-size:.82rem; letter-spacing:.04em; text-transform:uppercase; }
.sams__l h2{ color:#fff; font-size:clamp(2rem,4.4vw,3.1rem); margin:20px 0 14px; }
.sams__l p{ color:rgba(255,255,255,.9); font-size:1.1rem; max-width:520px; }
.sams__perks{ display:flex; gap:24px; margin-top:24px; flex-wrap:wrap; }
.sams__perks .p{ display:flex; align-items:center; gap:11px; font-weight:600; }
.sams__perks .p svg{ width:22px; height:22px; flex:none; }
.sams__r{ position:relative; z-index:1; text-align:center; }
.sams__off{
  background:#fff; color:var(--red); border-radius:var(--r-lg); padding:34px 20px; box-shadow:var(--shadow-lg);
  transform:rotate(-3deg); transition:transform .4s var(--ease);
}
.sams__off:hover{ transform:rotate(0) scale(1.03); }
.sams__off .big{ font-family:"Bricolage Grotesque"; font-weight:800; font-size:4.6rem; line-height:.9; }
.sams__off .lbl{ font-weight:800; font-size:1.05rem; letter-spacing:.04em; }
.sams__off .sub{ color:var(--ink-2); font-size:.84rem; margin-top:8px; font-family:"Plus Jakarta Sans"; font-weight:600; }

/* =========================================================
   STEPS (Como funciona)
   ========================================================= */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; counter-reset:s; }
.step{ position:relative; padding-top:18px; }
.step__n{ font-family:"Bricolage Grotesque"; font-weight:800; font-size:3.2rem; color:var(--red-050); line-height:1; -webkit-text-stroke:2px var(--red-100); }
.step__ic{ width:54px;height:54px;border-radius:14px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  display:flex;align-items:center;justify-content:center;margin:-26px 0 18px; position:relative; color:var(--red); }
.step__ic svg{ width:28px;height:28px; }
.step h3{ font-size:1.2rem; margin-bottom:8px; }
.step p{ font-size:.95rem; color:var(--ink-2); }

/* =========================================================
   STATS (diferenciais)
   ========================================================= */
.stats{ background:var(--paper-2); }
.stats__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat{ text-align:center; padding:14px; }
.stat__num{ font-family:"Bricolage Grotesque"; font-weight:800; font-size:clamp(2.8rem,5vw,4rem); color:var(--red); line-height:1; }
.stat__num .plus{ font-size:.6em; vertical-align:.12em; }
.stat__lbl{ font-weight:700; margin-top:8px; font-size:1.05rem; }
.stat__desc{ color:var(--ink-2); font-size:.9rem; margin-top:4px; }

/* =========================================================
   UNITS
   ========================================================= */
.units-grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.unit{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  display:flex; flex-direction:column;
}
.unit:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.unit__map{ height:180px; position:relative; overflow:hidden;
  background:linear-gradient(160deg,#F3EAE3,#E7DBD2);
}
/* malha de ruas estilizada */
.unit__map .ph{
  position:absolute; inset:-20%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.85) 0 3px, transparent 3px 52px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.85) 0 3px, transparent 3px 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0 2px, transparent 2px 26px),
    radial-gradient(circle at 78% 20%, rgba(30,138,82,.18), transparent 40%),
    radial-gradient(circle at 18% 82%, rgba(200,30,23,.12), transparent 44%),
    linear-gradient(160deg,#EAF0EA,#E2D9D0);
  transform:perspective(520px) rotateX(26deg) scale(1.25); transform-origin:center 55%;
  animation:mapDrift 16s linear infinite;
}
@keyframes mapDrift{ from{ background-position:0 0,0 0,0 0,78% 20%,18% 82%,0 0; } to{ background-position:0 -120px,-104px 0,-52px 0,78% 20%,18% 82%,0 0; } }
/* avenida em destaque (rota) */
.unit__map::before{
  content:""; position:absolute; left:-12%; right:-12%; top:56%; height:11px;
  background:linear-gradient(90deg,#fff,#FFF3EE); transform:rotate(-7deg);
  box-shadow:0 1px 4px rgba(36,26,24,.16); z-index:2;
}
/* ponto de delivery percorrendo a avenida */
.unit__map::after{
  content:""; position:absolute; top:56%; left:0; width:13px; height:13px; border-radius:50%;
  background:var(--red); box-shadow:0 0 0 4px rgba(200,30,23,.22), 0 2px 6px rgba(200,30,23,.5);
  transform:translateY(-50%) rotate(-7deg); z-index:3;
  animation:deliverRun 5.5s linear infinite;
}
@keyframes deliverRun{ 0%{ left:-6%; opacity:0 } 8%{ opacity:1 } 92%{ opacity:1 } 100%{ left:104%; opacity:0 } }

.unit__pin{ position:absolute; top:46%; left:50%; transform:translate(-50%,-72%); color:var(--red); z-index:4; }
.unit__pin svg{ width:46px; height:46px; filter:drop-shadow(0 8px 12px rgba(200,30,23,.4)); animation:pinBob 3s ease-in-out infinite; }
@keyframes pinBob{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-8px) } }
/* radar pulsante sob o pino */
.unit__pin::after{
  content:""; position:absolute; left:50%; bottom:2px; width:20px; height:20px; border-radius:50%;
  transform:translateX(-50%); background:rgba(200,30,23,.4);
  animation:radar 2.2s ease-out infinite;
}
@keyframes radar{ 0%{ transform:translateX(-50%) scale(.4); opacity:.7 } 100%{ transform:translateX(-50%) scale(3.4); opacity:0 } }

.unit__tag{ position:absolute; top:14px; left:14px; background:#fff; border-radius:999px; padding:6px 14px; font-weight:700; font-size:.8rem; box-shadow:var(--shadow-md); display:flex; align-items:center; gap:7px; z-index:5; }
.unit__tag .dot{ width:8px; height:8px; border-radius:50%; background:var(--green); box-shadow:0 0 0 0 rgba(30,138,82,.6); animation:liveDot 1.8s infinite; }
@keyframes liveDot{ 0%{ box-shadow:0 0 0 0 rgba(30,138,82,.55) } 70%{ box-shadow:0 0 0 7px rgba(30,138,82,0) } 100%{ box-shadow:0 0 0 0 rgba(30,138,82,0) } }
.unit__loc{ position:absolute; bottom:12px; left:14px; z-index:5; display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.92); backdrop-filter:blur(4px); border-radius:999px; padding:5px 12px 5px 10px;
  font-weight:700; font-size:.76rem; color:var(--ink); box-shadow:var(--shadow-sm); }
.unit__loc svg{ width:14px; height:14px; color:var(--red); }
.unit:hover .unit__pin svg{ animation-duration:1.6s; }
@media (prefers-reduced-motion: reduce){
  .unit__map .ph, .unit__map::after, .unit__pin svg, .unit__pin::after, .unit__tag .dot{ animation:none !important; }
  .unit__map::after{ left:48%; opacity:1; }
}
.unit__body{ padding:26px 26px 28px; flex:1; display:flex; flex-direction:column; }
.unit__body h3{ font-size:1.5rem; margin-bottom:6px; }
.unit__row{ display:flex; gap:12px; padding:11px 0; border-bottom:1px solid var(--line-2); align-items:flex-start; }
.unit__row:last-of-type{ border-bottom:none; }
.unit__row svg{ width:20px; height:20px; color:var(--red); flex:none; margin-top:3px; }
.unit__row .k{ font-size:.78rem; color:var(--ink-3); text-transform:uppercase; letter-spacing:.06em; font-weight:700; }
.unit__row .v{ font-size:.98rem; color:var(--ink); font-weight:500; }
.unit__row .v small{ display:block; color:var(--ink-2); font-weight:500; font-size:.9rem; }
.unit__actions{ display:flex; gap:12px; margin-top:22px; }
.unit__actions .btn{ flex:1; padding:13px 18px; font-size:.94rem; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.finalcta{ text-align:center; }
.finalcta__card{
  background:
    radial-gradient(140% 120% at 50% -10%, rgba(200,30,23,.55), transparent 55%),
    radial-gradient(120% 120% at 85% 120%, rgba(255,138,130,.22), transparent 50%),
    linear-gradient(160deg,#2A1311,#3A1A16);
  color:#fff; border-radius:var(--r-xl);
  padding:64px 40px 68px; position:relative; overflow:hidden; box-shadow:var(--shadow-lg);
}
/* textura de pontos */
.finalcta__card::before{
  content:""; position:absolute; inset:0; z-index:0; opacity:.5;
  background-image:radial-gradient(rgba(255,255,255,.10) 1.2px, transparent 1.3px);
  background-size:26px 26px;
  -webkit-mask-image:radial-gradient(120% 90% at 50% 30%, #000 35%, transparent 75%);
          mask-image:radial-gradient(120% 90% at 50% 30%, #000 35%, transparent 75%);
}
/* anéis concêntricos decorativos */
.finalcta__rings{ position:absolute; top:-160px; left:50%; transform:translateX(-50%); z-index:0; pointer-events:none; }
.finalcta__rings span{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  border-radius:50%; border:1px solid rgba(255,255,255,.10);
}
.finalcta__rings span:nth-child(1){ width:280px; height:280px; }
.finalcta__rings span:nth-child(2){ width:460px; height:460px; border-color:rgba(255,255,255,.07); }
.finalcta__rings span:nth-child(3){ width:660px; height:660px; border-color:rgba(255,255,255,.05); }
.finalcta__glow{ display:none; }
.finalcta__card > *{ position:relative; z-index:2; }

/* ícones flutuantes */
.finalcta__float{ position:absolute; z-index:1; width:64px; height:64px; border-radius:18px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; color:#FF8A82; box-shadow:0 14px 34px rgba(0,0,0,.28); }
.finalcta__float svg{ width:30px; height:30px; }
.finalcta__float.ff1{ top:40px; left:7%; animation:float1 6s ease-in-out infinite; }
.finalcta__float.ff2{ top:64px; right:9%; animation:float2 7s ease-in-out infinite .4s; }
.finalcta__float.ff3{ bottom:54px; left:11%; animation:float2 8s ease-in-out infinite .8s; }
.finalcta__float.ff4{ bottom:40px; right:8%; animation:float1 7s ease-in-out infinite .6s; }
@media (max-width:760px){ .finalcta__float{ display:none; } }

.finalcta__eyebrow{
  display:inline-flex; align-items:center; gap:9px; margin-bottom:18px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
  padding:8px 16px; border-radius:999px; font-weight:700; font-size:.82rem; letter-spacing:.04em;
}
.finalcta__eyebrow .pulse{ width:8px; height:8px; border-radius:50%; background:#34e07b; box-shadow:0 0 0 0 rgba(52,224,123,.7); animation:dotPulse 1.8s infinite; }
@keyframes dotPulse{ 0%{box-shadow:0 0 0 0 rgba(52,224,123,.7)} 70%{box-shadow:0 0 0 9px rgba(52,224,123,0)} 100%{box-shadow:0 0 0 0 rgba(52,224,123,0)} }
.finalcta h2{ color:#fff; font-size:clamp(2.1rem,4.8vw,3.5rem); max-width:760px; margin:0 auto; }
.finalcta p{ color:rgba(255,255,255,.82); font-size:1.16rem; margin:18px auto 30px; max-width:540px; }

/* selos de confiança */
.finalcta__badges{ display:flex; flex-wrap:wrap; gap:10px 12px; justify-content:center; margin-top:30px; }
.finalcta__badges .b{ display:inline-flex; align-items:center; gap:9px; padding:9px 16px; border-radius:999px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16); font-weight:600; font-size:.9rem; color:rgba(255,255,255,.92); }
.finalcta__badges .b svg{ width:18px; height:18px; color:#34e07b; flex:none; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer{ background:var(--ink); color:rgba(255,255,255,.74); padding:64px 0 30px; }
.footer__top{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.1fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer__logo{ height:64px; width:auto; margin-bottom:18px; }
.footer__brand p{ font-size:.95rem; max-width:280px; }
.footer h4{ color:#fff; font-size:1rem; margin-bottom:18px; font-family:"Plus Jakarta Sans"; font-weight:700; letter-spacing:.02em; }
.footer__col a, .footer__col p{ display:block; font-size:.94rem; padding:6px 0; color:rgba(255,255,255,.7); transition:color .2s; }
.footer__col a:hover{ color:#fff; }
.footer__social{ display:flex; gap:12px; margin-top:18px; }
.footer__social a{ width:44px; height:44px; border-radius:12px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition:background .2s, transform .2s; }
.footer__social a:hover{ background:var(--red); transform:translateY(-3px); }
.footer__social svg{ width:22px; height:22px; color:#fff; }
.footer__bottom{ display:flex; justify-content:space-between; align-items:center; gap:14px; padding-top:24px; font-size:.84rem; flex-wrap:wrap; }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.wa-float{ position:fixed; right:24px; bottom:24px; z-index:90; display:flex; align-items:center; gap:0; }
.wa-float__btn{
  width:64px; height:64px; border-radius:50%; background:#25D366; box-shadow:0 12px 30px rgba(37,211,102,.45);
  display:flex; align-items:center; justify-content:center; position:relative; transition:transform .25s var(--ease);
}
.wa-float__btn svg{ width:34px; height:34px; color:#fff; }
.wa-float__btn::before{ content:""; position:absolute; inset:0; border-radius:50%; background:#25D366; animation:waPulse 2.4s ease-out infinite; z-index:-1; }
@keyframes waPulse{ 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.9);opacity:0} }
.wa-float__btn:hover{ transform:scale(1.08); }
.wa-float__bubble{
  position:absolute; right:78px; bottom:8px; background:#fff; color:var(--ink); padding:12px 18px; border-radius:16px 16px 4px 16px;
  box-shadow:var(--shadow-md); font-weight:600; font-size:.92rem; white-space:nowrap; opacity:0; transform:translateX(10px) scale(.9);
  transform-origin:bottom right; transition:opacity .3s, transform .3s; pointer-events:none;
}
.wa-float__bubble b{ color:var(--red); }
.wa-float:hover .wa-float__bubble{ opacity:1; transform:translateX(0) scale(1); }
.wa-float__bubble small{ display:block; color:var(--ink-3); font-weight:500; font-size:.78rem; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal{ transition:opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal{ opacity:0; transform:translateY(34px); }
.js .reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; }
.reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; }
.reveal.d4{ transition-delay:.32s; }
@media (prefers-reduced-motion: reduce){
  .js .reveal{ opacity:1; transform:none; }
  .scan{ display:none; }
  .device{ animation:none; transform:rotate(-2deg); }
  .hero__stage-glow{ animation:none; }
  .diag__row, .diag__done, .diag__check{ opacity:1 !important; transform:none !important; animation:none !important; }
  .spark{ display:none; }
  *{ animation:none !important; }
  html{ scroll-behavior:auto; }
}

/* =========================================================
   PARA EMPRESAS (B2B)
   ========================================================= */
.biz{ position:relative; overflow:hidden; }
.biz__bg{ position:absolute; width:560px; height:560px; border-radius:50%; background:radial-gradient(circle,#FBE9D8,transparent 70%); filter:blur(50px); top:-220px; left:-160px; opacity:.55; z-index:0; }
.biz .wrap{ position:relative; z-index:1; }
.biz__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.bcard{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:32px 28px;
  box-shadow:var(--shadow-sm); position:relative; overflow:hidden;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.bcard::before{
  content:""; position:absolute; inset:0 0 auto 0; height:5px;
  background:linear-gradient(90deg,var(--red),#FF8A82); transform:scaleX(0); transform-origin:left;
  transition:transform .4s var(--ease);
}
.bcard:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.bcard:hover::before{ transform:scaleX(1); }
.bcard__ic{
  width:60px; height:60px; border-radius:16px; background:var(--red-050); color:var(--red);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  transition:transform .4s var(--ease);
}
.bcard:hover .bcard__ic{ transform:rotate(-8deg) scale(1.06); }
.bcard__ic svg{ width:30px; height:30px; }
.bcard h3{ font-size:1.34rem; margin-bottom:10px; }
.bcard p{ color:var(--ink-2); font-size:.97rem; }
.bcard__tag{ display:inline-block; margin-top:16px; background:var(--green-050); color:var(--green); font-weight:700; font-size:.78rem; padding:6px 13px; border-radius:999px; }
.biz__cta{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:46px; }

/* =========================================================
   SEJA PARCEIRO
   ========================================================= */
.partner{ background:linear-gradient(165deg,#2A1311,#3A1A16); color:#fff; position:relative; overflow:hidden; }
.partner__glow{ position:absolute; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(200,30,23,.45),transparent 70%); filter:blur(50px); bottom:-220px; left:-140px; opacity:.6; }
.partner .wrap{ position:relative; z-index:1; }
.partner__grid{ display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:center; }
.partner .eyebrow{ color:#FF8A82; }
.partner .eyebrow::before{ background:#FF8A82; }
.partner h2{ color:#fff; font-size:clamp(2rem,4.4vw,3.2rem); margin:16px 0 18px; }
.partner__lead{ color:rgba(255,255,255,.8); font-size:1.12rem; margin-bottom:28px; }
.partner__list{ list-style:none; display:grid; gap:14px; }
.partner__list li{ display:flex; align-items:flex-start; gap:14px; font-size:1rem; color:rgba(255,255,255,.92); }
.partner__list li svg{ width:24px; height:24px; color:#FF8A82; flex:none; margin-top:1px; }
.partner__list li b{ color:#fff; }
.partner__cta{ margin-top:32px; display:flex; gap:14px; flex-wrap:wrap; }
.partner__panel{
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); border-radius:var(--r-lg);
  padding:38px; backdrop-filter:blur(6px); position:relative;
}
.partner__panel h3{ color:#fff; font-size:1.4rem; margin-bottom:6px; }
.partner__panel .pp-sub{ color:rgba(255,255,255,.65); font-size:.95rem; margin-bottom:26px; }
.pp-row{ display:flex; align-items:center; gap:16px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.pp-row:last-child{ border-bottom:none; }
.pp-row__n{ font-family:"Bricolage Grotesque"; font-weight:800; font-size:1.9rem; color:#FF8A82; line-height:1; min-width:64px; }
.pp-row__t b{ display:block; color:#fff; font-size:1.02rem; }
.pp-row__t span{ color:rgba(255,255,255,.62); font-size:.88rem; }

/* partner marquee */
.pmarquee{ background:var(--paper-2); padding:18px 0; overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.pmarquee__track{ display:flex; gap:40px; white-space:nowrap; animation:marquee 26s linear infinite; }
.pmarquee__track .it{ display:inline-flex; align-items:center; gap:11px; font-weight:700; color:var(--ink-2); font-size:1.02rem; }
.pmarquee__track .it svg{ width:20px; height:20px; color:var(--red); }
.pmarquee__track .sep{ color:var(--red); opacity:.5; }

/* =========================================================
   CARREIRA (teaser)
   ========================================================= */
.career__card{
  background:linear-gradient(135deg,var(--red),var(--red-700)); color:#fff;
  border-radius:var(--r-xl); padding:54px 56px; position:relative; overflow:hidden; box-shadow:var(--shadow-lg);
  display:grid; grid-template-columns:1.3fr .9fr; gap:40px; align-items:center;
}
.career__card::before{ content:""; position:absolute; width:300px; height:300px; border-radius:50%; border:32px solid rgba(255,255,255,.07); bottom:-130px; right:-40px; }
.career__l{ position:relative; z-index:1; }
.career__l .eyebrow{ color:#fff; }
.career__l .eyebrow::before{ background:#fff; }
.career__l h2{ color:#fff; font-size:clamp(2rem,4.2vw,3rem); margin:16px 0 14px; }
.career__l p{ color:rgba(255,255,255,.92); font-size:1.1rem; max-width:540px; }
.career__chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.career__chips .chip{ background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.28); padding:9px 16px; border-radius:999px; font-weight:600; font-size:.92rem; }
.career__r{ position:relative; z-index:1; text-align:center; }
.career__r .btn{ width:100%; }
.career__r .sub{ display:block; margin-top:14px; color:rgba(255,255,255,.78); font-size:.86rem; }

/* =========================================================
   SUBPAGE HERO (Empresas / Carreira pages)
   ========================================================= */
.subhero{ position:relative; overflow:hidden; padding:64px 0 56px; }
.subhero__bg{ position:absolute; inset:0; z-index:0; }
.subhero__bg .b{ position:absolute; border-radius:50%; filter:blur(60px); opacity:.5; }
.subhero__bg .b1{ width:480px; height:480px; background:radial-gradient(circle,#F8DCD9,transparent 70%); top:-180px; right:-100px; }
.subhero__bg .b2{ width:380px; height:380px; background:radial-gradient(circle,#FBE9D8,transparent 70%); bottom:-160px; left:-120px; }
.subhero .wrap{ position:relative; z-index:1; }
.crumb{ display:flex; align-items:center; gap:8px; font-size:.9rem; color:var(--ink-3); font-weight:600; margin-bottom:18px; }
.crumb a{ color:var(--red); }
.crumb svg{ width:15px; height:15px; }
.subhero h1{ font-size:clamp(2.4rem,5.2vw,3.8rem); max-width:760px; }
.subhero h1 .script{ color:var(--red); }
.subhero__sub{ font-size:1.18rem; color:var(--ink-2); margin-top:20px; max-width:620px; }
.subhero__actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:30px; }

/* job listings */
.jobs{ display:grid; gap:18px; }
.job{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:28px 30px;
  box-shadow:var(--shadow-sm); display:grid; grid-template-columns:auto 1fr auto; gap:24px; align-items:center;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.job:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:transparent; }
.job__ic{ width:58px; height:58px; border-radius:15px; background:var(--red-050); color:var(--red); display:flex; align-items:center; justify-content:center; flex:none; }
.job__ic svg{ width:30px; height:30px; }
.job__main h3{ font-size:1.32rem; margin-bottom:5px; }
.job__main p{ color:var(--ink-2); font-size:.96rem; }
.job__meta{ display:flex; gap:8px; margin-top:12px; flex-wrap:wrap; }
.job__meta .m{ background:var(--paper-2); border:1px solid var(--line); border-radius:999px; padding:5px 12px; font-size:.8rem; font-weight:600; color:var(--ink-2); }
.job__apply{ flex:none; }
@media (max-width:760px){ .job{ grid-template-columns:auto 1fr; } .job__apply{ grid-column:1/-1; } .job__apply .btn{ width:100%; } }

/* values / perks */
.values{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.value{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:30px 26px; box-shadow:var(--shadow-sm); transition:transform .3s var(--ease); }
.value:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.value__ic{ width:54px; height:54px; border-radius:14px; background:var(--red-050); color:var(--red); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.value__ic svg{ width:28px; height:28px; }
.value h3{ font-size:1.2rem; margin-bottom:8px; }
.value p{ color:var(--ink-2); font-size:.95rem; }

.perks{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px 30px; max-width:780px; }
.perk{ display:flex; align-items:flex-start; gap:14px; font-size:1.02rem; }
.perk svg{ width:24px; height:24px; color:var(--green); flex:none; margin-top:2px; }
.perk b{ display:block; }
.perk span{ color:var(--ink-2); font-size:.9rem; }

@media (max-width:680px){ .values{ grid-template-columns:1fr; } .perks{ grid-template-columns:1fr; } }

/* =========================================================
   PÁGINA SEJA PARCEIRO
   ========================================================= */
/* hero da parceria (escuro) */
.phero{ background:linear-gradient(165deg,#2A1311,#3A1A16); color:#fff; position:relative; overflow:hidden; padding:56px 0 64px; }
.phero__glow{ position:absolute; border-radius:50%; filter:blur(60px); pointer-events:none; }
.phero__glow.g1{ width:560px; height:560px; background:radial-gradient(circle,rgba(200,30,23,.55),transparent 70%); top:-200px; right:-120px; opacity:.7; }
.phero__glow.g2{ width:420px; height:420px; background:radial-gradient(circle,rgba(255,138,130,.28),transparent 70%); bottom:-160px; left:-150px; opacity:.6; }
.phero .wrap{ position:relative; z-index:2; }
.phero .crumb{ color:rgba(255,255,255,.6); }
.phero .crumb a{ color:#FF8A82; }
.phero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:50px; align-items:center; }
.phero .eyebrow{ color:#FF8A82; }
.phero .eyebrow::before{ background:#FF8A82; }
.phero h1{ color:#fff; font-size:clamp(2.5rem,5.4vw,4rem); margin:16px 0 0; }
.phero h1 .hl{ color:#FF8A82; }
.phero__sub{ color:rgba(255,255,255,.82); font-size:1.2rem; margin-top:20px; max-width:520px; }
.phero__sub b{ color:#fff; }
.phero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
.phero__mini{ display:flex; flex-wrap:wrap; gap:12px 28px; margin-top:34px; }
.phero__mini .m{ display:flex; align-items:center; gap:10px; font-weight:600; color:rgba(255,255,255,.9); font-size:.96rem; }
.phero__mini .m svg{ width:22px; height:22px; color:#FF8A82; flex:none; }

/* painel de números do parceiro */
.ppanel{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); border-radius:var(--r-lg); padding:34px; backdrop-filter:blur(6px); }
.ppanel h3{ color:#fff; font-size:1.3rem; margin-bottom:22px; display:flex; align-items:center; gap:10px; }
.ppanel h3 svg{ width:24px; height:24px; color:#FF8A82; }
.ppanel__stats{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.ppanel__stat{ background:rgba(0,0,0,.18); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-md); padding:20px 18px; }
.ppanel__stat .n{ font-family:"Bricolage Grotesque"; font-weight:800; font-size:2.2rem; color:#fff; line-height:1; }
.ppanel__stat .n .u{ color:#FF8A82; font-size:.7em; }
.ppanel__stat .l{ color:rgba(255,255,255,.66); font-size:.84rem; margin-top:6px; }

/* quem pode ser parceiro */
.who{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.who__c{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:26px 22px; box-shadow:var(--shadow-sm); text-align:center; transition:transform .3s var(--ease), box-shadow .3s var(--ease); }
.who__c:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.who__c .ic{ width:56px; height:56px; border-radius:15px; background:var(--red-050); color:var(--red); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.who__c .ic svg{ width:28px; height:28px; }
.who__c h3{ font-size:1.12rem; margin-bottom:6px; }
.who__c p{ color:var(--ink-2); font-size:.9rem; }

/* timeline parceria (passos verticais) */
.ptimeline{ max-width:760px; margin:0 auto; display:grid; gap:0; }
.ptl{ display:grid; grid-template-columns:auto 1fr; gap:24px; position:relative; padding-bottom:34px; }
.ptl:last-child{ padding-bottom:0; }
.ptl__mark{ display:flex; flex-direction:column; align-items:center; }
.ptl__n{ width:52px; height:52px; border-radius:50%; background:var(--red); color:#fff; font-family:"Bricolage Grotesque"; font-weight:800; font-size:1.3rem; display:flex; align-items:center; justify-content:center; flex:none; box-shadow:var(--shadow-red); }
.ptl__line{ width:2px; flex:1; background:linear-gradient(var(--red-100),transparent); margin-top:6px; }
.ptl:last-child .ptl__line{ display:none; }
.ptl__body{ padding-top:6px; }
.ptl__body h3{ font-size:1.3rem; margin-bottom:6px; }
.ptl__body p{ color:var(--ink-2); }

/* comparação */
.compare{ display:grid; grid-template-columns:1fr 1fr; gap:22px; max-width:900px; margin:0 auto; }
.compare__c{ border-radius:var(--r-lg); padding:32px 30px; }
.compare__c.bad{ background:var(--paper-2); border:1px solid var(--line); }
.compare__c.good{ background:linear-gradient(160deg,#2A1311,#3A1A16); color:#fff; box-shadow:var(--shadow-lg); }
.compare__c h3{ font-size:1.24rem; margin-bottom:18px; display:flex; align-items:center; gap:10px; }
.compare__c.good h3{ color:#fff; }
.compare__c .ic{ width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex:none; }
.compare__c.bad .ic{ background:#eadfd8; color:var(--ink-3); }
.compare__c.good .ic{ background:rgba(255,138,130,.18); color:#FF8A82; }
.compare__c ul{ list-style:none; display:grid; gap:12px; }
.compare__c li{ display:flex; align-items:flex-start; gap:11px; font-size:.98rem; }
.compare__c li svg{ width:20px; height:20px; flex:none; margin-top:2px; }
.compare__c.bad li{ color:var(--ink-2); }
.compare__c.bad li svg{ color:#C98B82; }
.compare__c.good li{ color:rgba(255,255,255,.92); }
.compare__c.good li svg{ color:#34e07b; }

/* FAQ */
.faq{ max-width:780px; margin:0 auto; display:grid; gap:14px; }
.faq__i{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:0; box-shadow:var(--shadow-sm); overflow:hidden; }
.faq__i summary{ list-style:none; cursor:pointer; padding:22px 26px; font-family:"Bricolage Grotesque"; font-weight:700; font-size:1.12rem; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.faq__i summary::-webkit-details-marker{ display:none; }
.faq__i summary .chev{ width:24px; height:24px; color:var(--red); flex:none; transition:transform .3s var(--ease); }
.faq__i[open] summary .chev{ transform:rotate(180deg); }
.faq__i p{ padding:0 26px 24px; color:var(--ink-2); font-size:1rem; margin:0; }

@media (max-width:1080px){ .who{ grid-template-columns:1fr 1fr; } }
@media (max-width:900px){
  .phero__grid{ grid-template-columns:1fr; gap:34px; }
  .phero__visual{ order:-1; }
  .compare{ grid-template-columns:1fr; }
}
@media (max-width:680px){ .who{ grid-template-columns:1fr; } .ppanel__stats{ grid-template-columns:1fr; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1080px){
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .footer__top{ grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width:900px){
  .nav__links, .nav__cta .btn--wa{ display:none; }
  .nav__burger{ display:flex; }
  .hero__grid{ grid-template-columns:1fr; gap:46px; }
  .hero__visual{ max-width:440px; margin:0 auto; width:100%; }
  .delivery__steps{ grid-template-columns:1fr; gap:18px; }
  .dstep .arrow{ display:none; }
  .biz__grid{ grid-template-columns:1fr; }
  .partner__grid{ grid-template-columns:1fr; gap:36px; }
  .career__card{ grid-template-columns:1fr; gap:28px; text-align:center; padding:40px 28px; }
  .career__chips{ justify-content:center; }
  .career__l .eyebrow{ margin:0 auto; }
  .sams__card{ grid-template-columns:1fr; gap:30px; text-align:center; padding:40px 28px; }
  .sams__perks{ justify-content:center; }
  .sams__badge{ margin:0 auto; }
  .units-grid{ grid-template-columns:1fr; }
}
@media (max-width:680px){
  .section{ padding:74px 0; }
  .wrap{ padding:0 20px; }
  .services-grid{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .stats__grid{ grid-template-columns:1fr 1fr; gap:30px 18px; }
  .footer__top{ grid-template-columns:1fr; }
  .hero__trust{ gap:18px 26px; }
  .sams__off .big{ font-size:3.6rem; }
  .wa-float__bubble{ display:none; }
}
