/* ============================
   ORBIT DIGITAL — style.css
   Dark/Light · Premium Space
   ============================ */

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

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand Colors */
  --cyan:        #00c6ff;
  --cyan-deep:   #0072ff;
  --purple:      #7c3aed;
  --purple-light:#a78bfa;
  --green:       #22c55e;
  --gold:        #f0c040;
  --white:       #ffffff;

  /* Dark theme defaults */
  --bg:          #080b14;
  --bg2:         #0d1120;
  --bg3:         #111827;
  --bg4:         #161d30;
  --surface:     rgba(255,255,255,.04);
  --surface-hover: rgba(255,255,255,.07);
  --border:      rgba(255,255,255,.07);
  --border-glow: rgba(0,198,255,.18);
  --text:        #e8edf8;
  --text-dim:    #94a3b8;
  --text-faint:  #4b5a72;

  /* Fonts */
  --font-head:   'Exo 2', sans-serif;
  --font-body:   'DM Sans', sans-serif;

  /* Radii */
  --r:   12px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* ─── LIGHT THEME ─── */
html[data-theme="light"] {
  --bg:          #f0f4ff;
  --bg2:         #ffffff;
  --bg3:         #eef2fc;
  --bg4:         #e4eaf8;
  --surface:     rgba(0,0,0,.03);
  --surface-hover: rgba(0,0,0,.05);
  --border:      rgba(0,0,0,.08);
  --border-glow: rgba(0,114,255,.2);
  --text:        #0f172a;
  --text-dim:    #475569;
  --text-faint:  #94a3b8;
}

/* ─── BASE ─── */
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}


/* ─── STARS CANVAS ─── */
#starsCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity .4s;
}
html[data-theme="light"] #starsCanvas { opacity: 0.08; }

/* ─── NEBULA GLOWS ─── */
.nebula {
  position: fixed; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(100px);
  transition: opacity .4s;
}
.n1 { width: 700px; height: 700px; top: -250px; right: -180px; background: radial-gradient(circle, rgba(0,114,255,.14) 0%, transparent 70%); }
.n2 { width: 500px; height: 500px; bottom: 0; left: -150px; background: radial-gradient(circle, rgba(124,58,237,.1) 0%, transparent 70%); }
.n3 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(0,198,255,.05) 0%, transparent 70%); }
html[data-theme="light"] .nebula { opacity: 0.4; }

/* ─── CONTAINER ─── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ─── HEADER ─── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,11,20,.82);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
html[data-theme="light"] .header {
  background: rgba(240,244,255,.92);
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 16px;
}
.logo {
  display: flex; align-items: center; text-decoration: none; flex-shrink: 0;
  position: relative;
}
/* Glow blob atrás do logo */
.logo::before {
  content: '';
  position: absolute;
  inset: -8px -12px;
  border-radius: 20px;
  background: radial-gradient(ellipse at 40% 50%,
    rgba(0,198,255,.18) 0%,
    rgba(0,114,255,.12) 40%,
    rgba(124,58,237,.08) 70%,
    transparent 100%);
  filter: blur(12px);
  animation: logoAura 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.logo-img { position: relative; z-index: 1; }
@keyframes logoAura {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.08); }
}
html[data-theme="light"] .logo::before {
  background: radial-gradient(ellipse at 40% 50%,
    rgba(0,114,255,.12) 0%,
    rgba(124,58,237,.08) 50%,
    transparent 100%);
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform .3s;
}
/* Dark: logo branco com glow ciano/azul/roxo pulsando */
.logo-dark {
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(0,198,255,.55))
    drop-shadow(0 0 22px rgba(0,114,255,.35))
    drop-shadow(0 0 44px rgba(124,58,237,.2));
  animation: logoGlow 3s ease-in-out infinite;
}
/* Light: logo colorido com sombra azul suave pulsando */
.logo-light {
  display: none;
  filter:
    drop-shadow(0 2px 10px rgba(0,114,255,.25))
    drop-shadow(0 1px 4px rgba(0,0,0,.1));
  animation: logoGlowLight 3s ease-in-out infinite;
}
html[data-theme="light"] .logo-dark  { display: none; }
html[data-theme="light"] .logo-light { display: block; }

.logo:hover .logo-img { transform: scale(1.05); }

@keyframes logoGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 8px rgba(0,198,255,.55))
      drop-shadow(0 0 22px rgba(0,114,255,.35))
      drop-shadow(0 0 44px rgba(124,58,237,.2));
  }
  50% {
    filter:
      drop-shadow(0 0 14px rgba(0,198,255,.8))
      drop-shadow(0 0 32px rgba(0,114,255,.55))
      drop-shadow(0 0 60px rgba(124,58,237,.35));
  }
}
@keyframes logoGlowLight {
  0%, 100% {
    filter:
      drop-shadow(0 2px 10px rgba(0,114,255,.25))
      drop-shadow(0 1px 4px rgba(0,0,0,.1));
  }
  50% {
    filter:
      drop-shadow(0 3px 18px rgba(0,114,255,.4))
      drop-shadow(0 2px 6px rgba(0,0,0,.15));
  }
}
.header-center { flex: 1; display: flex; justify-content: center; }
.header-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 500; color: var(--green);
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  padding: 5px 16px; border-radius: 999px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.header-right { display: flex; align-items: center; gap: 20px; }

