/* =========================================================================
   LUMOS · Design System v2
   Fundo branco · fontes e verde Spotify · diagramação do mockup (zevu)
   ========================================================================= */

/* ---------- Fonts (Circular-like + serif italic de apoio) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Fraunces:ital,opsz,wght@1,9..144,300..700&display=swap');

/* ---------- Tokens ---------- */
:root{
  /* surfaces */
  --bg:        #ffffff;
  --bg-soft:   #f6f6f3;   /* painéis claros (herói, cards suaves) */
  --bg-1:      #fafaf8;
  --bg-2:      #f2f2ef;
  --bg-3:      #e9e9e5;
  --ink-bg:    #121212;   /* banda escura / botões pretos (Spotify near-black) */
  --bg-glass:  rgba(255,255,255,.78);

  /* text */
  --text:      #121212;
  --text-dim:  #565656;
  --text-mute: #8a8a86;

  /* brand */
  --accent:    #1ed760;   /* Spotify Green · CTAs e estados ativos */
  --accent-2:  #148a42;   /* verde legível para textos sobre branco */
  --spark:     #f2632f;   /* laranja da estrela do logo · decorativo */

  /* lines */
  --line:      rgba(18,18,18,.08);
  --line-2:    rgba(18,18,18,.16);

  /* shadows */
  --sh-1: 0 10px 26px rgba(18,18,18,.08);
  --sh-2: 0 26px 60px rgba(18,18,18,.14);

  /* type */
  --sans: 'Figtree','Helvetica Neue',Helvetica,Arial,sans-serif;
  --serif:'Fraunces',Georgia,serif;

  /* layout */
  --wrap: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--sans);
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  font-size:16px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input,select,textarea{ font-family:inherit; font-size:inherit; color:inherit; }
::selection{ background:var(--accent); color:#121212; }
:focus-visible{ outline:2px solid var(--accent-2); outline-offset:3px; border-radius:4px; }

/* ---------- Ambiente sutil ---------- */
body::before{
  content:""; position:fixed; inset:0; z-index:-2; pointer-events:none;
  background:
    radial-gradient(900px 560px at 82% -10%, rgba(30,215,96,.06), transparent 60%),
    radial-gradient(700px 480px at 6% 4%, rgba(242,99,47,.04), transparent 55%);
}
body::after{ /* grão de papel */
  content:""; position:fixed; inset:0; z-index:-1; pointer-events:none; opacity:.025;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Helpers ---------- */
.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--gut); }
.section{ position:relative; padding-block:clamp(30px,4.5vw,65px); }
.eyebrow{
  display:inline-flex; align-items:center; gap:.55em;
  font-size:12px; font-weight:700; letter-spacing:.22em;
  text-transform:uppercase; color:var(--accent-2);
}
.eyebrow::before{ content:""; width:22px; height:2px; border-radius:2px; background:var(--accent); }
.section-head{ max-width:760px; margin-bottom:clamp(32px,5vw,56px); }
.section-head h2{ margin-top:14px; }
.txt-dim{ color:var(--text-dim); }
.txt-mute{ color:var(--text-mute); }

/* ---------- Type (Spotify: bold sans, binário 700/400) ---------- */
h1,h2,h3,h4{ font-family:var(--sans); line-height:1.02; letter-spacing:-.025em; }
.display{ font-size:clamp(46px, 9.5vw, 132px); font-weight:800; line-height:.95; letter-spacing:-.04em; }
h2{ font-size:clamp(30px, 4.6vw, 54px); font-weight:800; letter-spacing:-.03em; }
h3{ font-size:clamp(20px, 2.4vw, 28px); font-weight:700; }
.lead{ font-size:clamp(16.5px,1.6vw,20px); color:var(--text-dim); line-height:1.55; }
.serif-italic{ font-family:var(--serif); font-style:italic; }

