/* ============================================================
   VELOTEK — LANDING PAGE "ENERGIA"
   Reaproveita os tokens do design system (conceito C).
   Amarelo protagonista, mascotes 3D, formas orgânicas.
   ============================================================ */

:root {
  /* Amarelos protagonistas */
  --y-50:  #FFFBEB;
  --y-100: #FFF3C4;
  --y-200: #FFE69A;
  --y-300: #FFD23F;
  --y-400: #FFC93C;
  --y-500: #FBB900;
  --y-600: #E0A300;
  --y-700: #B98400;

  /* Azuis */
  --b-100: #E4F0FB;
  --b-300: #3B9AE1;
  --b-400: #2563C9;
  --b-500: #1E5BB8;
  --b-600: #16468F;
  --b-700: #0F3266;

  /* Apoios alegres */
  --coral:  #FF7A59;
  --coral-d:#E85F3D;
  --mint:   #22C55E;
  --mint-d: #16A34A;
  --purple: #7C6BF0;
  --purple-d:#5C49D6;

  /* Neutros quentes */
  --n-900: #1B1A17;
  --n-700: #44403C;
  --n-500: #78716C;
  --n-400: #A8A29E;
  --n-200: #E7E5E4;
  --n-100: #F1EEEA;
  --n-50:  #FAFAF9;
  --white: #FFFFFF;

  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --pill: 999px;

  --shadow-sm: 0 2px 8px rgba(27,26,23,.06);
  --shadow:    0 8px 24px rgba(27,26,23,.10);
  --shadow-lg: 0 18px 50px rgba(27,26,23,.16);
  --shadow-y:  0 12px 30px rgba(251,185,0,.32);
  --shadow-b:  0 12px 30px rgba(30,91,184,.28);

  --ease: cubic-bezier(.34,1.56,.64,1);

  --ff-head: 'Baloo 2', 'Poppins', system-ui, sans-serif;
  --ff-body: 'Nunito', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--n-900);
  background:
    radial-gradient(1200px 600px at 12% -5%, var(--y-100), transparent 60%),
    radial-gradient(1000px 500px at 100% 0%, var(--b-100), transparent 55%),
    var(--n-50);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

h1,h2,h3,h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
button, input, select, textarea { font-family: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0); white-space:nowrap; }
:focus-visible { outline: 3px solid var(--b-400); outline-offset: 2px; border-radius: 6px; }

.wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }
.blob { position:absolute; border-radius:48% 52% 60% 40% / 50% 45% 55% 50%; z-index:0; pointer-events:none; }