/* ─── THEME TOGGLE ─── */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-dim); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--border-glow); color: var(--cyan); border-color: var(--border-glow); }
.icon-sun  { display: none; }
.icon-moon { display: block; }
html[data-theme="light"] .icon-sun  { display: block; }
html[data-theme="light"] .icon-moon { display: none; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav a { font-size: .875rem; font-weight: 500; color: var(--text-dim); text-decoration: none; transition: color .2s; }
.nav a:hover { color: var(--cyan); }
.nav-wpp {
  display: flex; align-items: center; gap: 7px;
  background: var(--green) !important; color: white !important;
  padding: 8px 16px; border-radius: var(--r); font-weight: 600 !important;
  font-size: .84rem !important;
  box-shadow: 0 2px 12px rgba(34,197,94,.25);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-wpp:hover { background: #16a34a !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(34,197,94,.4); }

/* ─── HERO BANNER ROTATIVO ─── */
.hero-banner {
  position: relative; z-index: 1;
  overflow: hidden;
  background: var(--bg);
}

/* Track wrapper clips the sliding content */
.hb-track-wrap {
  overflow: hidden;
  width: 100%;
}

.hb-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each slide */
.hb-slide {
  min-width: 100%;
  position: relative;
  padding: 72px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Background glow per slide */
.hb-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .7;
}
.hb-glow-cyan   { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,198,255,.14) 0%, transparent 70%); }
.hb-glow-green  { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,197,94,.14) 0%, transparent 70%); }
.hb-glow-white  { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(226,232,240,.1) 0%, transparent 70%); }
.hb-glow-purple { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(167,139,250,.14) 0%, transparent 70%); }
.hb-glow-combo  { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,198,255,.08) 0%, transparent 40%), radial-gradient(ellipse 60% 50% at 80% 50%, rgba(167,139,250,.1) 0%, transparent 60%); }

/* Promo tag */
.hb-promo-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 600; letter-spacing: .06em;
  color: var(--cyan);
  background: rgba(0,198,255,.07);
  border: 1px solid rgba(0,198,255,.18);
  padding: 5px 16px; border-radius: 999px;
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.hb-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}
.hb-pulse-green  { background: var(--green); box-shadow: 0 0 8px var(--green); }
.hb-pulse-white  { background: #e2e8f0; box-shadow: 0 0 6px #e2e8f0; }
.hb-pulse-purple { background: var(--purple-light); box-shadow: 0 0 8px var(--purple-light); }
.hb-pulse-combo  { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

/* Main content row */
.hb-content {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 780px;
  width: 100%;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}

/* Icon box */
.hb-icon-wrap {
  width: 96px; height: 96px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hb-icon-cyan   { background: linear-gradient(135deg,rgba(0,198,255,.18),rgba(0,114,255,.18)); border: 1.5px solid rgba(0,198,255,.3); box-shadow: 0 0 32px rgba(0,198,255,.15); }
.hb-icon-green  { background: linear-gradient(135deg,rgba(34,197,94,.18),rgba(16,185,129,.18)); border: 1.5px solid rgba(34,197,94,.3); box-shadow: 0 0 32px rgba(34,197,94,.15); }
.hb-icon-white  { background: linear-gradient(135deg,rgba(226,232,240,.12),rgba(148,163,184,.12)); border: 1.5px solid rgba(226,232,240,.2); box-shadow: 0 0 32px rgba(226,232,240,.08); }
.hb-icon-purple { background: linear-gradient(135deg,rgba(167,139,250,.18),rgba(124,58,237,.18)); border: 1.5px solid rgba(167,139,250,.3); box-shadow: 0 0 32px rgba(167,139,250,.15); }

/* Combo icons */
.hb-combo-icons {
  display: flex; gap: 8px; align-items: center;
  flex-shrink: 0;
}
.hb-combo-icons img {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--bg3);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  border: 1px solid var(--border);
}

/* Text block */
.hb-text { flex: 1; text-align: left; }
.hb-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-faint);
  margin-bottom: 8px; display: block;
}
.hb-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.hb-accent { font-style: normal; }
.hb-desc {
  font-size: .95rem; color: var(--text-dim);
  line-height: 1.65; margin-bottom: 20px;
  max-width: 440px;
}
.hb-price-row { display: flex; align-items: baseline; gap: 8px; }
.hb-price {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 900; line-height: 1;
}
.hb-price-combo {
  background: linear-gradient(90deg,#00c6ff,#a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hb-period { font-size: .85rem; color: var(--text-dim); }

/* Action buttons */
.hb-actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
}
.hb-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  text-decoration: none; letter-spacing: .03em;
  transition: transform .25s, box-shadow .25s, background .25s;
  cursor: pointer;
}
.hb-btn:hover { transform: translateY(-3px); }

