/* ============================================================
   PLUGPLAYSTORE — Design System
   Paleta: grafite escuro + verde "volt" (energia elétrica)
   Fontes: Poppins (títulos e texto)
   ============================================================ */

:root {
  --ink: #0f0f0f;
  --graphite: #171717;
  --graphite-2: #1f1f1f;
  --paper: #f5f7f9;
  --white: #ffffff;
  --volt: #49ea4c;
  --volt-dark: #23b02b;
  --text: #2a3240;
  --text-light: #e7ecf2;
  --muted: #6b7686;
  --muted-dark: #97a1b0;
  --border: #e3e8ee;
  --border-dark: #2b2b2b;
  --wa: #25d366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(11, 14, 19, 0.1);
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--volt-dark);
  background: rgba(73, 234, 76, 0.16);
  border: 1px solid rgba(35, 176, 43, 0.35);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.dark .section-tag { color: var(--volt); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.06rem; }
.dark .section-head p { color: var(--muted-dark); }

section { padding: 88px 0; }

.dark {
  background: var(--ink);
  color: var(--text-light);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-volt {
  background: var(--volt);
  color: var(--ink);
}
.btn-volt:hover { box-shadow: 0 8px 28px rgba(73, 234, 76, 0.4); }

.btn-ghost {
  border-color: var(--border-dark);
  color: var(--text-light);
}
.btn-ghost:hover { border-color: var(--volt); color: var(--volt); }

.btn-ghost-light {
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost-light:hover { border-color: var(--volt-dark); color: var(--volt-dark); }

.btn-wa {
  background: var(--wa);
  color: #fff;
}
.btn-wa:hover { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); }

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 14, 19, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo .bolt {
  width: 34px;
  height: 34px;
  background: var(--volt);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.logo .bolt svg { width: 18px; height: 18px; }
.logo img { width: 48px; height: 48px; max-width: none; }
.logo span em { font-style: normal; color: var(--volt); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: var(--muted-dark);
  font-weight: 500;
  font-size: 0.98rem;
  transition: color 0.15s;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 11px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; max-width: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(73, 234, 76, 0.14), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(73, 234, 76, 0.08), transparent 60%),
    var(--ink);
  color: var(--text-light);
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 em {
  font-style: normal;
  color: var(--volt);
}

.hero-sub {
  margin-top: 20px;
  font-size: 1.12rem;
  color: var(--muted-dark);
  max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
}
.hero-badges .badge b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--white);
}
.hero-badges .badge small { color: var(--muted-dark); font-size: 0.86rem; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
}

/* ---------- Faixa de números ---------- */
.stats-band {
  background: var(--volt);
  color: var(--ink);
  padding: 40px 0;
}
.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-band b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
}
.stats-band small { font-weight: 600; font-size: 0.9rem; opacity: 0.75; }

/* ---------- Cards de produto ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--graphite);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(73, 234, 76, 0.5); }

.product-card .photo {
  aspect-ratio: 1 / 1;
  background: radial-gradient(460px 340px at 50% 50%, rgba(73, 234, 76, 0.14), transparent 65%), var(--graphite-2);
  display: grid;
  place-items: center;
  padding: 0;
}
.product-card .photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.product-card .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }

.product-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.product-card .tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--volt);
  background: rgba(73, 234, 76, 0.12);
  padding: 4px 10px;
  border-radius: 100px;
}

.product-card h3 { color: var(--white); font-size: 1.4rem; }

.product-card .specs {
  list-style: none;
  margin: 18px 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.product-card .specs li {
  font-size: 0.88rem;
  color: var(--muted-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card .specs svg { width: 15px; height: 15px; color: var(--volt); flex-shrink: 0; }

.product-card .price { margin-top: auto; margin-bottom: 18px; }
.product-card .price small { display: block; color: var(--muted-dark); font-size: 0.8rem; }
.product-card .price b {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--white);
}

.product-card .actions { display: flex; gap: 12px; }
.product-card .actions .btn { flex: 1; justify-content: center; padding: 13px 10px; font-size: 0.92rem; }

/* ---------- Grid de benefícios ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.feature .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(73, 234, 76, 0.2);
  color: var(--volt-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature .icon svg { width: 26px; height: 26px; }

.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: 0.94rem; color: var(--muted); }

/* ---------- Passos ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  background: var(--graphite);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--volt);
  opacity: 0.9;
  display: block;
  margin-bottom: 14px;
}
.step h3 { color: var(--white); margin-bottom: 8px; }
.step p { color: var(--muted-dark); font-size: 0.95rem; }

/* ---------- Split (texto + imagem) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse > .split-media { order: -1; }

.split-media img { border-radius: var(--radius); width: 100%; }

.split-body p { color: var(--muted); margin-bottom: 16px; }
.dark .split-body p { color: var(--muted-dark); }

.checklist { list-style: none; margin: 24px 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checklist svg { width: 22px; height: 22px; color: var(--volt-dark); flex-shrink: 0; margin-top: 2px; }
.dark .checklist svg { color: var(--volt); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 14px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  color: var(--text);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--volt-dark);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 24px 22px; color: var(--muted); font-size: 0.98rem; }

/* ---------- CTA final ---------- */
.cta-band {
  background:
    radial-gradient(700px 400px at 85% 20%, rgba(73, 234, 76, 0.18), transparent 60%),
    var(--graphite);
  border-radius: var(--radius);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  color: var(--text-light);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--muted-dark); margin-top: 12px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; }