/* ---------- Buttons (pill Spotify) ---------- */
.btn{
  --pad:14px 28px;
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  padding:var(--pad); border-radius:999px;
  font-size:14.5px; font-weight:700; letter-spacing:.01em; white-space:nowrap;
  transition:transform .25s var(--ease), background .25s, box-shadow .3s, color .25s, border-color .25s;
}
.btn:active{ transform:scale(.97); }
.btn-primary{ background:var(--accent); color:#121212; }
.btn-primary:hover{ background:#2ee56d; transform:scale(1.045); box-shadow:0 10px 26px rgba(30,215,96,.35); }
.btn-dark{ background:var(--ink-bg); color:#fff; }
.btn-dark:hover{ background:#000; transform:scale(1.04); }
.btn-ghost{ background:transparent; color:var(--text); border:1px solid var(--line-2); }
.btn-ghost:hover{ border-color:var(--text); transform:scale(1.03); }
.btn-lg{ --pad:17px 36px; font-size:15.5px; }
.btn-sm{ --pad:10px 18px; font-size:13px; }
.btn-block{ width:100%; }

/* ---------- Header ---------- */
.header{
  position:fixed; inset:0 0 auto 0; z-index:80;
  transition:background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom:1px solid transparent;
}
.header.scrolled{
  background:var(--bg-glass); backdrop-filter:blur(16px) saturate(1.2);
  -webkit-backdrop-filter:blur(16px) saturate(1.2); border-color:var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; height:var(--nav-h,76px); transition:height .35s; }
.header.scrolled .nav{ --nav-h:62px; }
.brand{ display:flex; align-items:center; }
.brand svg{ height:25px; width:auto; }
.wordmark path:not(.brand-spark):not([fill]){ fill:var(--text); }
/* estrela · assinatura de movimento (verde da marca) */
.brand-spark{ fill:var(--accent); transform-box:fill-box; transform-origin:center; animation:spark-in .85s var(--ease) both; }
@keyframes spark-in{ from{ transform:rotate(-160deg) scale(.2); opacity:0 } to{ transform:none; opacity:1 } }
.brand:hover .brand-spark{ animation:spark-spin 2.4s linear infinite; }
@keyframes spark-spin{ to{ transform:rotate(360deg) } }
.spark-ico{ display:inline-block; color:var(--accent); animation:spark-spin 9s linear infinite; transform-origin:center; }

.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{ font-size:14.5px; font-weight:600; color:var(--text-dim); position:relative; padding:4px 0; transition:color .25s; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; border-radius:2px; background:var(--accent); transition:width .3s var(--ease); }
.nav-links a:hover{ color:var(--text); } .nav-links a:hover::after{ width:100%; }
.nav-right{ display:flex; align-items:center; gap:14px; }
.cart-btn{
  position:relative; display:inline-flex; align-items:center; gap:9px;
  padding:11px 20px; border-radius:999px; background:var(--ink-bg); color:#fff;
  font-size:13.5px; font-weight:700; transition:.25s;
}
.cart-btn:hover{ background:#000; transform:scale(1.04); }
.cart-count{
  min-width:20px; height:20px; padding:0 6px; border-radius:999px; background:var(--accent); color:#121212;
  font-size:11px; font-weight:800; display:grid; place-items:center; line-height:1;
}
.cart-count:empty, .cart-count[data-empty]{ display:none; }
.nav-toggle{ display:none; }

/* ---------- Hero (mockup: headline bold + palavra gigante + painel) ---------- */
.hero{ position:relative; padding-top:clamp(120px,16vh,175px); overflow:hidden; }
.hero-badge{ justify-content:center; display:flex; margin-bottom:26px; }
.hero-badge .dot{ width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 4px rgba(30,215,96,.18); animation:pulse 2.4s infinite; }
@keyframes pulse{ 0%,100%{opacity:1} 50%{opacity:.35} }
.hero h1{ text-align:center; position:relative; z-index:2; }
.gdot{ color:var(--accent); }
.hero-lead{ max-width:56ch; margin:26px auto 0; text-align:center; }
.hero-actions{ margin-top:30px; display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:center; }
.hero-meta{ margin:44px auto 0; max-width:880px; display:flex; flex-wrap:wrap; justify-content:center; gap:28px 56px; padding-top:26px; border-top:1px solid var(--line); }
.hero-meta .stat b{ font-size:30px; font-weight:800; display:block; line-height:1; letter-spacing:-.02em; }
.hero-meta .stat span{ font-size:12.5px; color:var(--text-mute); letter-spacing:.04em; }

/* (marquee removido) */
.hero{ padding-bottom:clamp(25px,3.5vw,45px); }

/* ---------- Filtros ---------- */
.filters{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-bottom:32px; }
.filter-group{ display:inline-flex; gap:6px; align-items:center; flex-wrap:wrap; }
.chip{
  padding:9px 16px; border-radius:999px; border:1px solid var(--line-2); background:#fff;
  font-size:13px; font-weight:600; color:var(--text-dim); transition:.22s;
}
.chip:hover{ color:var(--text); border-color:var(--text); }
.chip.active{ background:var(--ink-bg); color:#fff; border-color:var(--ink-bg); }
.filter-label{ font-size:11.5px; font-weight:700; color:var(--text-mute); letter-spacing:.12em; text-transform:uppercase; margin-right:4px; }

/* ---------- Grid de produtos ---------- */
.grid-products{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(16px,2vw,26px); }
.pcard{
  position:relative; border-radius:var(--radius); overflow:hidden; background:#fff;
  border:1px solid var(--line); transition:transform .4s var(--ease), border-color .3s, box-shadow .4s;
}
.pcard:hover{ transform:translateY(-6px); border-color:var(--line-2); box-shadow:var(--sh-2); }
.pcard-media{ position:relative; aspect-ratio:4/5; overflow:hidden; background:var(--bg-2); }
.pcard-media img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.pcard:hover .pcard-media img{ transform:scale(1.07); }
.pcard-media::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(10,10,10,.62), transparent 42%); opacity:0; transition:opacity .35s; }
.pcard:hover .pcard-media::after{ opacity:1; }
.pcard-tag{
  position:absolute; top:12px; left:12px; z-index:2; padding:5px 12px; border-radius:999px;
  background:rgba(255,255,255,.88); backdrop-filter:blur(8px); font-size:11px; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase; color:var(--text);
}
.pcard-fav{ position:absolute; top:10px; right:10px; z-index:2; width:34px; height:34px; border-radius:50%; display:grid; place-items:center; background:rgba(255,255,255,.88); backdrop-filter:blur(8px); color:var(--text); opacity:0; transform:translateY(-6px); transition:.3s; }
.pcard-fav:hover{ background:var(--accent); }
.pcard:hover .pcard-fav{ opacity:1; transform:none; }
/* hover: adicionar ao carrinho (najaf) */
.pcard-hover{
  position:absolute; left:12px; right:12px; bottom:12px; z-index:3;
  display:flex; gap:8px; opacity:0; transform:translateY(14px); transition:.4s var(--ease);
}
.pcard:hover .pcard-hover{ opacity:1; transform:none; }
.pcard-hover .btn{ flex:1; }
.pcard-hover .btn-ghost{ color:#fff; border-color:rgba(255,255,255,.55); background:rgba(0,0,0,.25); backdrop-filter:blur(6px); }
.pcard-hover .btn-ghost:hover{ border-color:#fff; }
.pcard-body{ padding:16px 18px 18px; }
.pcard-body .row{ display:flex; justify-content:space-between; align-items:baseline; gap:10px; }
.pcard-name{ font-size:18px; font-weight:700; letter-spacing:-.01em; }
.pcard-price{ font-size:15px; font-weight:800; white-space:nowrap; }
.pcard-desc{ font-size:13.5px; color:var(--text-dim); margin-top:4px; }
.pcard-specs{ display:flex; gap:14px; margin-top:13px; padding-top:13px; border-top:1px solid var(--line); }
.pcard-specs .s{ font-size:11.5px; color:var(--text-mute); display:flex; align-items:center; gap:5px; }
.pcard-specs .s b{ color:var(--text-dim); font-weight:700; }

/* ---------- Coleções ---------- */
.grid-collections{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(16px,2vw,24px); }
.ccard{ position:relative; border-radius:var(--radius-lg); overflow:hidden; min-height:340px; display:flex; align-items:flex-end; border:1px solid var(--line); color:#fff; }
.ccard img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.ccard:hover img{ transform:scale(1.06); }
.ccard::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(8,8,8,.92) 8%, rgba(8,8,8,.25) 58%, transparent); }
.ccard-body{ position:relative; z-index:2; padding:clamp(24px,3vw,38px); width:100%; }
.ccard-body .kicker{ font-size:11.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--accent); font-weight:700; }
.ccard-body h3{ margin:10px 0 8px; color:#fff; }
.ccard-body p{ color:rgba(255,255,255,.72); }
.ccard-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:20px; gap:16px; flex-wrap:wrap; }
.ccard-foot .price b{ font-size:26px; font-weight:800; letter-spacing:-.02em; }
.ccard-foot .price s{ color:rgba(255,255,255,.5); font-size:14px; margin-left:8px; }

/* ---------- Diferenciais ---------- */
.grid-diff{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; }
.diff{ background:#fff; padding:clamp(24px,3vw,38px); transition:background .35s; }
.diff:hover{ background:var(--bg-1); }
.diff-ico{ width:46px; height:46px; border-radius:12px; display:grid; place-items:center; background:rgba(30,215,96,.14); color:var(--accent-2); margin-bottom:20px; transition:transform .4s var(--ease); }
.diff:hover .diff-ico{ transform:rotate(-8deg) scale(1.08); }
.diff h3{ font-size:19px; margin-bottom:8px; }
.diff p{ font-size:14.5px; color:var(--text-dim); }
.diff .num{ font-size:12px; font-weight:800; color:var(--accent-2); float:right; opacity:.85; }

/* ---------- Como funciona ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(16px,2vw,26px); counter-reset:step; }
.step{ position:relative; padding-top:34px; }
.step::before{ counter-increment:step; content:"0" counter(step); position:absolute; top:0; left:0; font-size:13px; font-weight:800; color:var(--accent-2); }
.step::after{ content:""; position:absolute; top:8px; left:40px; right:-13px; height:1px; background:var(--line); }
.step:last-child::after{ display:none; }
.step h3{ font-size:18px; margin-bottom:8px; }
.step p{ font-size:14px; color:var(--text-dim); }

/* ---------- Manifesto ---------- */
.manifesto{ text-align:center; }
.manifesto-spark{ display:flex; justify-content:center; margin-bottom:30px; color:var(--accent); }
.manifesto-spark svg{ width:clamp(52px,6vw,76px); height:auto; animation:spark-spin 10s linear infinite; transform-origin:center; }
.manifesto .big{
  font-weight:700; font-size:clamp(34px,3.5vw,50px); line-height:1.25; letter-spacing:-.025em;
  max-width:1100px; margin-inline:auto;
}
.manifesto .big em{ font-family:var(--serif); font-style:italic; font-weight:500; color:var(--accent-2); letter-spacing:0; }

/* ---------- FAQ (zevu: título à esquerda, acordeão à direita) ---------- */
.faq-layout{ display:grid; grid-template-columns:.75fr 1.25fr; gap:clamp(30px,5vw,90px); align-items:start; }
.faq-list{ border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px 4px; text-align:left; font-size:clamp(16px,1.8vw,19px); font-weight:600; letter-spacing:-.01em; transition:color .25s; }
.faq-q:hover{ color:var(--accent-2); }
.faq-q .ico{ flex:none; width:30px; height:30px; border-radius:50%; border:1px solid var(--line-2); display:grid; place-items:center; transition:.35s var(--ease); position:relative; }
.faq-q .ico::before,.faq-q .ico::after{ content:""; position:absolute; background:currentColor; border-radius:2px; }
.faq-q .ico::before{ width:12px; height:1.6px; } .faq-q .ico::after{ width:1.6px; height:12px; transition:transform .35s var(--ease); }
.faq-item.open .faq-q .ico{ background:var(--accent); border-color:var(--accent); color:#121212; transform:rotate(90deg); }
.faq-item.open .faq-q .ico::after{ transform:scaleY(0); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease); }
.faq-a .inner{ padding:0 4px 24px; color:var(--text-dim); font-size:15px; max-width:62ch; }

/* ---------- Banda CTA (escura, Spotify black) ---------- */
.cta-band{ position:relative; border-radius:var(--radius-lg); overflow:hidden; padding:clamp(40px,6vw,84px); text-align:center; background:var(--ink-bg); color:#fff; }
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(640px 320px at 50% 125%, rgba(30,215,96,.28), transparent 70%); }
.cta-band > *{ position:relative; z-index:2; }
.cta-band .eyebrow{ color:var(--accent); justify-content:center; }
.cta-band .lead{ color:rgba(255,255,255,.66); }

/* ---------- Footer (mockup: mínimo + wordmark gigante) ---------- */
.footer{ position:relative; padding-top:clamp(28px,4vw,50px); padding-bottom:110px; border-top:1px solid var(--line); overflow:hidden; }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px 60px; flex-wrap:wrap; }
.footer-cta .label{ margin-bottom:16px; }
.footer-cta .mail{ font-size:clamp(28px,5vw,58px); font-weight:800; letter-spacing:-.03em; line-height:1; display:inline-block; transition:color .25s; }
.footer-cta .mail:hover{ color:var(--accent-2); }
.footer-cta .tagline{ color:var(--text-dim); font-size:14.5px; max-width:40ch; margin-top:16px; }
.footer-right{ display:flex; flex-direction:column; gap:20px; align-items:flex-start; }
.footer-nav{ display:flex; gap:20px; flex-wrap:wrap; }
.footer-nav a{ font-size:14px; font-weight:600; color:var(--text-dim); transition:color .2s; }
.footer-nav a:hover{ color:var(--accent-2); }
.footer-socials{ display:flex; gap:10px; }
.footer-socials a{ width:40px; height:40px; border-radius:50%; border:1px solid var(--line-2); display:grid; place-items:center; color:var(--text-dim); transition:.25s; }
.footer-socials a:hover{ background:var(--accent); color:#121212; border-color:var(--accent); transform:translateY(-2px); }
.footer-bottom{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; margin-top:clamp(30px,4vw,50px); padding-top:24px; border-top:1px solid var(--line); font-size:13px; color:var(--text-mute); }
/* wordmark gigante à direita (mockup) */
.footer-mark{ display:flex; justify-content:flex-end; margin-top:clamp(36px,6vw,70px); }
.footer-mark svg{ width:min(39vw, 440px); height:auto; }
/* blur fixo na base (najaf) */
.bottom-blur{ position:fixed; left:0; right:0; bottom:0; height:110px; z-index:40; pointer-events:none;
  backdrop-filter:blur(9px); -webkit-backdrop-filter:blur(9px);
  -webkit-mask-image:linear-gradient(to top, #000 28%, transparent);
  mask-image:linear-gradient(to top, #000 28%, transparent);
  background:linear-gradient(to top, rgba(255,255,255,.6), transparent);
}

/* ---------- Modal quick-view ---------- */
.modal-back{ position:fixed; inset:0; z-index:120; background:rgba(16,16,16,.5); backdrop-filter:blur(8px); opacity:0; visibility:hidden; transition:.35s; padding:24px; display:grid; place-items:center; overflow-y:auto; }
.modal-back.open{ opacity:1; visibility:visible; }
.modal{
  width:min(1040px,100%); background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--sh-2); transform:translateY(30px) scale(.98); transition:.4s var(--ease);
  display:grid; grid-template-columns:1fr 1fr; max-height:calc(100vh - 48px);
}
.modal-back.open .modal{ transform:none; }
.modal-gallery{ position:relative; background:var(--bg-2); }
.modal-gallery .main{ aspect-ratio:4/5; overflow:hidden; }
.modal-gallery .main img{ width:100%; height:100%; object-fit:cover; }
.modal-thumbs{ position:absolute; left:14px; bottom:14px; display:flex; gap:8px; }
.modal-thumbs button{ width:48px; height:58px; border-radius:8px; overflow:hidden; border:2px solid rgba(255,255,255,.6); opacity:.7; transition:.25s; }
.modal-thumbs button.active{ opacity:1; border-color:var(--accent); }
.modal-thumbs img{ width:100%; height:100%; object-fit:cover; }
.modal-info{ padding:clamp(24px,3vw,40px); overflow-y:auto; }
.modal-close{ position:absolute; top:14px; right:14px; z-index:5; width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.9); backdrop-filter:blur(8px); border:1px solid var(--line); color:var(--text); display:grid; place-items:center; transition:.25s; }
.modal-close:hover{ background:var(--accent); transform:rotate(90deg); }
.modal-info h3{ font-size:clamp(26px,3.2vw,36px); font-weight:800; letter-spacing:-.03em; margin:12px 0 6px; }
.modal-price{ font-size:22px; font-weight:800; margin:14px 0; }
.spec-table{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden; margin:20px 0; }
.spec-table .cell{ background:#fff; padding:12px 15px; }
.spec-table .cell span{ display:block; font-size:10.5px; font-weight:700; color:var(--text-mute); letter-spacing:.08em; text-transform:uppercase; margin-bottom:3px; }
.spec-table .cell b{ font-size:15px; font-weight:700; }
.files-row{ display:flex; gap:8px; flex-wrap:wrap; margin:16px 0; }
.file-tag{ padding:6px 13px; border-radius:8px; background:rgba(30,215,96,.12); border:1px solid rgba(20,138,66,.28); font-size:12px; font-weight:700; color:var(--accent-2); letter-spacing:.04em; }
.success-bar{ margin:18px 0; }
.success-bar .track{ height:7px; border-radius:999px; background:var(--bg-3); overflow:hidden; margin-top:8px; }
.success-bar .fill{ height:100%; border-radius:999px; background:linear-gradient(90deg,#16b853,var(--accent)); }
.tested{ display:flex; gap:10px; align-items:center; font-size:13px; color:var(--text-dim); margin-top:6px; }
.tested svg{ color:var(--accent-2); flex:none; }
.modal-actions{ display:flex; gap:12px; margin-top:24px; }
.placeholder-note{ font-size:11.5px; color:var(--text-mute); font-style:italic; margin-top:18px; padding-top:14px; border-top:1px dashed var(--line-2); }

/* ---------- Carrinho / Checkout ---------- */
.page-top{ padding-top:126px; padding-bottom:28px; }
.page-top h1{ font-size:clamp(36px,6vw,68px); font-weight:800; letter-spacing:-.035em; }
.cart-layout{ display:grid; grid-template-columns:1.5fr .9fr; gap:clamp(28px,4vw,56px); align-items:start; padding-bottom:120px; }
.cart-items{ display:flex; flex-direction:column; }
.cart-row{ display:grid; grid-template-columns:96px 1fr auto; gap:18px; padding:22px 0; border-bottom:1px solid var(--line); align-items:center; }
.cart-row img{ width:96px; height:118px; object-fit:cover; border-radius:12px; background:var(--bg-2); }
.cart-row .meta h4{ font-size:19px; font-weight:700; }
.cart-row .meta .kind{ font-size:13px; color:var(--text-mute); margin-top:3px; }
.cart-row .meta .files{ font-size:12px; font-weight:600; color:var(--accent-2); margin-top:8px; }
.cart-row .right{ text-align:right; display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
.cart-row .price{ font-size:17px; font-weight:800; }
.remove{ font-size:12.5px; color:var(--text-mute); text-decoration:underline; transition:color .2s; }
.remove:hover{ color:var(--spark); }
.summary{ position:sticky; top:96px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:clamp(24px,3vw,34px); box-shadow:var(--sh-1); }
.summary h3{ font-size:22px; margin-bottom:20px; }
.sum-row{ display:flex; justify-content:space-between; padding:10px 0; font-size:15px; color:var(--text-dim); }
.sum-row.total{ border-top:1px solid var(--line); margin-top:12px; padding-top:18px; font-size:18px; color:var(--text); font-weight:700; }
.sum-row.total b{ font-size:28px; font-weight:800; letter-spacing:-.02em; }
.trust-row{ display:flex; gap:14px; flex-wrap:wrap; margin-top:20px; padding-top:18px; border-top:1px solid var(--line); }
.trust-row .t{ font-size:12px; color:var(--text-mute); display:flex; gap:6px; align-items:center; }
.empty-cart{ text-align:center; padding:70px 0 100px; }
.empty-cart .ico{ display:flex; justify-content:center; margin-bottom:22px; color:var(--accent); }
.empty-cart .ico svg{ width:58px; height:auto; animation:spark-spin 10s linear infinite; transform-origin:center; }

/* upsell no checkout */
.upsell-band{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:clamp(22px,3vw,32px); margin-bottom:26px; }
.upsell-band .head{ display:flex; align-items:center; gap:12px; margin-bottom:6px; flex-wrap:wrap; }
.upsell-band .head .tag{ font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:#121212; background:var(--accent); padding:4px 10px; border-radius:6px; }
.upsell-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:18px; }
.ucard{ border:1px solid var(--line); border-radius:14px; overflow:hidden; background:#fff; transition:.3s; }
.ucard:hover{ border-color:var(--line-2); transform:translateY(-3px); box-shadow:var(--sh-1); }
.ucard .media{ aspect-ratio:1; overflow:hidden; background:var(--bg-2); }
.ucard .media img{ width:100%; height:100%; object-fit:cover; }
.ucard .body{ padding:12px 14px 14px; }
.ucard .body h4{ font-size:14.5px; font-weight:700; }
.ucard .body .p{ font-size:13px; color:var(--accent-2); font-weight:700; margin:4px 0 12px; }
.ucard.added{ border-color:var(--accent-2); }
.ucard.added .add-up{ background:var(--accent); color:#121212; border-color:var(--accent); }
.bundle-all{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:16px; padding:16px 18px; border:1.5px dashed var(--accent-2); border-radius:12px; background:rgba(30,215,96,.07); flex-wrap:wrap; }

.form-grid{ display:grid; gap:16px; }
.field label{ display:block; font-size:11.5px; font-weight:700; color:var(--text-mute); letter-spacing:.08em; margin-bottom:7px; text-transform:uppercase; }
.field input, .field select{ width:100%; padding:14px 16px; border-radius:12px; background:#fff; border:1px solid var(--line-2); transition:.2s; }
.field input:focus, .field select:focus{ border-color:var(--accent-2); outline:none; box-shadow:0 0 0 3px rgba(30,215,96,.15); }
.field.two{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.pay-note{ font-size:12px; color:var(--text-mute); display:flex; gap:8px; align-items:flex-start; margin-top:6px; }
.sim-flag{ display:inline-flex; align-items:center; gap:7px; font-size:12px; font-weight:600; color:#b45309; background:#fdf2e3; border:1px solid #f3d9ab; padding:7px 13px; border-radius:999px; margin-bottom:20px; }

/* sucesso */
.success-screen{ text-align:center; max-width:640px; margin:0 auto; padding:70px 0 120px; }
.success-check{ width:88px; height:88px; border-radius:50%; margin:0 auto 28px; display:grid; place-items:center; background:rgba(30,215,96,.16); color:var(--accent-2); animation:pop .5s var(--ease); }
@keyframes pop{ from{ transform:scale(.5); opacity:0 } }
.download-list{ margin:32px 0; text-align:left; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:#fff; }
.download-row{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 20px; border-bottom:1px solid var(--line); }
.download-row:last-child{ border-bottom:none; }
.download-row .di{ display:flex; align-items:center; gap:14px; }
.download-row img{ width:46px; height:56px; object-fit:cover; border-radius:8px; background:var(--bg-2); }
.download-row .dname{ font-size:16px; font-weight:700; }

/* páginas legais */
.legal{ max-width:800px; padding-top:120px; padding-bottom:120px; }
.legal h1{ font-size:clamp(34px,6vw,60px); font-weight:800; letter-spacing:-.035em; margin-bottom:10px; }
.legal .updated{ color:var(--text-mute); font-size:14px; margin-bottom:42px; }
.legal h2{ font-size:24px; margin:42px 0 14px; }
.legal h3{ font-size:18px; margin:26px 0 10px; }
.legal p, .legal li{ color:var(--text-dim); font-size:15.5px; margin-bottom:14px; line-height:1.7; }
.legal ul{ padding-left:22px; } .legal li{ margin-bottom:8px; }
.legal a{ color:var(--accent-2); text-decoration:underline; }
.legal .toc{ background:var(--bg-1); border:1px solid var(--line); border-radius:var(--radius); padding:24px 28px; margin-bottom:40px; }
.legal .toc a{ display:block; padding:6px 0; font-size:14.5px; text-decoration:none; color:var(--text-dim); }
.legal .toc a:hover{ color:var(--accent-2); }

/* ---------- Reveal · efeito "Testimonials" do zevu (sobe + desfoque) ---------- */
html.reveal-ready .reveal{
  opacity:0; transform:translateY(46px) scale(.985); filter:blur(14px);
  transition:opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
html.reveal-ready .reveal.in{ opacity:1; transform:none; filter:blur(0); }
.reveal-d1{ transition-delay:.1s } .reveal-d2{ transition-delay:.2s } .reveal-d3{ transition-delay:.3s } .reveal-d4{ transition-delay:.4s }
/* cascata automática (efeito Testimonials do zevu) */
.grid-diff .reveal:nth-child(2), .steps .reveal:nth-child(2), .faq-list .reveal:nth-child(2){ transition-delay:.08s }
.grid-diff .reveal:nth-child(3), .steps .reveal:nth-child(3), .faq-list .reveal:nth-child(3){ transition-delay:.16s }
.grid-diff .reveal:nth-child(4), .steps .reveal:nth-child(4), .faq-list .reveal:nth-child(4){ transition-delay:.24s }
.grid-diff .reveal:nth-child(5), .faq-list .reveal:nth-child(5){ transition-delay:.32s }
.grid-diff .reveal:nth-child(6), .faq-list .reveal:nth-child(6){ transition-delay:.4s }
@media (prefers-reduced-motion:reduce){ *{ animation:none!important; transition:none!important } html.reveal-ready .reveal{ opacity:1; transform:none; filter:none } }

/* ---------- Toast ---------- */
.toast{ position:fixed; bottom:26px; left:50%; transform:translate(-50%,140%); z-index:200; background:var(--ink-bg); color:#fff; padding:14px 22px; border-radius:999px; font-size:14px; font-weight:600; box-shadow:var(--sh-2); display:flex; align-items:center; gap:10px; transition:transform .45s var(--ease); }
.toast.show{ transform:translate(-50%,0); }
.toast .dot{ width:8px; height:8px; border-radius:50%; background:var(--accent); }

/* =========================================================================
   Responsivo
   ========================================================================= */
@media (max-width:1024px){
  .grid-products{ grid-template-columns:repeat(2,1fr); }
  .grid-diff{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .faq-layout{ grid-template-columns:1fr; }
  .cart-layout{ grid-template-columns:1fr; }
  .modal{ grid-template-columns:1fr; max-height:calc(100vh - 40px); }
  .modal-gallery .main{ aspect-ratio:16/11; }
  .upsell-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:720px){
  .nav-links{ position:fixed; inset:0 0 0 auto; width:min(320px,84vw); flex-direction:column; align-items:flex-start; justify-content:center; gap:24px; padding:40px; background:#fff; border-left:1px solid var(--line); box-shadow:var(--sh-2); transform:translateX(110%); transition:transform .4s var(--ease); z-index:90; }
  .nav-links.open{ transform:none; }
  .nav-links a{ font-size:19px; font-weight:700; }
  .nav-toggle{ display:grid; place-items:center; width:44px; height:44px; z-index:95; }
  .nav-toggle span{ width:22px; height:2px; background:var(--text); display:block; position:relative; transition:.3s; }
  .nav-toggle span::before,.nav-toggle span::after{ content:""; position:absolute; left:0; width:22px; height:2px; background:var(--text); transition:.3s; }
  .nav-toggle span::before{ top:-7px } .nav-toggle span::after{ top:7px }
  .nav-toggle.open span{ background:transparent }
  .nav-toggle.open span::before{ top:0; transform:rotate(45deg) }
  .nav-toggle.open span::after{ top:0; transform:rotate(-45deg) }
  .grid-products{ grid-template-columns:1fr 1fr; gap:12px; }
  .pcard-hover{ opacity:1; transform:none; }
  .pcard-media::after{ opacity:1; }
  .pcard-body{ padding:12px 13px 15px; }
  .pcard-name{ font-size:15.5px; }
  .pcard-specs{ display:none; }
  .grid-collections{ grid-template-columns:1fr; }
  .grid-diff{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .step::after{ display:none; }
  .hero-meta{ gap:20px 28px; }
  .manifesto .big br{ display:none; }
  .footer-mark svg{ width:46vw; }
  .cart-row{ grid-template-columns:76px 1fr; }
  .cart-row .right{ grid-column:1/-1; flex-direction:row; justify-content:space-between; align-items:center; }
  .cart-row img{ width:76px; height:94px; }
  .spec-table{ grid-template-columns:1fr; }
  .field.two{ grid-template-columns:1fr; }
  .upsell-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:420px){
  .grid-products{ grid-template-columns:1fr; }
}