.hb-btn-cyan   { background: linear-gradient(135deg,var(--cyan),var(--cyan-deep)); color: #fff; box-shadow: 0 4px 20px rgba(0,114,255,.4); }
.hb-btn-cyan:hover   { box-shadow: 0 8px 32px rgba(0,114,255,.55); }
.hb-btn-green  { background: var(--green); color: #fff; box-shadow: 0 4px 20px rgba(34,197,94,.35); }
.hb-btn-green:hover  { box-shadow: 0 8px 32px rgba(34,197,94,.5); }
.hb-btn-white  { background: rgba(226,232,240,.15); color: #e2e8f0; border: 1.5px solid rgba(226,232,240,.25); box-shadow: 0 4px 16px rgba(226,232,240,.1); }
.hb-btn-white:hover  { background: rgba(226,232,240,.22); }
.hb-btn-purple { background: linear-gradient(135deg,var(--purple),var(--purple-light)); color: #fff; box-shadow: 0 4px 20px rgba(124,58,237,.4); }
.hb-btn-purple:hover { box-shadow: 0 8px 32px rgba(124,58,237,.55); }
.hb-btn-combo  { background: linear-gradient(135deg,var(--cyan),var(--purple-light)); color: #fff; box-shadow: 0 4px 20px rgba(0,198,255,.3); }
.hb-btn-combo:hover  { box-shadow: 0 8px 32px rgba(0,198,255,.45); }
.hb-btn-wpp {
  background: var(--green); color: #fff;
  box-shadow: 0 4px 16px rgba(34,197,94,.3);
}
.hb-btn-wpp:hover { box-shadow: 0 8px 28px rgba(34,197,94,.45); }

/* Controls */
.hb-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 0 0 24px;
  position: relative; z-index: 2;
}
.hb-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.hb-arrow:hover {
  background: var(--surface-hover); color: var(--cyan);
  border-color: rgba(0,198,255,.3); transform: scale(1.08);
}
.hb-dots { display: flex; gap: 8px; align-items: center; }
.hb-dot {
  width: 8px; height: 8px; border-radius: 4px;
  border: none; background: var(--border);
  cursor: pointer; padding: 0;
  transition: background .3s, width .3s, transform .2s;
}
.hb-dot-active, .hb-dot:hover { background: var(--cyan); width: 22px; }

/* Progress bar */
.hb-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--border); z-index: 3;
}
.hb-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--purple-light));
  width: 0%; transition: width linear;
  border-radius: 0 2px 2px 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Light mode tweaks */
html[data-theme="light"] .hb-btn-white {
  color: #334155; background: rgba(15,23,42,.07); border-color: rgba(15,23,42,.15);
}

/* ─── HERO BANNER RESPONSIVE ─── */
@media (max-width: 700px) {
  .hb-slide { padding: 48px 20px 64px; }
  .hb-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .hb-text { text-align: center; }
  .hb-desc { max-width: 100%; }
  .hb-price-row { justify-content: center; }
  .hb-combo-icons { justify-content: center; }
  .hb-title { font-size: 1.9rem; }
  .hb-icon-wrap { width: 72px; height: 72px; border-radius: 18px; }
  .hb-icon-wrap img { width: 42px; height: 42px; }
  .hb-combo-icons img { width: 40px; height: 40px; }
  .hb-actions { flex-direction: column; align-items: center; width: 100%; }
  .hb-btn { width: 100%; max-width: 320px; justify-content: center; }
  .hb-promo-tag { margin-bottom: 24px; }
}

/* ─── STEPS ─── */
.steps-section {
  position: relative; z-index: 1;
  padding: 36px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
.step-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px;
}
.step-circle {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(0,198,255,.3);
}
.step-circle span {
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: white;
}
.step-text strong { display: block; font-size: .86rem; font-weight: 600; color: var(--text); white-space: nowrap; }
.step-text span   { font-size: .74rem; color: var(--text-dim); white-space: nowrap; }
.step-line { width: 28px; height: 2px; background: var(--border-glow); flex-shrink: 0; margin: 0 auto; }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-block; font-size: .73rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 2.1rem; font-weight: 800; color: var(--text);
  margin-bottom: 10px; letter-spacing: -.01em;
}
.section-sub { font-size: .9rem; color: var(--text-dim); }

/* ─── PRODUTOS ─── */
.produtos-section {
  position: relative; z-index: 1;
  padding: 90px 24px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

/* ─── PRODUCT CARD ─── */
.prod-card {
  position: relative; overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.prod-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
}
/* Glow blob */
.card-glow {
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,198,255,.12) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity .3s;
}
.card-glow-green  { background: radial-gradient(circle, rgba(34,197,94,.12)  0%, transparent 70%); }
.card-glow-purple { background: radial-gradient(circle, rgba(124,58,237,.14) 0%, transparent 70%); }
.card-glow-white  { background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%); }
.card-glow-orange { background: radial-gradient(circle, rgba(249,115,22,.14) 0%, transparent 70%); }
.card-glow-gold   { background: radial-gradient(circle, rgba(234,179,8,.14)  0%, transparent 70%); }
.card-glow-teal   { background: radial-gradient(circle, rgba(20,184,166,.14)  0%, transparent 70%); }