/* ---------- Formulários ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 0.94rem; margin-bottom: 22px; }

.form-grid { display: grid; gap: 16px; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--volt-dark);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-grid .btn { width: 100%; justify-content: center; }

.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; }

.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
}
.form-feedback.ok { display: block; background: #e7f9ee; color: #157347; }
.form-feedback.error { display: block; background: #fdeaea; color: #b02a37; }

/* ---------- Página de contato ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-channels { display: grid; gap: 18px; margin-top: 30px; }

.channel {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.channel:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.channel .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(73, 234, 76, 0.2);
  color: var(--volt-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.channel .icon svg { width: 24px; height: 24px; }
.channel b { display: block; font-family: var(--font-head); }
.channel small { color: var(--muted); }

/* ---------- Page hero (páginas internas) ---------- */
.page-hero {
  background:
    radial-gradient(700px 400px at 85% 0%, rgba(73, 234, 76, 0.12), transparent 60%),
    var(--ink);
  color: var(--text-light);
  padding: 80px 0 64px;
}
.page-hero p { margin-top: 16px; color: var(--muted-dark); max-width: 620px; font-size: 1.08rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a:hover { color: var(--volt); }
.footer-about p { margin-top: 16px; font-size: 0.92rem; max-width: 300px; }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}
.footer-bottom a:hover { color: var(--volt); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }

/* ---------- Modal de WhatsApp ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 10, 14, 0.74);
  backdrop-filter: blur(5px);
}
.modal-overlay.open { display: flex; }

.modal-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 34px 32px 30px;
  width: min(440px, 100%);
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.modal-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.modal-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--text); }

.modal-form .field { margin-bottom: 15px; }
.modal-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ---------- Comparativo de versões (6" x 8") ---------- */
.versions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 880px;
  margin-inline: auto;
}
.version-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.version-card.featured {
  border-color: var(--volt-dark);
  box-shadow: 0 18px 50px rgba(73, 234, 76, 0.16);
}
.version-card .vtag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.version-card.featured .vtag { background: var(--volt); color: var(--ink); }
.version-card .vtag.muted { background: var(--paper); color: var(--muted); border: 1px solid var(--border); }
.version-card h3 { font-size: 1.3rem; margin-bottom: 18px; }
.version-card .checklist li { font-size: 0.95rem; }
.version-card .no svg { color: #c2c8d0; }
.version-card .btn { width: 100%; justify-content: center; margin-top: 22px; }
@media (max-width: 700px) { .versions { grid-template-columns: 1fr; } }

/* ---------- Painel da marca (Sobre) ---------- */
.brand-panel {
  background: radial-gradient(360px 260px at 50% 45%, rgba(73, 234, 76, 0.16), transparent 65%), var(--ink);
  border-radius: var(--radius);
  padding: 56px;
  display: grid;
  place-items: center;
}
.brand-panel img { width: min(300px, 78%); height: auto; }

/* ---------- Páginas legais (Termos / Privacidade) ---------- */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 {
  font-size: 1.35rem;
  margin: 38px 0 12px;
  scroll-margin-top: 90px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--muted); line-height: 1.75; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; display: grid; gap: 6px; }
.legal strong { color: var(--text); }
.legal .updated { font-size: 0.9rem; color: var(--muted); margin-bottom: 30px; }
.legal a { color: var(--volt-dark); text-decoration: underline; }

/* ---------- Animação de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  section { padding: 64px 0; }

  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }

  .product-grid, .steps { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .stats-band .container { grid-template-columns: 1fr 1fr; gap: 28px; }

  .cta-band { grid-template-columns: 1fr; padding: 44px 32px; }
  .cta-band .actions { justify-content: flex-start; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .main-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--ink);
    border-bottom: 1px solid var(--border-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 6%;
    gap: 20px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta .btn-ghost { display: none; }

  .product-grid, .steps, .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Adições 2026-07-08 — infos da LP2 aplicadas ao site principal
   ============================================================ */

.center { text-align: center; }