/* ============== BOTÕES ============== */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border:none; cursor:pointer; font-weight:800; border-radius: var(--pill);
  padding: 14px 24px; font-size: 15px; font-family: var(--ff-body);
  transition: transform .2s var(--ease), box-shadow .2s, filter .2s;
  text-align:center;
}
.btn svg{ width:18px; height:18px; flex:0 0 18px; }
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn-y { background: var(--y-400); color: var(--n-900); box-shadow: var(--shadow-y); }
.btn-y:hover{ filter: brightness(1.03); }
.btn-b { background: var(--b-500); color:#fff; box-shadow: var(--shadow-b); }
.btn-mint { background: var(--mint); color:#fff; box-shadow: 0 10px 24px rgba(34,197,94,.3); }
.btn-ghost { background: var(--white); color: var(--n-700); border:1.5px solid var(--n-200); }
.btn-ghost:hover{ border-color: var(--y-400); }
.btn-wa { background: var(--mint); color:#fff; box-shadow: 0 10px 24px rgba(34,197,94,.3); }
.btn-lg{ padding: 16px 28px; font-size: 16px; }
.btn-block{ width:100%; }

/* ============== HEADER ============== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,249,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: padding .25s var(--ease), box-shadow .25s, border-color .25s, background .25s;
}
.site-header.compact {
  box-shadow: var(--shadow-sm);
  border-color: var(--n-200);
  background: rgba(255,255,255,.92);
}
.header-inner {
  display:flex; align-items:center; gap: 18px;
  padding: 16px 0; transition: padding .25s var(--ease);
}
.site-header.compact .header-inner { padding: 9px 0; }
.brand { display:flex; align-items:center; gap:10px; }
.brand img { height: 60px; transition: height .25s var(--ease); }
.site-header.compact .brand img { height: 48px; }
.main-nav { display:flex; align-items:center; gap: 4px; margin-left: 14px; }
.main-nav a {
  font-weight: 800; font-size: 14.5px; color: var(--n-700);
  padding: 9px 14px; border-radius: var(--pill); transition: all .2s var(--ease);
}
.main-nav a:hover { background: var(--y-100); color: var(--n-900); }
.header-actions { margin-left: auto; display:flex; align-items:center; gap:10px; }
.header-actions .link-login { font-weight:800; font-size:14.5px; color: var(--n-700); padding: 10px 14px; border-radius: var(--pill); }
.header-actions .link-login:hover { background: var(--n-100); }
.burger {
  display:none; width:46px; height:46px; border-radius:14px;
  border:1px solid var(--n-200); background:#fff; cursor:pointer; place-items:center;
}
.burger svg{ width:24px; height:24px; }

.mobile-nav {
  display: none; flex-direction: column; gap:4px;
  padding: 8px 0 18px; border-top:1px solid var(--n-200);
}
.mobile-nav.open { display:flex; }
.mobile-nav a { font-weight:800; padding: 13px 12px; border-radius: var(--radius); color: var(--n-700); }
.mobile-nav a:hover { background: var(--y-100); }
.mobile-nav .btn { margin-top:8px; }

/* ============== HERO ============== */
.hero { position: relative; overflow: hidden; padding: 56px 0 40px; }
.hero .blob.h1 { width: 520px; height:520px; background: var(--y-300); opacity:.42; top:-160px; left:-140px; }
.hero .blob.h2 { width: 460px; height:460px; background: var(--b-300); opacity:.18; bottom:-200px; right:-120px; }
.hero-grid {
  position: relative; z-index: 2;
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items:center;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--white); border:1px solid var(--n-200);
  border-radius: var(--pill); padding: 7px 15px 7px 11px;
  font-weight:800; font-size:13px; color: var(--n-700); box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero-eyebrow .price-pill {
  background: var(--y-400); color: var(--n-900);
  border-radius: var(--pill); padding: 3px 10px; font-size:12.5px; font-weight:800;
}
.hero h1 { font-size: clamp(32px, 5vw, 50px); line-height:1.05; }
.hero h1 .hl { color: var(--y-600); }
.hero .sub {
  color: var(--n-700); font-size: clamp(16px, 2vw, 18.5px); font-weight: 600;
  max-width: 540px; margin: 18px 0 26px;
}
.hero-ctas { display:flex; flex-wrap:wrap; gap: 12px; margin-bottom: 22px; }
.hero-trust { display:flex; flex-wrap:wrap; gap: 16px 22px; }
.hero-trust span { display:inline-flex; align-items:center; gap:7px; font-weight:800; font-size:13.5px; color: var(--n-700); }
.hero-trust svg { width:18px; height:18px; color: var(--mint-d); flex:0 0 18px; }

.hero-art { position: relative; display:grid; place-items:center; min-height: 380px; }
.hero-art .art-blob {
  position:absolute; width: min(420px, 90%); aspect-ratio:1;
  background: linear-gradient(150deg, var(--y-300), var(--y-500));
  border-radius: 46% 54% 58% 42% / 50% 46% 54% 50%;
  box-shadow: var(--shadow-y);
}
.hero-art .art-blob.spin { animation: blobmorph 12s ease-in-out infinite; }
@keyframes blobmorph {
  0%,100% { border-radius: 46% 54% 58% 42% / 50% 46% 54% 50%; }
  50% { border-radius: 58% 42% 45% 55% / 45% 55% 48% 52%; }
}
.hero-art .mascot {
  position: relative; z-index: 2; height: clamp(320px, 38vw, 440px);
  filter: drop-shadow(0 22px 30px rgba(27,26,23,.22));
}
.hero-art .float-card {
  position:absolute; z-index:3; background:var(--white);
  border:1px solid var(--n-200); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 11px 14px; display:flex; align-items:center; gap:10px;
  font-weight:800; font-size:13px;
}
.hero-art .float-card .ic { width:36px; height:36px; border-radius:11px; display:grid; place-items:center; flex:0 0 36px; }
.hero-art .float-card .ic svg{ width:20px; height:20px; }
.hero-art .fc-os { top: 16px; left: -8px; animation: floaty 4s ease-in-out infinite; }
.hero-art .fc-wa { bottom: 30px; right: -10px; animation: floaty 4.6s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }
.fc-os .ic{ background: var(--b-100); color: var(--b-500); }
.fc-wa .ic{ background:#DCFCE7; color: var(--mint-d); }
.fc-os small, .fc-wa small{ display:block; color:var(--n-500); font-weight:800; font-size:11px; }

/* ============== BARRA DE CONFIANÇA ============== */
.trustbar { background: var(--n-900); color:#fff; padding: 16px 0; position:relative; z-index:3; }
.trustbar .wrap { display:flex; flex-wrap:wrap; justify-content:center; gap: 14px 30px; }
.trustbar span { display:inline-flex; align-items:center; gap:9px; font-weight:800; font-size:14px; opacity:.95; }
.trustbar svg { width:19px; height:19px; color: var(--y-400); flex:0 0 19px; }

/* ============== SEÇÕES GENÉRICAS ============== */
section[id] { scroll-margin-top: 84px; }
.sec { padding: 64px 0; position:relative; }
.sec-head { text-align:center; max-width: 720px; margin: 0 auto 40px; }
.sec-kicker {
  display:inline-block; font-weight:800; text-transform:uppercase; letter-spacing:.1em;
  font-size:12.5px; color: var(--y-700); background: var(--y-100);
  padding: 6px 14px; border-radius: var(--pill); margin-bottom: 14px;
}
.sec-head h2 { font-size: clamp(26px, 3.6vw, 38px); }
.sec-head p { color: var(--n-500); font-weight:600; font-size: 16.5px; margin-top: 12px; }

/* ============== DORES ============== */
.pains-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pain {
  background: var(--white); border:1px solid var(--n-200); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.pain:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--y-300); }
.pain .emoji { font-size: 30px; line-height:1; }
.pain h3 { font-size: 18px; margin: 12px 0 6px; }
.pain p { color: var(--n-500); font-weight:600; font-size: 14px; }

/* ============== COMO FUNCIONA ============== */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step {
  background: var(--white); border:1px solid var(--n-200); border-radius: var(--radius-lg);
  padding: 26px 22px; box-shadow: var(--shadow-sm); text-align:center; position:relative; overflow:hidden;
}
.step .num {
  width: 46px; height:46px; border-radius: var(--pill); display:grid; place-items:center;
  font-family: var(--ff-head); font-weight:800; font-size: 22px; margin: 0 auto 8px;
  background: var(--y-400); color: var(--n-900); box-shadow: var(--shadow-y);
}
.step .step-art { position:relative; height: 170px; display:grid; place-items:center; margin: 6px 0 8px; }
.step .step-art .b { position:absolute; width: 150px; height:150px; border-radius: 50%; opacity:.5; }
.step:nth-child(1) .step-art .b{ background: var(--y-300); }
.step:nth-child(2) .step-art .b{ background: var(--b-300); opacity:.32; }
.step:nth-child(3) .step-art .b{ background: var(--mint); opacity:.3; }
.step .step-art img { position:relative; z-index:2; height: 165px; filter: drop-shadow(0 12px 18px rgba(27,26,23,.18)); }
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--n-500); font-weight:600; font-size: 14.5px; }

/* ============== RECURSOS ============== */
.features-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature {
  background: var(--white); border:1px solid var(--n-200); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--y-300); }
.feature .fic { width: 50px; height:50px; border-radius:15px; display:grid; place-items:center; margin-bottom: 14px; }
.feature .fic svg { width: 26px; height:26px; }
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { color: var(--n-500); font-weight:600; font-size: 14px; }
.fic.y{ background: var(--y-100); color: var(--y-700); }
.fic.b{ background: var(--b-100); color: var(--b-500); }
.fic.p{ background:#EDE9FE; color: var(--purple-d); }
.fic.m{ background:#DCFCE7; color: var(--mint-d); }
.fic.c{ background:#FFE8E1; color: var(--coral-d); }

/* ============== APP DO CLIENTE ============== */
.app-section { background: linear-gradient(160deg, var(--b-600), var(--b-700)); color:#fff; overflow:hidden; }
.app-section .sec-kicker { background: rgba(255,255,255,.16); color:#fff; }
.app-grid { display:grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items:center; }
.app-copy h2 { font-size: clamp(26px, 3.6vw, 38px); }
.app-copy .lead { font-size: 17px; font-weight:600; opacity:.92; margin: 14px 0 24px; max-width: 520px; }
.app-feats { display:flex; flex-direction:column; gap: 14px; margin-bottom: 26px; }
.app-feat { display:flex; gap: 13px; align-items:flex-start; }
.app-feat .ic { width:44px; height:44px; border-radius:13px; background: var(--y-400); color: var(--n-900); display:grid; place-items:center; flex:0 0 44px; }
.app-feat .ic svg{ width:23px; height:23px; }
.app-feat b { font-size: 16px; display:block; }
.app-feat p { opacity:.82; font-weight:600; font-size:14px; margin-top:2px; }
.app-feat.star .ic { background: var(--mint); color:#fff; }
.store-badges { display:flex; gap:12px; flex-wrap:wrap; }
.store-badge {
  display:inline-flex; align-items:center; gap:10px;
  background: var(--n-900); color:#fff; border:1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 9px 16px;
}
.store-badge svg{ width:24px; height:24px; }
.store-badge small{ display:block; font-size:10px; opacity:.75; font-weight:800; text-transform:uppercase; letter-spacing:.05em; }
.store-badge b{ font-size:15px; font-family: var(--ff-head); }

.app-visual { position:relative; display:grid; place-items:center; min-height: 460px; }
.app-visual .av-blob { position:absolute; width: 360px; aspect-ratio:1; background: radial-gradient(circle at 40% 35%, var(--y-400), var(--y-600)); border-radius:50%; opacity:.5; filter: blur(6px); }
.app-visual .mascot { position:absolute; right: 2%; bottom: 0; height: 230px; z-index:3; filter: drop-shadow(0 16px 22px rgba(0,0,0,.3)); }

/* phone mockup */
.phone-mock {
  position: relative; z-index:2;
  width: 270px; height: 540px; background: var(--n-50);
  border-radius: 40px; box-shadow: 0 0 0 11px #111, 0 0 0 13px #2a2a2a, var(--shadow-lg);
  overflow:hidden; display:flex; flex-direction:column;
}
.pm-notch { height: 26px; flex:0 0 26px; display:flex; align-items:center; justify-content:center; }
.pm-notch i { width: 90px; height: 18px; background:#111; border-radius: var(--pill); }
.pm-screen { flex:1; overflow:hidden; padding: 6px 14px 14px; color: var(--n-900); }
.pm-greet { display:flex; align-items:center; gap:10px; padding: 6px 0 10px; }
.pm-greet .ava { width:38px; height:38px; border-radius:var(--pill); background: linear-gradient(145deg,var(--y-400),var(--y-600)); display:grid; place-items:center; font-family:var(--ff-head); font-weight:800; color:var(--n-900); flex:0 0 38px; }
.pm-greet small{ display:block; color:var(--n-500); font-weight:800; font-size:11px; }
.pm-greet b{ font-family:var(--ff-head); font-size:15px; }
.pm-vehcard { border-radius: 18px; padding: 13px; background: linear-gradient(145deg,var(--b-400),var(--b-600)); color:#fff; box-shadow: var(--shadow-b); margin-bottom: 10px; }
.pm-vehcard .top{ display:flex; justify-content:space-between; align-items:flex-start; }
.pm-vehcard .model{ font-family:var(--ff-head); font-weight:800; font-size:16px; }
.pm-vehcard .sub{ font-size:11px; opacity:.85; font-weight:700; }
.pm-plate{ background:#fff; border-radius:6px; overflow:hidden; border:2px solid #111; min-width:84px; }
.pm-plate .mb{ background:#1351B4; color:#fff; font-size:6px; font-weight:800; text-align:center; padding:1px; letter-spacing:.1em; }
.pm-plate .num{ font-family:var(--ff-head); font-weight:800; font-size:13px; text-align:center; color:#111; padding:1px 5px 2px; letter-spacing:.05em; }
.pm-label{ font-family:var(--ff-head); font-weight:800; font-size:12px; color:var(--n-500); margin: 10px 0 7px; }
.pm-hist .ph { display:flex; gap:9px; margin-bottom: 9px; }
.pm-hist .ph .dot{ width:11px; height:11px; border-radius:50%; margin-top:3px; flex:0 0 11px; }
.pm-hist .ph .dot.mint{ background: var(--mint); } .pm-hist .ph .dot.blue{ background: var(--b-400); } .pm-hist .ph .dot.coral{ background: var(--coral); }
.pm-hist .ph b{ font-size:12px; display:block; } .pm-hist .ph small{ font-size:10px; color:var(--n-500); font-weight:700; }
.pm-org{ display:inline-flex; align-items:center; gap:4px; font-size:9.5px; font-weight:800; margin-top:2px; }
.pm-org i{ width:7px; height:7px; border-radius:50%; display:inline-block; }

/* ============== PLANOS ============== */
.plans-toggle { display:flex; justify-content:center; align-items:center; gap:13px; margin-bottom: 36px; }
.plans-toggle .lab { font-weight:800; font-size:15px; color: var(--n-500); }
.plans-toggle .lab.on { color: var(--n-900); }
.plans-toggle .save { background: var(--mint); color:#fff; border-radius: var(--pill); padding: 3px 10px; font-size:11.5px; font-weight:800; margin-left:4px; }
.tgl { width: 56px; height: 30px; border-radius: var(--pill); background: var(--n-200); position:relative; cursor:pointer; border:none; flex:0 0 56px; transition: background .2s var(--ease); }
.tgl i { position:absolute; top:3px; left:3px; width:24px; height:24px; border-radius:50%; background:#fff; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.tgl.on { background: var(--y-500); }
.tgl.on i { transform: translateX(26px); }

.plans-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.plan {
  background: var(--white); border:1px solid var(--n-200); border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--shadow-sm); display:flex; flex-direction:column;
  position: relative; transition: transform .22s var(--ease), box-shadow .22s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.popular {
  border: 2px solid var(--y-500); box-shadow: var(--shadow-y);
  transform: scale(1.03);
}
.plan.popular:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position:absolute; top:-14px; left:50%; transform: translateX(-50%);
  background: var(--y-400); color: var(--n-900); font-weight:800; font-size:12.5px;
  padding: 6px 16px; border-radius: var(--pill); box-shadow: var(--shadow-y); white-space:nowrap;
}
.plan .plan-name { font-family:var(--ff-head); font-weight:800; font-size: 22px; }
.plan .plan-for { color: var(--n-500); font-weight:700; font-size:13.5px; margin-top:2px; }
.plan .plan-price { margin: 18px 0 4px; display:flex; align-items:flex-end; gap:4px; }
.plan .plan-price .cur { font-family:var(--ff-head); font-weight:800; font-size:18px; color:var(--n-700); margin-bottom: 6px; }
.plan .plan-price .val { font-family:var(--ff-head); font-weight:800; font-size: 40px; line-height:1; }
.plan .plan-price .per { color: var(--n-500); font-weight:800; font-size:14px; margin-bottom: 6px; }
.plan .plan-old { color: var(--n-400); font-weight:800; font-size:13.5px; min-height: 19px; }
.plan .plan-old s { color: var(--n-400); }
.plan .plan-old .eco { color: var(--mint-d); }
.plan ul { list-style:none; margin: 18px 0 22px; display:flex; flex-direction:column; gap:11px; }
.plan ul li { display:flex; align-items:flex-start; gap:9px; font-weight:600; font-size:14px; color: var(--n-700); }
.plan ul li svg { width:18px; height:18px; color: var(--mint-d); flex:0 0 18px; margin-top:1px; }
.plan ul li.off { color: var(--n-400); }
.plan ul li.off svg { color: var(--n-300, #d6d3d1); }
.plan .btn { margin-top: auto; }
.plans-note { text-align:center; margin-top: 28px; color: var(--n-500); font-weight:700; font-size: 14px; display:flex; align-items:center; justify-content:center; gap:9px; flex-wrap:wrap; }
.plans-note svg{ width:18px; height:18px; color: var(--mint-d); }

/* ============== DEPOIMENTOS ============== */
.testi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi {
  background: var(--white); border:1px solid var(--n-200); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm); display:flex; flex-direction:column;
}
.testi .stars { color: var(--y-500); font-size: 16px; letter-spacing:2px; margin-bottom: 12px; }
.testi blockquote { font-weight:600; font-size: 15px; color: var(--n-700); flex:1; }
.testi .who { display:flex; align-items:center; gap:12px; margin-top: 18px; }
.testi .who .av { width:46px; height:46px; border-radius:var(--pill); display:grid; place-items:center; font-family:var(--ff-head); font-weight:800; color:#fff; flex:0 0 46px; }
.testi .who b { font-size:14.5px; display:block; } .testi .who small { color: var(--n-500); font-weight:700; }
.testi-illustrative { text-align:center; margin-top: 22px; color: var(--n-400); font-weight:700; font-size: 12.5px; }

/* ============== FAQ ============== */
.faq-list { max-width: 760px; margin: 0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item { background:var(--white); border:1px solid var(--n-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow:hidden; }
.faq-q {
  width:100%; text-align:left; border:none; background:transparent; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding: 18px 20px; font-weight:800; font-size: 16px; color: var(--n-900); font-family: var(--ff-body);
}
.faq-q .chev { flex:0 0 24px; transition: transform .25s var(--ease); color: var(--y-600); }
.faq-q .chev svg{ width:24px; height:24px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 20px 18px; color: var(--n-700); font-weight:600; font-size: 15px; }

/* ============== CTA FINAL ============== */
.final-cta { position:relative; overflow:hidden; padding: 6px 0 64px; }
.final-card {
  position:relative; z-index:2;
  background: linear-gradient(150deg, var(--y-300), var(--y-500));
  border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-y);
  display:grid; grid-template-columns: 1.4fr .6fr; gap: 24px; align-items:center; overflow:hidden;
}
.final-card .blobx { position:absolute; width:260px; height:260px; border-radius:50%; background: rgba(255,255,255,.25); top:-80px; right:30%; }
.final-card h2 { font-size: clamp(26px, 3.6vw, 40px); position:relative; }
.final-card p { font-weight:700; font-size: 17px; color: var(--n-900); opacity:.85; margin: 12px 0 24px; position:relative; max-width: 520px; }
.final-card .ctas { display:flex; flex-wrap:wrap; gap:12px; position:relative; }
.final-card .ctas .btn-y { background: var(--n-900); color:#fff; box-shadow: var(--shadow); }
.final-card .final-mascot { position:relative; justify-self:center; }
.final-card .final-mascot img { height: 250px; filter: drop-shadow(0 18px 26px rgba(27,26,23,.28)); }

/* ============== RODAPÉ ============== */
.site-footer { background: var(--n-900); color: #fff; padding: 52px 0 28px; }
.footer-top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand img { height: 64px; margin-bottom: 14px; }
.footer-brand p { opacity:.7; font-weight:600; font-size:14px; max-width: 280px; }
.footer-brand .socials { display:flex; gap:10px; margin-top: 16px; }
.footer-brand .socials a { width:40px; height:40px; border-radius:12px; background: rgba(255,255,255,.08); display:grid; place-items:center; transition: background .2s; }
.footer-brand .socials a:hover { background: var(--y-500); color: var(--n-900); }
.footer-brand .socials svg{ width:20px; height:20px; }
.footer-col h4 { font-size: 14px; text-transform:uppercase; letter-spacing:.06em; color: var(--y-400); margin-bottom: 14px; }
.footer-col a { display:block; opacity:.78; font-weight:600; font-size:14px; padding: 5px 0; transition: opacity .2s; }
.footer-col a:hover { opacity:1; color: var(--y-400); }
.footer-bottom { display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; align-items:center; margin-top: 36px; padding-top: 22px; border-top:1px solid rgba(255,255,255,.1); }
.footer-bottom p { opacity:.6; font-weight:600; font-size:13px; }
.footer-bottom .lgpd { display:inline-flex; align-items:center; gap:7px; opacity:.75; font-weight:700; font-size:13px; }
.footer-bottom .lgpd svg { width:17px; height:17px; color: var(--mint); }

/* ============== ANIMAÇÃO AO ROLAR ============== */
/* Só escondemos para revelar quando há JS (html.js). Sem JS, conteúdo aparece. */
.js .reveal { opacity:0; transform: translateY(22px); transition: opacity .6s ease, transform .6s var(--ease); }
.js .reveal.in { opacity:1; transform: none; }

/* Stagger de filhos quando um grid revela (cascata) */
.js .reveal-stagger > * { opacity:0; transform: translateY(20px); transition: opacity .55s ease, transform .55s var(--ease); }
.js .reveal-stagger.in > * { opacity:1; transform: none; transition-delay: var(--d, 0ms); }
/* O plano popular mantém o leve scale ao entrar (não pode virar transform:none) */
.js .plans-grid.reveal-stagger > .plan.popular { transform: translateY(20px) scale(1.03); }
.js .plans-grid.reveal-stagger.in > .plan.popular { transform: scale(1.03); }

/* ============================================================
   ANIMAÇÕES "VELOTEK ENERGIA" — vivas, mas sutis.
   Tudo o que é decorativo só roda com movimento permitido.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {

  /* ---- Entrada do Hero (on load, 100% CSS — não depende de JS) ---- */
  .hero-copy > * { opacity: 0; animation: heroIn .7s var(--ease) both; }
  .hero-copy > .hero-eyebrow { animation-delay: .05s; }
  .hero-copy > h1           { animation-delay: .16s; }
  .hero-copy > .sub         { animation-delay: .28s; }
  .hero-copy > .hero-ctas   { animation-delay: .40s; }
  .hero-copy > .hero-trust  { animation-delay: .52s; }
  .hero-art .float-card.fc-os {
    opacity:0;
    animation: cardPop .55s var(--ease) .80s both, floaty 4s ease-in-out 1.4s infinite;
  }
  .hero-art .float-card.fc-wa {
    opacity:0;
    animation: cardPop .55s var(--ease) .98s both, floaty 4.6s ease-in-out 1.6s infinite;
  }

  @keyframes heroIn {
    from { opacity:0; transform: translateY(20px); }
    to   { opacity:1; transform: none; }
  }
  @keyframes heroMascotIn {
    from { opacity:0; transform: scale(.86) translateY(14px); }
    to   { opacity:1; transform: none; }
  }
  @keyframes cardPop {
    0%   { opacity:0; transform: scale(.7); }
    70%  { opacity:1; transform: scale(1.06); }
    100% { opacity:1; transform: scale(1); }
  }

  /* ---- Mascotes flutuando (loop sutil) ---- */
  .hero-art .mascot {
    will-change: transform; opacity:0;
    animation: heroMascotIn .8s var(--ease) .30s both, floatSoft 4s ease-in-out 1.1s infinite;
  }
  .step .step-art img { animation: floatSoft 4s ease-in-out infinite; }
  .step:nth-child(2) .step-art img { animation-duration: 4.6s; animation-delay: .5s; }
  .step:nth-child(3) .step-art img { animation-duration: 3.6s; animation-delay: .9s; }
  .app-visual .mascot { animation: floatSoft 4.4s ease-in-out infinite; }
  .final-card .final-mascot img { animation: floatSoft 4s ease-in-out infinite; }

  @keyframes floatSoft {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-8px); }
  }

  /* ---- Blobs de fundo: drift bem lento ---- */
  .hero .blob.h1 { animation: blobDriftA 24s ease-in-out infinite; }
  .hero .blob.h2 { animation: blobDriftB 30s ease-in-out infinite; }
  .app-visual .av-blob { animation: blobDriftA 22s ease-in-out infinite; }
  .final-card .blobx { animation: blobDriftB 26s ease-in-out infinite; }

  @keyframes blobDriftA {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(14px,-12px) scale(1.06); }
  }
  @keyframes blobDriftB {
    0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
    50%     { transform: translate(-16px,10px) scale(1.05) rotate(4deg); }
  }

  /* ---- Cards flutuantes do hero (bobbing leve com rotação) ---- */
  .hero-art .fc-os { animation: floaty 4s ease-in-out infinite; }
  .hero-art .fc-wa { animation: floaty 4.6s ease-in-out infinite .6s; }
  @keyframes floaty {
    0%,100% { transform: translateY(0) rotate(-1deg); }
    50%     { transform: translateY(-9px) rotate(1.2deg); }
  }

  /* ---- Pop ao revelar nos 3 passos (número) ---- */
  .steps.in .step .num { animation: numPop .6s var(--ease) both; }
  .steps.in .step:nth-child(1) .num { animation-delay: .08s; }
  .steps.in .step:nth-child(2) .num { animation-delay: .20s; }
  .steps.in .step:nth-child(3) .num { animation-delay: .32s; }
  @keyframes numPop {
    0%   { transform: scale(.4) rotate(-12deg); }
    65%  { transform: scale(1.18) rotate(5deg); }
    100% { transform: scale(1) rotate(0); }
  }

  /* ---- Cascata das notificações/histórico do app (precisa de JS p/ revelar) ---- */
  .js .pm-hist .ph { opacity:0; transform: translateX(12px); transition: opacity .5s ease, transform .5s var(--ease); }
  .js .app-visual.in .pm-hist .ph { opacity:1; transform:none; }
  .js .app-visual.in .pm-hist .ph:nth-child(1) { transition-delay: .15s; }
  .js .app-visual.in .pm-hist .ph:nth-child(2) { transition-delay: .30s; }
  .js .app-visual.in .pm-hist .ph:nth-child(3) { transition-delay: .45s; }

  /* ---- Phone mockup com float suave ---- */
  .app-visual .phone-mock { animation: floatSoft 5s ease-in-out infinite; }

  /* ---- CTA final: mascote comemora ao revelar + faixa com brilho ---- */
  .final-card.in .final-mascot img { animation: celebrate 1.1s var(--ease) both, floatSoft 4s ease-in-out 1.1s infinite; }
  @keyframes celebrate {
    0%   { transform: translateY(8px) scale(.9) rotate(-3deg); opacity:.4; }
    55%  { transform: translateY(-6px) scale(1.05) rotate(2deg); opacity:1; }
    100% { transform: none; opacity:1; }
  }
  .final-card::after {
    content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
    background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%);
    background-size: 220% 100%; background-position: 120% 0;
    border-radius: inherit;
  }
  .final-card.in::after { animation: sheen 2.6s ease 1s; }
  @keyframes sheen {
    from { background-position: 120% 0; }
    to   { background-position: -120% 0; }
  }

  /* ---- CTA primário: pulse muito sutil e ocasional ---- */
  .hero-ctas .btn-y { animation: ctaPulse 5.5s ease-in-out 2.4s infinite; }
  @keyframes ctaPulse {
    0%, 86%, 100% { transform: none; box-shadow: var(--shadow-y); }
    91%  { transform: translateY(-2px) scale(1.025); box-shadow: 0 16px 36px rgba(251,185,0,.4); }
  }
  .hero-ctas .btn-y:hover { animation: none; }

  /* ---- Ícones dos módulos: wiggle no hover ---- */
  .feature:hover .fic { animation: wiggle .5s ease; }
  @keyframes wiggle {
    0%,100% { transform: rotate(0); }
    25%  { transform: rotate(-8deg) scale(1.06); }
    50%  { transform: rotate(7deg)  scale(1.06); }
    75%  { transform: rotate(-4deg) scale(1.03); }
  }
}

/* ---- Brilho/shimmer dos botões no hover (sem custo em loop) ---- */
.btn { position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn::before {
  content:""; position:absolute; top:0; left:-130%; width:60%; height:100%; z-index:0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); pointer-events:none;
}
.btn:hover::before { transition: left .6s ease; left: 130%; }

/* ---- Barra de progresso de scroll no header ---- */
.scroll-progress {
  position:absolute; left:0; right:0; bottom:-1px; height:3px; z-index:101;
  pointer-events:none; background: transparent;
}
.scroll-progress i {
  display:block; height:100%; width:100%;
  transform: scaleX(var(--p, 0)); transform-origin: left;
  background: linear-gradient(90deg, var(--y-400), var(--y-600));
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal, .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
  html.js .reveal-stagger > *, .reveal-stagger > * { opacity:1 !important; transform:none !important; transition:none !important; }
  html { scroll-behavior:auto; }
  .hero-art .art-blob.spin, .hero-art .fc-os, .hero-art .fc-wa { animation:none; }
  .hero-copy > *, .hero-art .mascot, .hero-art .float-card { opacity:1 !important; animation:none !important; }
  html.js .pm-hist .ph, .pm-hist .ph { opacity:1 !important; transform:none !important; transition:none !important; }
  .btn::before { display:none; }
  .scroll-progress { display:none; }
}

/* ============== BLOG ============== */
.blog-hero { padding: 48px 0 24px; text-align:center; }
.blog-hero h1 { font-size: clamp(28px, 4vw, 42px); }
.blog-hero p { color: var(--n-500); font-weight:600; font-size:16.5px; margin-top:12px; }
.blog-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; padding-bottom: 60px; }
.blog-card { background:var(--white); border:1px solid var(--n-200); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s; display:flex; flex-direction:column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card .thumb { height: 150px; display:grid; place-items:center; font-size: 52px; }
.blog-card .thumb.y{ background: linear-gradient(150deg,var(--y-300),var(--y-500)); }
.blog-card .thumb.b{ background: linear-gradient(150deg,var(--b-400),var(--b-600)); }
.blog-card .thumb.m{ background: linear-gradient(150deg,var(--mint),var(--mint-d)); }
.blog-card .bc-body { padding: 20px; flex:1; display:flex; flex-direction:column; }
.blog-card .bc-tag { font-weight:800; font-size:12px; color: var(--y-700); text-transform:uppercase; letter-spacing:.05em; margin-bottom:8px; }
.blog-card h3 { font-size: 18px; margin-bottom: 8px; }
.blog-card p { color: var(--n-500); font-weight:600; font-size:14px; flex:1; }
.blog-card .read { color: var(--b-500); font-weight:800; font-size:14px; margin-top: 14px; display:inline-flex; align-items:center; gap:6px; }

/* artigo (post) */
.post { max-width: 760px; margin: 0 auto; padding: 40px 0 60px; }
.post .crumb { font-weight:800; font-size:13px; color: var(--n-500); margin-bottom: 18px; }
.post .crumb a { color: var(--b-500); }
.post h1 { font-size: clamp(28px, 4vw, 40px); line-height:1.1; }
.post .post-meta { color: var(--n-500); font-weight:700; font-size:14px; margin: 14px 0 28px; }
.post .post-hero { height: 220px; border-radius: var(--radius-lg); display:grid; place-items:center; font-size: 70px; margin-bottom: 30px; background: linear-gradient(150deg,var(--y-300),var(--y-500)); }
.post h2 { font-size: 24px; margin: 30px 0 12px; }
.post p { font-weight:600; font-size: 16.5px; color: var(--n-700); margin-bottom: 16px; line-height:1.65; }
.post ul { margin: 0 0 16px 22px; }
.post ul li { font-weight:600; font-size:16px; color: var(--n-700); margin-bottom: 8px; }
.post .post-cta { background: var(--y-50); border:1px dashed var(--y-400); border-radius: var(--radius-lg); padding: 26px; text-align:center; margin: 34px 0; }
.post .post-cta h3 { font-size: 20px; margin-bottom: 8px; }
.post .post-cta p { margin-bottom: 18px; }
.post .back-home { display:inline-flex; align-items:center; gap:7px; font-weight:800; color: var(--b-500); margin-top: 10px; }

/* ============== RESPONSIVO ============== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-art { order: -1; min-height: 320px; }
  .app-grid { grid-template-columns: 1fr; gap: 30px; }
  .app-visual { min-height: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .final-card { grid-template-columns: 1fr; text-align:center; }
  .final-card .ctas { justify-content:center; }
  .final-card p { margin-inline:auto; }
  .final-card .final-mascot { order:-1; }
  .pains-grid, .features-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .main-nav, .header-actions .link-login, .header-actions .btn { display:none; }
  .burger { display:grid; }
  .header-actions { margin-left:auto; }
  .steps, .testi-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan.popular { transform: none; }
  .plans-grid.reveal-stagger > .plan.popular { transform: translateY(20px); }
  .plans-grid.reveal-stagger.in > .plan.popular { transform: none; }
  .plan.popular:hover { transform: translateY(-4px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .pains-grid, .features-grid, .blog-grid { grid-template-columns: 1fr; }
  .final-card { padding: 32px 22px; }
  .sec { padding: 48px 0; }
  .hero { padding: 36px 0 24px; }
  .trustbar .wrap { gap: 10px 18px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* === Correção de proporção: a altura controla o tamanho, a largura segue a proporção real da imagem (evita logo/mascote achatados) === */
.brand img,
.footer-brand img,
.hero-art .mascot,
.app-visual .mascot,
.final-mascot img {
  width: auto !important;
  max-width: 100%;
}