.chatgpt-card:hover { box-shadow: 0 24px 60px rgba(0,114,255,.2); }
.spotify-card:hover  { box-shadow: 0 24px 60px rgba(34,197,94,.18); border-color: rgba(34,197,94,.3); }
.capcut-card:hover   { box-shadow: 0 24px 60px rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.canva-card:hover    { box-shadow: 0 24px 60px rgba(124,58,237,.2); border-color: rgba(124,58,237,.3); }
.landing-card:hover  { box-shadow: 0 24px 60px rgba(249,115,22,.2); border-color: rgba(249,115,22,.3); }
.site-card:hover        { box-shadow: 0 24px 60px rgba(234,179,8,.2);  border-color: rgba(234,179,8,.3); }
.pack-canva-card:hover  { box-shadow: 0 24px 60px rgba(20,184,166,.2); border-color: rgba(20,184,166,.3); }

/* Card Header */
.card-header {
  display: flex; align-items: flex-start; gap: 12px;
  flex-wrap: wrap;
}
.card-icon {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: transparent;
}
.chatgpt-icon { background: transparent; }
.spotify-icon { background: transparent; }
.capcut-icon  { background: transparent; }
.canva-icon   { background: transparent; }
.landing-icon { background: linear-gradient(135deg, #f97316, #ea580c); }
.site-icon        { background: linear-gradient(135deg, #eab308, #ca8a04); }
.pack-canva-icon  { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.card-icon img { width: 56px; height: 56px; border-radius: 14px; object-fit: cover; display: block; }

.card-title-wrap { flex: 1; min-width: 0; }
.card-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--text);
  line-height: 1.2;
}
.card-cat { font-size: .62rem; letter-spacing: .1em; color: var(--text-dim); margin-top: 3px; }
.accent-cyan   { color: var(--cyan); }
.accent-green  { color: var(--green); }
.accent-purple { color: var(--purple-light); }
.accent-white  { color: #64748b; }
.accent-orange { color: #f97316; }
.accent-gold   { color: #eab308; }
html[data-theme="dark"] .accent-white  { color: #e2e8f0; }
html[data-theme="dark"] .accent-orange { color: #fb923c; }
html[data-theme="dark"] .accent-gold   { color: #facc15; }
.accent-teal   { color: #14b8a6; }
html[data-theme="dark"] .accent-teal   { color: #2dd4bf; }

.card-badge-promo {
  font-size: .62rem; font-weight: 700; letter-spacing: .05em;
  padding: 3px 9px; border-radius: 999px; flex-shrink: 0;
  white-space: nowrap; align-self: flex-start; margin-top: 2px;
  background: rgba(0,198,255,.1); color: var(--cyan); border: 1px solid rgba(0,198,255,.25);
}
.badge-green  { background: rgba(34,197,94,.1);  color: var(--green);        border-color: rgba(34,197,94,.25); }
.badge-purple { background: rgba(124,58,237,.12); color: var(--purple-light); border-color: rgba(124,58,237,.3); }
.badge-white  { background: rgba(255,255,255,.06); color: #cbd5e1;            border-color: rgba(255,255,255,.15); }
.badge-orange { background: rgba(249,115,22,.1);  color: #f97316;             border-color: rgba(249,115,22,.25); }
.badge-gold   { background: rgba(234,179,8,.1);   color: #eab308;             border-color: rgba(234,179,8,.25); }
.badge-teal   { background: rgba(20,184,166,.1);  color: #14b8a6;             border-color: rgba(20,184,166,.25); }

/* Features */
.card-features {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  flex: 1;
}
.card-features li { font-size: .855rem; color: var(--text-dim); display: flex; align-items: center; gap: 9px; }
.chk  { color: var(--green); font-size: .85rem; flex-shrink: 0; }
.lock { font-size: .85rem; flex-shrink: 0; }

/* Price area */
.card-price-area { padding: 16px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--border); }
.price-label { font-size: .65rem; letter-spacing: .1em; color: var(--text-dim); font-weight: 600; margin-bottom: 4px; }
.price-value {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900; line-height: 1;
  margin-bottom: 4px;
}
.price-cyan   { background: linear-gradient(90deg, var(--cyan), var(--cyan-deep)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-green  { background: linear-gradient(90deg, #22c55e, #16a34a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-purple { background: linear-gradient(90deg, var(--purple-light), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-white  { background: linear-gradient(90deg, #334155, #64748b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-orange { background: linear-gradient(90deg, #f97316, #ea580c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-gold   { background: linear-gradient(90deg, #eab308, #ca8a04); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html[data-theme="dark"] .price-white  { background: linear-gradient(90deg, #ffffff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html[data-theme="dark"] .price-orange { background: linear-gradient(90deg, #fb923c, #f97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html[data-theme="dark"] .price-gold   { background: linear-gradient(90deg, #facc15, #eab308); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-teal   { background: linear-gradient(90deg, #14b8a6, #0d9488); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html[data-theme="dark"] .price-teal   { background: linear-gradient(90deg, #2dd4bf, #14b8a6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-period { font-size: .76rem; color: var(--text-dim); }

/* Card button */
.card-btn {
  width: 100%; padding: 13px 20px; border-radius: var(--r);
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  letter-spacing: .04em; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-cyan {
  background: rgba(0,198,255,.1); border-color: rgba(0,198,255,.25); color: var(--cyan);
}
.chatgpt-card:hover .btn-cyan, .btn-cyan:hover {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  color: white; border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,114,255,.4);
}
.btn-green {
  background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.25); color: var(--green);
}
.spotify-card:hover .btn-green, .btn-green:hover {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white; border-color: transparent;
  box-shadow: 0 4px 20px rgba(34,197,94,.4);
}
.btn-white {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); color: #cbd5e1;
}
.capcut-card:hover .btn-white, .btn-white:hover {
  background: #1e293b; color: white; border-color: rgba(255,255,255,.2);
}
.btn-purple {
  background: rgba(124,58,237,.1); border-color: rgba(124,58,237,.25); color: var(--purple-light);
}
.canva-card:hover .btn-purple, .btn-purple:hover {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  color: white; border-color: transparent;
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
}
.btn-orange {
  background: rgba(249,115,22,.1); border-color: rgba(249,115,22,.25); color: #f97316;
}
.landing-card:hover .btn-orange, .btn-orange:hover {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white; border-color: transparent;
  box-shadow: 0 4px 20px rgba(249,115,22,.4);
}
.btn-gold {
  background: rgba(234,179,8,.1); border-color: rgba(234,179,8,.25); color: #ca8a04;
}
html[data-theme="dark"] .btn-gold { color: #eab308; }
.site-card:hover .btn-gold, .btn-gold:hover {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  color: #0a0a00; border-color: transparent;
  box-shadow: 0 4px 20px rgba(234,179,8,.4);
}
.btn-teal {
  background: rgba(20,184,166,.1); border-color: rgba(20,184,166,.25); color: #14b8a6;
}
html[data-theme="dark"] .btn-teal { color: #2dd4bf; }
.pack-canva-card:hover .btn-teal, .btn-teal:hover {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: white; border-color: transparent;
  box-shadow: 0 4px 20px rgba(20,184,166,.4);
}
/* ─── COMBO ─── */
.combo-section {
  position: relative; z-index: 1;
  padding: 0 24px 90px;
}
.combo-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(240,192,64,.05) 0%, var(--bg2) 50%, rgba(240,192,64,.04) 100%);
  border: 1px solid rgba(240,192,64,.2);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  text-align: center; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.combo-top-line {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 55%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.combo-card::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(240,192,64,.06) 0%, transparent 60%);
}
.combo-card:hover { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(240,192,64,.12); }

.combo-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 800;
  color: var(--gold); letter-spacing: .07em;
  margin-bottom: 10px;
  text-shadow: 0 0 24px rgba(240,192,64,.35);
}
.combo-sub { font-size: .85rem; color: var(--text-dim); margin-bottom: 40px; letter-spacing: .06em; text-transform: uppercase; }

.combo-produtos {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 36px;
}
.combo-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 22px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 130px;
}
.combo-item-img { width: 48px; height: 48px; border-radius: 12px; overflow: hidden; }
.combo-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.combo-item span { font-size: .88rem; font-weight: 600; color: var(--text); }
.combo-item small { font-size: .74rem; color: var(--text-dim); }
.combo-plus { font-family: var(--font-head); font-size: 2rem; color: var(--gold); opacity: .55; }

.combo-price-area { margin-bottom: 32px; }
.combo-os3 {
  display: block; font-size: .75rem; letter-spacing: .16em;
  color: var(--gold); opacity: .75; margin-bottom: 6px; text-transform: uppercase;
}
.combo-valor {
  display: block;
  font-family: var(--font-head); font-size: 3.8rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  text-shadow: 0 0 30px rgba(240,192,64,.4);
}
.combo-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), #d4a000);
  color: #0a0a00;
  border: none; border-radius: var(--r);
  padding: 16px 48px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  letter-spacing: .05em; cursor: pointer;
  box-shadow: 0 4px 24px rgba(240,192,64,.3);
  transition: transform .25s, box-shadow .25s;
}
.combo-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(240,192,64,.5); }

/* ─── MODAL / OVERLAY ─── */
.overlay {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.overlay.active { display: flex; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  max-width: 700px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  padding: 40px; position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,.7), 0 0 0 1px rgba(0,198,255,.06);
  animation: modalIn .38s cubic-bezier(.22,.68,0,1.15);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(28px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close-btn {
  position: absolute; top: 18px; right: 18px;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text-dim); width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.modal-close-btn:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* Modal inner */
.m-eyebrow { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.m-title { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.m-desc { font-size: .9rem; color: var(--text-dim); margin-bottom: 28px; line-height: 1.65; }
.m-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.m-feat {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 14px;
  display: flex; align-items: flex-start; gap: 10px;
}
.m-feat-ico { font-size: 1.1rem; flex-shrink: 0; }
.m-feat-txt { font-size: .84rem; color: var(--text-dim); line-height: 1.4; }
.m-feat-txt strong { display: block; font-weight: 600; color: var(--text); font-size: .86rem; margin-bottom: 2px; }
.m-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.m-plans { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.m-plan {
  flex: 1; min-width: 120px; border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 16px; cursor: pointer; position: relative;
  transition: border-color .2s, background .2s;
}
.m-plan.sel { border-color: var(--cyan); background: rgba(0,198,255,.06); }
.m-plan-lbl { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.m-plan-price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--cyan); }
.m-plan-sub   { font-size: .74rem; color: var(--text-dim); }
.m-plan-badge { position: absolute; top: -10px; right: 8px; background: var(--green); color: white; font-size: .63rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; }

/* PIX area */
.pix-valor-destaque {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,198,255,.06); border: 1px solid rgba(0,198,255,.18);
  border-radius: var(--r); padding: 16px 20px; margin-bottom: 14px;
}
.pix-valor-label { font-size: .82rem; font-weight: 600; color: var(--cyan); letter-spacing: .04em; }
.pix-valor-num {
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 900;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-deep));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pix-instrucao {
  background: rgba(240,192,64,.06); border: 1px solid rgba(240,192,64,.16);
  border-radius: var(--r); padding: 12px 16px;
  font-size: .82rem; color: #c9a84c; line-height: 1.6; margin-bottom: 22px;
}
.pix-instrucao strong { color: var(--gold); }
.pix-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text);
  margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.pix-title::before { content: ''; width: 4px; height: 18px; background: linear-gradient(var(--cyan), var(--cyan-deep)); border-radius: 2px; }
.pix-layout { display: flex; gap: 22px; align-items: flex-start; }
.pix-qr-box { background: white; border-radius: 14px; padding: 14px; display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.pix-qr-placeholder { width: 140px; height: 140px; background: #f0f0f0; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .72rem; color: #999; text-align: center; line-height: 1.5; }
.pix-qr-lbl { font-size: .68rem; color: #666; }
.pix-right { flex: 1; }
.pix-copy-lbl { font-size: .78rem; font-weight: 600; color: var(--text-dim); margin-bottom: 8px; }
.pix-code { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font-family: monospace; font-size: .73rem; color: var(--text-dim); word-break: break-all; line-height: 1.6; margin-bottom: 10px; }
.btn-copy {
  width: 100%; background: rgba(0,198,255,.1); border: 1px solid rgba(0,198,255,.25);
  color: var(--cyan); padding: 11px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .88rem;
  cursor: pointer; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s; margin-bottom: 8px;
}
.btn-copy:hover { background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)); color: white; border-color: transparent; }
.btn-copy.ok { background: linear-gradient(135deg, #16a34a, #15803d); color: white; border-color: transparent; }
.pix-note { text-align: center; font-size: .75rem; color: var(--text-dim); margin-top: 8px; }
.btn-wpp-modal {
  width: 100%; background: var(--green); color: white; border: none;
  border-radius: var(--r); padding: 15px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  cursor: pointer; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  text-decoration: none; margin-top: 20px;
  box-shadow: 0 4px 20px rgba(34,197,94,.25);
  transition: transform .2s, box-shadow .2s;
}
.btn-wpp-modal:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,197,94,.4); }

.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }

/* ─── REVIEWS ─── */
.social-section {
  position: relative; z-index: 1;
  padding: 90px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  transition: border-color .25s, transform .25s;
}
.review-card:hover { border-color: rgba(0,198,255,.15); transform: translateY(-4px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  color: white; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .9rem; color: var(--text); }
.review-product { font-size: .74rem; color: var(--cyan); margin-top: 2px; }
.review-stars { margin-left: auto; color: var(--gold); font-size: .9rem; letter-spacing: 1px; }
.review-text { font-size: .875rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.review-badge { font-size: .7rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; }

/* ─── FOOTER ─── */
.footer {
  position: relative; z-index: 1;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 24px;
  text-align: center;
}
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo-img {
  height: 36px; width: auto; display: block; object-fit: contain;
  opacity: .8;
}
.footer-logo-light { display: none; }
html[data-theme="light"] .footer-logo-dark { display: none; }
html[data-theme="light"] .footer-logo-light { display: block; }
.footer-tagline { font-size: .78rem; color: var(--text-dim); letter-spacing: .08em; text-transform: uppercase; }
.footer-desc { font-size: .84rem; color: var(--text-dim); }

/* Footer product tags coloridos */
.footer-products {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  max-width: 600px;
}
.fp-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid; text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.fp-tag:hover { transform: translateY(-2px); opacity: .85; }
.fp-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: currentColor;
}
.fp-chatgpt { color: #10a37f; background: rgba(16,163,127,.1);   border-color: rgba(16,163,127,.3);   }
.fp-spotify  { color: #1ed760; background: rgba(30,215,96,.1);    border-color: rgba(30,215,96,.3);    }
.fp-capcut   { color: #94a3b8; background: rgba(148,163,184,.08); border-color: rgba(148,163,184,.2);  }
.fp-canva    { color: #a78bfa; background: rgba(167,139,250,.1);  border-color: rgba(167,139,250,.3);  }
.fp-landing  { color: #f97316; background: rgba(249,115,22,.1);   border-color: rgba(249,115,22,.3);   }
.fp-site     { color: #eab308; background: rgba(234,179,8,.1);    border-color: rgba(234,179,8,.3);    }
.fp-packcanva{ color: #14b8a6; background: rgba(20,184,166,.1);   border-color: rgba(20,184,166,.3);   }
.fp-grok     { color: #818cf8; background: rgba(99,102,241,.1);   border-color: rgba(99,102,241,.3);   }
html[data-theme="light"] .fp-capcut { color: #475569; border-color: rgba(71,85,105,.2); background: rgba(71,85,105,.06); }

/* ─── SUPER GROK CARD ─── */
.card-glow-grok   { background: radial-gradient(circle, rgba(99,102,241,.15) 0%, transparent 70%); }
.grok-card:hover  { box-shadow: 0 24px 60px rgba(99,102,241,.22); border-color: rgba(99,102,241,.3); }
.grok-icon        { background: linear-gradient(135deg, #6366f1, #8b5cf6); border: none; box-shadow: 0 4px 16px rgba(99,102,241,.4); }
.accent-grok      { color: #818cf8; }
html[data-theme="dark"] .accent-grok  { color: #a5b4fc; }
.badge-grok       { background: rgba(99,102,241,.12); color: #818cf8; border-color: rgba(99,102,241,.3); }
.price-grok       { background: linear-gradient(90deg, #6366f1, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html[data-theme="dark"] .price-grok  { background: linear-gradient(90deg, #a5b4fc, #c4b5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.btn-grok         { color: #6366f1; border-color: rgba(99,102,241,.3); background: rgba(99,102,241,.07); }
html[data-theme="dark"] .btn-grok    { color: #a5b4fc; }
.grok-card:hover .btn-grok, .btn-grok:hover {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  border-color: transparent; color: #fff !important;
  box-shadow: 0 8px 24px rgba(99,102,241,.35);
}

.footer-bottom { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-copy { font-size: .74rem; color: var(--text-faint); }
.footer-wpp {
  display: flex; align-items: center; gap: 6px;
  font-size: .74rem; color: var(--green); text-decoration: none; font-weight: 500;
  transition: opacity .2s;
}
.footer-wpp:hover { opacity: .75; }
.footer-insta {
  display: flex; align-items: center; gap: 6px;
  font-size: .74rem; color: #e1306c; text-decoration: none; font-weight: 500;
  transition: opacity .2s;
}
.footer-insta:hover { opacity: .75; }
.footer-tiktok {
  display: flex; align-items: center; gap: 6px;
  font-size: .74rem; color: #69C9D0; text-decoration: none; font-weight: 500;
  transition: opacity .2s;
}
.footer-tiktok:hover { opacity: .75; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .header-badge { display: none; }
  .header-center { display: none; }
  .nav a:not(.nav-wpp) { display: none; }
  .hero { padding: 80px 20px 70px; }
  .or1 { width: 350px; height: 350px; }
  .or2 { width: 550px; height: 550px; }
  .od1 { margin-top: -174px; }
  .od2 { margin-top: -274px; }
  .steps-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-line { width: 2px; height: 24px; margin: 0 0 0 21px; }
  .step-item { padding: 8px 0; }
}
@media (max-width: 600px) {
  /* Header mobile */
  .header-inner { padding: 0 14px; height: 60px; gap: 10px; }
  .logo-img { height: 38px; }
  .header-right { gap: 10px; }
  .theme-toggle { width: 32px; height: 32px; flex-shrink: 0; }
  .nav-wpp {
    padding: 7px 12px !important;
    font-size: .78rem !important;
    gap: 5px !important;
  }
  .nav-wpp svg { width: 14px; height: 14px; }

  /* Steps */
  .steps-row { flex-direction: column; align-items: flex-start; padding: 0 16px; }
  .step-line { width: 1px; height: 24px; margin: 0 19px; }

  /* Modal */
  .m-features { grid-template-columns: 1fr; }
  .pix-layout { flex-direction: column; }
  .pix-qr-box { width: 100%; }
  .m-plans { flex-direction: column; }
  .modal { padding: 26px 20px; }

  /* Combo */
  .combo-card { padding: 36px 22px; }
  .combo-valor { font-size: 2.8rem; }
  .combo-produtos { flex-direction: column; align-items: center; gap: 8px; }
  .combo-plus { transform: rotate(90deg); }
  .combo-item { width: 200px; }

  /* Cards mobile — badge não corta mais */
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .prod-card { padding: 18px 16px; gap: 14px; }
  .card-header {
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }
  .card-icon { width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; }
  .card-icon img { width: 46px; height: 46px; }
  .landing-icon svg, .site-icon svg { width: 22px; height: 22px; }
  .card-title-wrap { flex: 1; min-width: 120px; }
  .card-name { font-size: .98rem; white-space: normal; word-break: normal; }
  .card-cat { font-size: .6rem; }
  .card-badge-promo {
    font-size: .58rem;
    padding: 3px 8px;
    flex-shrink: 0;
    white-space: nowrap;
    align-self: flex-start;
  }
  .price-value { font-size: 1.7rem; }
}
/* ══════════ BANNER ROTATIVO ══════════ */
.banner-rotativo-section {
  position: relative;
  z-index: 1;
  padding: 20px 0 60px;
}
.banner-rotativo-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  min-height: 200px;
}
.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity .5s ease, transform .5s ease;
}
.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  position: relative;
}
.banner-slide.exit {
  opacity: 0;
  transform: translateX(-40px);
  position: absolute;
}
.banner-slide-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  width: 100%;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  transition: border-color .4s;
}
.banner-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.banner-icon-cyan  { background: linear-gradient(135deg, rgba(0,198,255,.2), rgba(0,114,255,.2)); color: var(--cyan); border: 1px solid rgba(0,198,255,.25); }
.banner-icon-green { background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(16,185,129,.2)); color: var(--green); border: 1px solid rgba(34,197,94,.25); }
.banner-icon-purple{ background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(167,139,250,.2)); color: var(--purple-light); border: 1px solid rgba(124,58,237,.25); }
.banner-icon-gold  { background: linear-gradient(135deg, rgba(240,192,64,.2), rgba(251,146,60,.2)); color: var(--gold); border: 1px solid rgba(240,192,64,.25); }

.banner-slide-content { flex: 1; }
.banner-slide-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.banner-slide-num span { font-size: 2rem; }
.banner-slide-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.banner-slide-desc {
  font-size: .875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Dots */
.banner-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.banner-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background .3s, transform .3s, width .3s;
  padding: 0;
}
.banner-dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 4px;
}

/* Nav arrows */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
  z-index: 5;
}
.banner-nav:hover { background: var(--surface-hover); color: var(--cyan); border-color: rgba(0,198,255,.3); }
.banner-prev { left: -52px; }
.banner-next { right: -52px; }

/* ══════════ NOVA SEÇÃO COMO FUNCIONA ══════════ */
.steps-cards {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  width: 210px;
  text-align: center;
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  flex-shrink: 0;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,198,255,.3);
  box-shadow: 0 12px 40px rgba(0,198,255,.1);
}
.step-card-final {
  border-color: rgba(0,198,255,.25);
  background: linear-gradient(135deg, rgba(0,198,255,.06), rgba(124,58,237,.06));
}
.step-card-num {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.step-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,198,255,.12), rgba(124,58,237,.12));
  border: 1px solid rgba(0,198,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--cyan);
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card p {
  font-size: .8rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.step-connector {
  color: var(--text-faint);
  padding: 0 4px;
  flex-shrink: 0;
}

/* Light mode adjustments */
html[data-theme="light"] .banner-slide-inner {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* Responsive banner */
@media (max-width: 768px) {
  .banner-prev, .banner-next { display: none; }
  .banner-slide-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  .banner-slide-num { font-size: 2.2rem; }
  .steps-cards { gap: 8px; }
  .step-card { width: 100%; max-width: 340px; }
  .step-connector { transform: rotate(90deg); }
}

/* ── Super Grok hero slide ── */
.hb-glow-grok { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,121,249,.14) 0%, transparent 70%); }
.hb-pulse-grok { background: #e879f9; box-shadow: 0 0 8px #e879f9; }
.hb-icon-grok { background: linear-gradient(135deg,rgba(232,121,249,.18),rgba(167,139,250,.18)); border: 1.5px solid rgba(232,121,249,.3); box-shadow: 0 0 32px rgba(232,121,249,.15); }
.hb-btn-grok { background: linear-gradient(135deg,#e879f9,#a78bfa); color: #fff; box-shadow: 0 4px 20px rgba(232,121,249,.35); }
.hb-btn-grok:hover { box-shadow: 0 8px 32px rgba(232,121,249,.5); }
/* ── pulse cyan alias ── */
.hb-pulse-cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

/* ── ChatGPT card annual badge ── */
.card-annual-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: #00c6ff;
  background: rgba(0,198,255,.1);
  border: 1px solid rgba(0,198,255,.25);
  border-radius: 999px;
  padding: 5px 14px;
  margin-top: -8px;
  letter-spacing: .02em;
}

/* ── Modal plan annual highlight ── */
.m-plan-annual-highlight {
  background: linear-gradient(135deg, rgba(0,198,255,.08), rgba(124,58,237,.08));
  border: 1.5px solid rgba(0,198,255,.3) !important;
}
.m-custo-beneficio {
  background: linear-gradient(135deg, rgba(0,198,255,.07), rgba(124,58,237,.07));
  border: 1px solid rgba(0,198,255,.2);
  border-radius: var(--r);
  padding: 16px 18px;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.m-custo-beneficio-title {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.m-custo-beneficio-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.m-cb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-dim);
}
.m-cb-item strong { color: var(--text); }
.m-economy-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(90deg, rgba(0,198,255,.15), rgba(124,58,237,.15));
  border: 1px solid rgba(0,198,255,.25);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--cyan);
  margin-top: 4px;
  align-self: flex-start;
}