/* ---------- Hero animado (home) ---------- */
.hero-anim { position: relative; }
.hero-anim > .container { position: relative; z-index: 2; }
.hero-glow { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.hero-glow::before {
  width: 620px; height: 620px; top: -220px; right: -140px;
  background: radial-gradient(circle, rgba(73, 234, 76, 0.26), transparent 68%);
  animation: glowDrift 9s ease-in-out infinite alternate;
}
.hero-glow::after {
  width: 480px; height: 480px; bottom: -200px; left: -120px;
  background: radial-gradient(circle, rgba(73, 234, 76, 0.15), transparent 68%);
  animation: glowDrift2 12s ease-in-out infinite alternate;
}
.hero-glow .aurora {
  position: absolute; inset: -45%;
  background: conic-gradient(from 0deg at 50% 50%,
    transparent 0deg,
    rgba(73, 234, 76, 0.10) 55deg,
    transparent 125deg,
    rgba(255, 255, 255, 0.04) 195deg,
    transparent 250deg,
    rgba(73, 234, 76, 0.06) 315deg,
    transparent 360deg);
  filter: blur(46px);
  animation: auroraSpin 32s linear infinite;
}
@keyframes auroraSpin { to { transform: rotate(360deg); } }
@keyframes glowDrift { to { transform: translate(-90px, 70px) scale(1.18); } }
@keyframes glowDrift2 { to { transform: translate(100px, -60px) scale(1.12); } }
.hero-anim .hero-visual img { animation: heroFloat 6s ease-in-out infinite; }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) {
  .hero-glow::before, .hero-glow::after, .hero-glow .aurora,
  .hero-anim .hero-visual img { animation: none; }
}

/* ---------- Toggle 6"/8" nos cards de estampa ---------- */
.size-toggle { display: inline-flex; gap: 4px; margin-bottom: 14px; background: var(--graphite-2); padding: 4px; border-radius: 100px; }
.size-btn { border: 0; background: transparent; color: var(--muted-dark); font-family: var(--font-head); font-weight: 600;
  font-size: 0.78rem; padding: 6px 14px; border-radius: 100px; cursor: pointer; transition: 0.15s; }
.size-btn.active { background: var(--volt); color: var(--ink); }
.card-specs { list-style: none; margin: 0 0 18px; display: grid; gap: 8px; }
.card-specs li { font-size: 0.86rem; color: var(--muted-dark); display: flex; gap: 8px; align-items: flex-start; }
.card-specs li svg { width: 14px; height: 14px; color: var(--volt); flex-shrink: 0; margin-top: 3px; }

/* ---------- Garantia (selo 90 dias) ---------- */
.seal-wrap { display: grid; place-items: center; margin: 8px auto 30px; }
.seal-wrap img { width: min(320px, 78%); height: auto; filter: drop-shadow(0 14px 34px rgba(212, 175, 55, 0.3)); }
.guarantee-text { max-width: 680px; margin-inline: auto; }
.guarantee-text .hero-sub { margin-inline: auto; }

/* ---------- Rodapé: meios de pagamento + selo de segurança ---------- */
.footer-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 30px;
  padding-bottom: 30px; margin-bottom: 24px; border-bottom: 1px solid var(--border-dark); }
.pay-row { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; align-items: center; }
.pay-chip { background: #fff; border-radius: 7px; padding: 8px 12px; font-family: var(--font-head);
  font-weight: 700; font-size: 0.8rem; line-height: 1; color: #1a1f2b; }
.pay-chip.pix { color: #00a99d; }
.pay-chip.parc { background: transparent; color: var(--volt); border: 1px solid rgba(73,234,76,0.5); font-weight: 600; }
.secure-seal { display: inline-flex; flex-direction: column; border-radius: 8px; overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3); text-decoration: none; }
.secure-seal .top { background: #2e9e1f; color: #fff; display: flex; align-items: center; justify-content: center;
  gap: 9px; padding: 9px 22px; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.03em; }
.secure-seal .top svg { width: 20px; height: 20px; }
.secure-seal .bot { background: #fff; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 7px 14px; font-size: 0.68rem; color: #7a8492; }
.secure-seal .bot .goog b { font-family: var(--font-head); font-size: 0.98rem; }
.secure-seal .bot .lock { display: inline-flex; align-items: center; gap: 5px; color: #5a6472;
  border-left: 1px solid #e0e4ea; padding-left: 9px; }
.secure-seal .bot .lock svg { width: 13px; height: 13px; }

/* Corrige quebra dos itens de checklist com <strong> nos cards de versão (texto flui em linha) */
.version-card .checklist li { display: block; position: relative; padding-left: 32px; }
.version-card .checklist li svg { position: absolute; left: 0; top: 3px; margin-top: 0; }


/* ---------- Hero centralizado (home, sem imagem) ---------- */
.hero-center { text-align: center; max-width: 880px; }
.hero-center .hero-sub { margin-inline: auto; }
.hero-center .hero-actions { justify-content: center; }
.hero-center .hero-badges { justify-content: center; }
.hero-center h1 { text-wrap: balance; }

/* Entrada animada do hero */
.hero-anim h1 { animation: heroRise 0.7s ease-out backwards; }
.hero-anim .hero-sub { animation: heroRise 0.7s ease-out 0.15s backwards; }
.hero-anim .hero-actions { animation: heroRise 0.7s ease-out 0.3s backwards; }
.hero-anim .hero-badges { animation: heroRise 0.7s ease-out 0.45s backwards; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-anim h1, .hero-anim .hero-sub, .hero-anim .hero-actions, .hero-anim .hero-badges { animation: none; }
}


/* ---------- Hero da home em tela cheia ---------- */
.hero-anim {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
}

/* ---------- Tipografia: títulos balanceados, sem palavra órfã ---------- */
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
