/* ════════════════════════════════════════════
   ALBUMMIL · Design System
   ════════════════════════════════════════════ */

/* --- Tokens --- */
:root {
  --c-dark:     #211F2F;
  --c-blue:     #074170;
  --c-olive:    #7E9012;
  --c-yellow:   #FFF708;
  --c-green:    #16A34A;
  --c-white:    #F0EEE8;
  --c-text:     #DDD9EC;
  --c-muted:    rgba(221, 217, 236, 0.55);

  --f-display:  'Bebas Neue', sans-serif;
  --f-body:     'Plus Jakarta Sans', sans-serif;

  --r-card:     12px;
  --r-lg:       18px;
  --r-pill:     50px;

  --shadow-card:  0 4px 24px rgba(0,0,0,0.45);
  --shadow-float: 0 24px 64px rgba(0,0,0,0.55);

  --max-w: 1180px;
  --pad-section: 100px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-dark);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ════════════════════════════════════════════
   BOTÕES
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn--large { padding: 18px 38px; font-size: 17px; }

.btn--yellow {
  background: var(--c-yellow);
  color: var(--c-dark);
}
.btn--yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,247,8,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,247,8,0.35);
}
.btn--ghost:hover {
  border-color: var(--c-yellow);
  color: var(--c-yellow);
  transform: translateY(-2px);
}

.btn--glow { animation: glow-pulse 2.8s ease-in-out infinite; }

.btn--cta-main {
  padding: 22px 48px;
  font-size: 18px;
  letter-spacing: 0.3px;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,247,8,0.0); }
  50%       { box-shadow: 0 0 48px 10px rgba(255,247,8,0.25); }
}

/* ════════════════════════════════════════════
   TIPOGRAFIA DE SEÇÃO
   ════════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-olive);
  margin-bottom: 14px;
}
.section-eyebrow--yellow { color: var(--c-yellow); }

.section-headline {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.0;
  color: var(--c-white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.section-headline--white { color: #fff; }

.section-sub {
  font-size: 17px;
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 56px;
}
.section-sub--light { color: rgba(255,255,255,0.65); }

/* ════════════════════════════════════════════
   ANIMAÇÃO DE REVEAL
   ════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dashboard, .float-card,
  .copa-album, .cromo, .copa-ball, .copa-particle { animation: none !important; }
}

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.header.is-scrolled {
  background: rgba(33,31,47,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 0;
  box-shadow: 0 2px 28px rgba(0,0,0,0.45);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}
.logo__text {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--c-yellow);
}
.logo__img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.logo__fallback { display: flex; align-items: center; }

.nav { display: flex; gap: 20px; align-items: center; }
.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--c-yellow); }
.nav__cta-mobile { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(150deg, #071828 0%, #0d1020 40%, var(--c-dark) 70%, #120e20 100%);
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}

.hero__stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(7,65,112,0.07) 0px,
    rgba(7,65,112,0.07) 64px,
    transparent 64px,
    transparent 128px
  );
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(7,65,112,0.45) 0%, transparent 68%);
  pointer-events: none;
}

.hero__glow-green {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(22,163,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero__eyebrow { margin-bottom: 22px; }

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(126,144,18,0.18);
  border: 1px solid rgba(126,144,18,0.45);
  color: #b4c936;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.headline-accent { color: var(--c-yellow); }

.hero__sub {
  font-size: 18px;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 470px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Selos hero */
.hero__seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 28px;
}
.hero-seal {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(221,217,236,0.65);
}
.hero-seal svg { color: var(--c-green); flex-shrink: 0; }

/* Oferta hero */
.hero__offer {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.4);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}

.offer-badge__dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0); }
  50%       { transform: scale(1.25); opacity: 0.85; box-shadow: 0 0 0 5px rgba(74,222,128,0.15); }
}

.hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__price-value {
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 48px);
  color: var(--c-yellow);
  line-height: 1;
  letter-spacing: 1px;
}
.hero__price-detail { font-size: 14px; color: var(--c-muted); }

.hero__proof { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.proof__avatars { display: flex; }
.proof__av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-right: -9px;
}
.proof__text { font-size: 13px; color: var(--c-muted); padding-left: 14px; }
.proof__text strong { color: var(--c-white); }

/* ═══ DASHBOARD MOCKUP ═══ */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.dashboard {
  width: 100%;
  max-width: 440px;
  background: rgba(10,14,28,0.92);
  border: 1px solid rgba(255,247,8,0.16);
  border-radius: 20px;
  box-shadow: var(--shadow-float), 0 0 60px rgba(7,65,112,0.25);
  overflow: hidden;
  animation: float 4.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

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

.dash__topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dash__topbar-dots { display: flex; gap: 5px; }
.dash__topbar-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.dash__topbar-dots span:nth-child(1) { background: #e05252; }
.dash__topbar-dots span:nth-child(2) { background: var(--c-yellow); }
.dash__topbar-dots span:nth-child(3) { background: #6dbf6d; }
.dash__topbar-title {
  font-size: 12px;
  color: var(--c-muted);
  background: rgba(255,255,255,0.05);
  padding: 3px 10px;
  border-radius: 4px;
  margin: 0 auto;
}

.dash__body { padding: 18px; }

.dash__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dash__album-name { font-weight: 700; font-size: 14px; color: var(--c-white); }
.dash__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #6dbf6d;
  margin-top: 3px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #6dbf6d;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}
.dash__trophy-icon {
  color: var(--c-yellow);
  display: flex;
  align-items: center;
  filter: drop-shadow(0 0 6px rgba(255,247,8,0.4));
}

.dash__progress-wrap { margin-bottom: 16px; }
.dash__progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--c-muted);
  margin-bottom: 7px;
}
.dash__pct { font-weight: 800; color: #a8c022; }
.dash__progress-track {
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 50px;
  overflow: hidden;
}
.dash__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--c-green), #a8c022, var(--c-yellow));
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dash__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 9px;
  margin-bottom: 14px;
}
.dash__stat {
  background: rgba(255,255,255,0.035);
  border-radius: var(--r-card);
  padding: 11px 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.2s ease;
}
.dash__stat:hover { transform: scale(1.03); }
.dash__stat--green { border-top: 2px solid var(--c-green); }
.dash__stat--red   { border-top: 2px solid #e05252; }
.dash__stat--yellow{ border-top: 2px solid var(--c-yellow); }

.dash__stat-num {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 2px;
}
.dash__stat--green  .dash__stat-num { color: var(--c-green); }
.dash__stat--red    .dash__stat-num { color: #e05252; }
.dash__stat--yellow .dash__stat-num { color: var(--c-yellow); }
.dash__stat-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--c-muted); }

/* Tabs de categoria */
.dash__tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 11px;
  overflow-x: auto;
  scrollbar-width: none;
}
.dash__tabs::-webkit-scrollbar { display: none; }
.dash__tab {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--c-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.dash__tab--active {
  background: rgba(7,65,112,0.5);
  border-color: rgba(7,65,112,0.8);
  color: #90c4f0;
}

/* Cards de figurinha */
.dash__stickers {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 7px;
  margin-bottom: 14px;
}
.sm {
  aspect-ratio: 3/4;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  position: relative;
  transition: transform 0.18s ease;
  cursor: default;
  overflow: hidden;
}
.sm:hover { transform: scale(1.14) translateY(-3px); }
.sm--found   { background: rgba(7,65,112,0.65); border: 1px solid rgba(255,247,8,0.22); }
.sm--missing { background: rgba(255,255,255,0.025); border: 1px dashed rgba(255,255,255,0.12); }
.sm--repeat  { background: rgba(255,247,8,0.12); border: 1px solid rgba(255,247,8,0.4); }
.sm--special { background: linear-gradient(135deg, rgba(22,163,74,0.3), rgba(7,65,112,0.5)); border: 1px solid rgba(22,163,74,0.5); }

.sm__country {
  font-size: 8.5px;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  line-height: 1;
  text-transform: uppercase;
}
.sm__country--miss { color: rgba(255,255,255,0.2); font-size: 12px; }
.sm__country--special { color: #4ade80; }
.sm__code {
  font-size: 7.5px;
  color: var(--c-muted);
  text-align: center;
  line-height: 1;
}

.sm__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 7px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
  line-height: 1.4;
}
.sm__special-dot {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #4ade80;
  border-radius: 50%;
}

/* Lista de troca */
.dash__trade {
  background: rgba(126,144,18,0.1);
  border: 1px solid rgba(126,144,18,0.26);
  border-radius: var(--r-card);
  padding: 11px;
}
.dash__trade-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #a8c022;
  margin-bottom: 8px;
}
.dash__trade-tags  { display: flex; flex-wrap: wrap; gap: 5px; }
.tag {
  background: rgba(126,144,18,0.18);
  border: 1px solid rgba(126,144,18,0.35);
  color: #a8c022;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 600;
}
.tag--more {
  background: rgba(255,247,8,0.1);
  border-color: rgba(255,247,8,0.4);
  color: var(--c-yellow);
}

/* Float cards */
.float-card {
  position: absolute;
  background: rgba(10,14,28,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,247,8,0.18);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 3;
  pointer-events: none;
}
.float-card--top    { top: 16px; right: -55px; animation: float 5s ease-in-out infinite 0.8s; }
.float-card--bottom { bottom: 60px; left: -55px; animation: float 5.5s ease-in-out infinite 0.3s; }

.float-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.35);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card__text { display: flex; flex-direction: column; font-size: 12px; }
.float-card__text strong { color: var(--c-white); font-size: 13px; }
.float-card__text span   { color: var(--c-muted); }

/* ════════════════════════════════════════════
   COPA HERO SCENE
   ════════════════════════════════════════════ */
.copa-scene {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copa-field-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.copa-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.copa-glow--blue {
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(7,65,112,0.55) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(44px);
}
.copa-glow--green {
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.22) 0%, transparent 70%);
  bottom: 8%;
  right: 6%;
  filter: blur(32px);
}

/* Album central */
.copa-album {
  position: relative;
  z-index: 5;
  width: 196px;
  background: linear-gradient(160deg, #0a2548 0%, #0d3765 100%);
  border: 1.5px solid rgba(255,247,8,0.28);
  border-radius: 16px;
  padding: 16px 14px 18px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 56px rgba(7,65,112,0.32), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: float 4.5s ease-in-out infinite;
  overflow: hidden;
}
.copa-album__stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-yellow), var(--c-olive), var(--c-green));
}
.copa-album__crown {
  color: var(--c-yellow);
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 8px rgba(255,247,8,0.55));
}
.copa-album__title {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--c-yellow);
  line-height: 1;
  margin-bottom: 2px;
}
.copa-album__year {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.copa-album__ring {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
.copa-album__ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.copa-album__pct {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--c-yellow);
  line-height: 1;
}
.copa-album__pct-sub {
  font-size: 8.5px;
  color: rgba(255,255,255,0.3);
}
.copa-album__stats {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.22);
  border-radius: 8px;
  padding: 7px 4px;
}
.copa-album__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.copa-album__stat-num {
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 1;
}
.copa-album__stat-num--green { color: var(--c-green); }
.copa-album__stat-num--red   { color: #e05252; }
.copa-album__stat-num--yellow{ color: var(--c-yellow); }
.copa-album__stat-lbl {
  font-size: 8px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.copa-album__divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* Cromos flutuantes */
.cromo-outer {
  position: absolute;
  transform: rotate(var(--rot, 0deg));
  z-index: 4;
  cursor: default;
}
.cromo-outer:hover { z-index: 10; }
.cromo-outer--1 { top: 6%;  left: 4%; }
.cromo-outer--2 { top: 3%;  right: 7%; }
.cromo-outer--3 { top: 41%; right: 0%; }
.cromo-outer--4 { bottom: 9%;  right: 6%; }
.cromo-outer--5 { bottom: 5%;  left: 6%; }
.cromo-outer--6 { top: -1%; left: 33%; }

.cromo {
  width: 66px;
  height: 86px;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.58), 0 2px 4px rgba(0,0,0,0.3);
  animation: float-cromo var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
  transition: filter 0.25s ease, box-shadow 0.25s ease;
}
.cromo--special {
  outline: 1.5px solid rgba(255,247,8,0.55);
  box-shadow: 0 8px 24px rgba(0,0,0,0.58), 0 0 18px rgba(255,247,8,0.2);
}
.cromo-outer:hover .cromo {
  filter: brightness(1.14) saturate(1.2);
  box-shadow: 0 20px 44px rgba(0,0,0,0.72), 0 0 32px rgba(255,247,8,0.3);
}

@keyframes float-cromo {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.cromo__hd {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
  color: #fff;
}
.cromo__hd--yellow { background: var(--c-yellow); color: var(--c-dark); }
.cromo__hd--sky    { background: #4A90D9; }
.cromo__hd--navy   { background: #002395; }
.cromo__hd--red    { background: #c80027; }
.cromo__hd--gold   { background: linear-gradient(135deg, #8B6914, #D4AF37); color: #1a1000; font-size: 8.5px; }

.cromo__body {
  flex: 1;
  background: #f0ece3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.cromo__num {
  font-family: var(--f-display);
  font-size: 20px;
  color: #1a1020;
  line-height: 1;
  letter-spacing: 1px;
}
.cromo__stars {
  font-size: 8px;
  color: #c49a00;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Bola de futebol */
.copa-ball {
  position: absolute;
  bottom: 5%;
  left: 40%;
  z-index: 3;
  opacity: 0.82;
  animation: roll-ball 20s linear infinite;
}
@keyframes roll-ball {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-10px) rotate(180deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

/* Partículas */
.copa-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 6;
}
@keyframes ptcl-float {
  0%, 100% { opacity: 0.3; transform: translateY(0) scale(1); }
  50%       { opacity: 1;   transform: translateY(-14px) scale(1.3); }
}
.copa-particle--1 {
  width: 6px; height: 6px;
  background: var(--c-yellow);
  top: 22%; right: 27%;
  animation: ptcl-float 2.8s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,247,8,1);
}
.copa-particle--2 {
  width: 4px; height: 4px;
  background: var(--c-green);
  top: 64%; right: 16%;
  animation: ptcl-float 3.5s ease-in-out infinite 0.7s;
  box-shadow: 0 0 6px rgba(22,163,74,1);
}
.copa-particle--3 {
  width: 5px; height: 5px;
  background: var(--c-yellow);
  bottom: 27%; left: 19%;
  animation: ptcl-float 4s ease-in-out infinite 1.2s;
  box-shadow: 0 0 8px rgba(255,247,8,1);
}
.copa-particle--4 {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.7);
  top: 13%; left: 40%;
  animation: ptcl-float 3.2s ease-in-out infinite 0.4s;
}

/* Onda inferior hero */
.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
}
.hero__wave svg { width: 100%; height: auto; display: block; }

/* ════════════════════════════════════════════
   SEÇÃO PROBLEMA
   ════════════════════════════════════════════ */
.section-problem {
  padding: var(--pad-section) 0;
  background: #0c0b14;
}
.section-problem .section-eyebrow,
.section-problem .section-headline,
.section-problem .section-sub { text-align: center; }
.section-problem .section-sub { margin: 0 auto 56px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.problem-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.problem-card:hover {
  border-color: rgba(255,247,8,0.2);
  transform: translateY(-5px);
  background: rgba(255,255,255,0.04);
}
.problem-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(7,65,112,0.3);
  border: 1px solid rgba(7,65,112,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--c-olive);
  transition: background 0.25s;
}
.problem-card:hover .problem-card__icon {
  background: rgba(126,144,18,0.15);
  border-color: rgba(126,144,18,0.35);
}
.problem-card h3 { font-size: 16px; font-weight: 700; color: var(--c-white); margin-bottom: 8px; }
.problem-card p  { font-size: 14px; color: var(--c-muted); line-height: 1.65; }

/* ════════════════════════════════════════════
   SEÇÃO TRANSFORMAÇÃO / SOLUÇÃO
   ════════════════════════════════════════════ */
.section-solution {
  padding: var(--pad-section) 0;
  background: linear-gradient(140deg, #062e53 0%, #041f3a 60%, #0a1a2e 100%);
  position: relative;
  overflow: hidden;
}
.section-solution::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(22,163,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.sli-check { color: var(--c-green); flex-shrink: 0; margin-top: 1px; }

/* Album card visual */
.solution__visual { display: flex; justify-content: center; }
.album-card {
  background: linear-gradient(160deg, #0a2548 0%, #0d3765 100%);
  border: 1.5px solid rgba(255,247,8,0.25);
  border-radius: 18px;
  padding: 28px;
  width: 290px;
  text-align: center;
  box-shadow: var(--shadow-float);
  position: relative;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}
.album-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-yellow), var(--c-olive), var(--c-green));
}
.album-card__stripe { margin-bottom: 10px; }
.album-card__title {
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: 3.5px;
  color: var(--c-yellow);
  margin-top: 10px;
  margin-bottom: 4px;
}
.album-card__sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.album-card__ring {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
}
.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-pct  { font-family: var(--f-display); font-size: 28px; color: var(--c-yellow); line-height: 1; }
.ring-text { font-size: 10px; color: rgba(255,255,255,0.4); }

.album-card__stickers {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 5px;
}
.as { aspect-ratio: 2/3; border-radius: 3px; }
.as--filled { background: rgba(7,65,112,0.8); border: 1px solid rgba(255,247,8,0.25); }
.as--empty  { background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.1); }

/* ════════════════════════════════════════════
   SEÇÃO RECURSOS — FIGURINHA CARDS
   ════════════════════════════════════════════ */
.section-features {
  padding: var(--pad-section) 0;
  background: var(--c-dark);
}
.section-features .section-eyebrow,
.section-features .section-headline,
.section-features .section-sub { text-align: center; }
.section-features .section-sub { margin: 0 auto 56px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

/* Cromo / Figurinha card */
.fig-card {
  background: #f5f1ea;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 3px 0 rgba(0,0,0,0.12), var(--shadow-card);
  cursor: default;
}
.fig-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.65), 0 0 32px rgba(255,247,8,0.12);
}

.fig-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255,247,8,0.08) 45%,
    rgba(126,144,18,0.06) 55%,
    transparent 72%
  );
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 0.4s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 4;
}
.fig-card:hover .fig-card__shine {
  opacity: 1;
  transform: translateX(30%);
}

.fig-card--rare {
  border: 2px solid rgba(255,247,8,0.55);
  box-shadow: 0 3px 0 rgba(0,0,0,0.12), var(--shadow-card), 0 0 24px rgba(255,247,8,0.1);
}

.fig-card__header {
  padding: 18px 18px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.fig-card__header--blue  { background: var(--c-blue); }
.fig-card__header--olive { background: var(--c-olive); }
.fig-card__header--yellow{ background: var(--c-yellow); }

.fig-card__num {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 1.5px;
  line-height: 1;
}
.fig-card__header--blue  .fig-card__num { color: rgba(255,255,255,0.3); }
.fig-card__header--olive .fig-card__num { color: rgba(255,255,255,0.35); }
.fig-card__header--yellow .fig-card__num { color: rgba(33,31,47,0.3); }

.fig-card__icon { font-size: 34px; }
.fig-card__header--blue   .fig-card__icon svg { color: rgba(255,255,255,0.85); }
.fig-card__header--olive  .fig-card__icon svg { color: rgba(255,255,255,0.85); }
.fig-card__header--yellow .fig-card__icon svg { color: rgba(33,31,47,0.7); }

.fig-card__body { padding: 18px; background: #f5f1ea; }

.fig-card__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.fig-card__desc { font-size: 13px; color: #5a5060; line-height: 1.6; }

.fig-card__rare-badge {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 7px;
}

/* ════════════════════════════════════════════
   SEÇÃO ANTES E DEPOIS
   ════════════════════════════════════════════ */
.section-comparison {
  padding: var(--pad-section) 0;
  background: #0c0b14;
}
.section-comparison .section-eyebrow,
.section-comparison .section-headline { text-align: center; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 56px;
}

.comparison-card {
  border-radius: var(--r-lg);
  padding: 28px;
  height: 100%;
}
.comparison-card--before {
  background: rgba(224,82,82,0.05);
  border: 1px solid rgba(224,82,82,0.18);
}
.comparison-card--after {
  background: rgba(22,163,74,0.05);
  border: 1px solid rgba(22,163,74,0.22);
}

.comp-label {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 3px;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.comp-label--before { background: rgba(224,82,82,0.12); color: #e05252; }
.comp-label--after  { background: rgba(22,163,74,0.15); color: #4ade80; }

.comp-chaos { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.chaos-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--c-muted);
}
.chaos-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: rgba(224,82,82,0.7);
}
.chaos-item strong { display: block; color: var(--c-white); margin-bottom: 4px; font-size: 13px; }
.chaos-item small  { font-size: 12px; line-height: 1.5; opacity: 0.7; }

.comp-quote { font-size: 14px; color: var(--c-muted); font-style: italic; line-height: 1.65; }

.comp-organized { margin-bottom: 20px; }
.mini-ui {
  background: rgba(10,14,28,0.8);
  border: 1px solid rgba(22,163,74,0.22);
  border-radius: var(--r-card);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mini-ui__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.mini-ui__row svg { color: var(--c-olive); flex-shrink: 0; }
.mini-ui__row--highlight { color: #4ade80; }
.mini-ui__row--highlight svg { color: #4ade80; }

.mini-ui__progress { display: flex; align-items: center; gap: 10px; }
.mini-ui__track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 50px;
  overflow: hidden;
}
.mini-ui__fill {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--c-green), var(--c-olive), #a8c022);
  border-radius: 50px;
}
.mini-ui__progress span { font-size: 12px; font-weight: 700; color: var(--c-olive); white-space: nowrap; }

.comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 8px 0;
  min-width: 52px;
  color: var(--c-yellow);
  opacity: 0.6;
}

/* ════════════════════════════════════════════
   SEÇÃO COMO FUNCIONA
   ════════════════════════════════════════════ */
.section-howto {
  padding: var(--pad-section) 0;
  background: var(--c-dark);
}
.section-howto .section-eyebrow,
.section-howto .section-headline { text-align: center; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 56px;
}

.step-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 44px;
  color: rgba(255,247,8,0.3);
}

.step-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 32px 26px 28px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.step-card:hover {
  border-color: rgba(255,247,8,0.2);
  transform: translateY(-5px);
  background: rgba(255,255,255,0.04);
}
.step-num {
  position: absolute;
  top: -22px;
  left: 26px;
  font-family: var(--f-display);
  font-size: 56px;
  color: var(--c-yellow);
  line-height: 1;
  opacity: 0.85;
  text-shadow: 0 0 20px rgba(255,247,8,0.3);
}
.step-icon  {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(7,65,112,0.3);
  border: 1px solid rgba(7,65,112,0.5);
  margin-top: 24px;
  margin-bottom: 16px;
  color: var(--c-yellow);
}
.step-title { font-size: 18px; font-weight: 800; color: var(--c-white); margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--c-muted); line-height: 1.7; }

/* ════════════════════════════════════════════
   SEÇÃO BENEFÍCIO COMERCIAL
   ════════════════════════════════════════════ */
.section-benefit {
  padding: var(--pad-section) 0;
  background: linear-gradient(150deg, #041e37 0%, #0a1620 50%, var(--c-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-benefit::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 45%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(22,163,74,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.section-benefit .section-headline,
.section-benefit .section-sub { text-align: center; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 56px;
}
.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.benefit-card:hover {
  border-color: rgba(255,247,8,0.2);
  transform: translateY(-5px);
  background: rgba(255,255,255,0.05);
}
.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--c-yellow);
  transition: background 0.25s;
}
.benefit-card:hover .benefit-card__icon {
  background: rgba(22,163,74,0.2);
  border-color: rgba(22,163,74,0.4);
}
.benefit-card h3 { font-size: 16px; font-weight: 700; color: var(--c-white); margin-bottom: 8px; }
.benefit-card p  { font-size: 14px; color: var(--c-muted); line-height: 1.65; }

/* ════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════ */
.section-cta {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #071c35 0%, #041228 50%, var(--c-dark) 100%);
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,247,8,0.012) 0,
    rgba(255,247,8,0.012) 1px,
    transparent 1px,
    transparent 56px
  );
  pointer-events: none;
}
.cta__radial {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 20%, rgba(7,65,112,0.45) 0%, transparent 65%);
  pointer-events: none;
}

.cta__inner { position: relative; z-index: 1; }

.cta__stamp {
  display: inline-block;
  border: 2px solid rgba(255,247,8,0.5);
  color: var(--c-yellow);
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 4px;
  padding: 7px 20px;
  border-radius: 5px;
  transform: rotate(-1.5deg);
  margin-bottom: 30px;
  animation: pulse-stamp 3s ease-in-out infinite;
}
@keyframes pulse-stamp {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,247,8,0); }
  50%       { box-shadow: 0 0 20px 4px rgba(255,247,8,0.15); }
}
.cta__headline {
  font-family: var(--f-display);
  font-size: clamp(42px, 6vw, 76px);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 18px;
}
.cta__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* Bloco de preço */
.cta__price-block {
  margin: 0 auto 36px;
  max-width: 480px;
}
.cta__old-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2px;
}
.cta__old-strike {
  font-family: var(--f-display);
  font-size: 30px;
  color: rgba(255,255,255,0.22);
  text-decoration: line-through;
  letter-spacing: 1px;
}
.cta__discount-badge {
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.35);
  color: #4ade80;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  letter-spacing: 1.5px;
}
.cta__price-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.cta__price-value {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 100px);
  color: var(--c-yellow);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 30px rgba(255,247,8,0.3));
}
.cta__price-value strong {
  font-family: inherit;
  font-weight: 400;
}
.cta__price-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cta__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.28);
  color: #4ade80;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.cta__pill svg { color: var(--c-green); }

/* Garantia CTA */
.cta__guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 18px 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta__guarantee-icon {
  color: var(--c-green);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(22,163,74,0.4));
}
.cta__guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.cta__guarantee-text strong {
  font-size: 15px;
  color: var(--c-white);
  font-weight: 700;
}
.cta__guarantee-text span {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════ */
.trust-bar {
  background: #0c0b14;
  border-top: 1px solid rgba(22,163,74,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 28px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.trust-item:last-child { border-right: none; }
.trust-item__icon {
  color: var(--c-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.trust-item__text { display: flex; flex-direction: column; gap: 2px; }
.trust-item__text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-white);
  white-space: nowrap;
}
.trust-item__text span {
  font-size: 12px;
  color: var(--c-muted);
  white-space: nowrap;
}

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.section-faq {
  padding: var(--pad-section) 0;
  background: var(--c-dark);
}
.section-faq .section-eyebrow,
.section-faq .section-headline { text-align: center; }

.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.is-open { border-color: rgba(255,247,8,0.28); background: rgba(255,247,8,0.02); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--c-yellow); }

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--c-yellow);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: inline-block;
  line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a.is-open { max-height: 220px; }
.faq-a p {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  padding: 52px 0 40px;
  background: #0c0b14;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.footer__brand { margin-right: auto; }
.footer__tagline { font-size: 12px; color: var(--c-muted); margin-top: 5px; }

.footer__logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
  margin-bottom: 5px;
}
.footer__logo-fallback {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--c-yellow);
  display: block;
  margin-bottom: 5px;
}

.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer__nav a {
  font-size: 14px;
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--c-yellow); }

.footer__seals {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-seal {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(221,217,236,0.45);
}
.footer-seal svg { color: var(--c-green); }

.footer__copy {
  width: 100%;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  margin-top: 8px;
}

/* ════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .step-connector { display: none; }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .float-card    { display: none; }
  .copa-scene    { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --pad-section: 72px; }

  .header__cta { display: none; }
  .hamburger   { display: flex; }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(33,31,47,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 200;
  }
  .nav.is-open { display: flex; }
  .nav__link   { font-size: 22px; color: var(--c-white); }
  .nav__cta-mobile { display: inline-flex; }

  .hero { padding: 110px 0 80px; align-items: flex-start; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }
  .hero__headline { font-size: clamp(44px, 12vw, 60px); }
  .hero__sub      { margin: 0 auto 32px; }
  .hero__ctas     { justify-content: center; }
  .hero__proof    { justify-content: center; }
  .proof__text    { padding-left: 18px; }
  .hero__seals    { justify-content: center; }

  .copa-scene     { height: 400px; max-width: 390px; margin: 0 auto; }
  .cromo-outer--3 { display: none; }
  .copa-album     { width: 168px; }
  .copa-ball      { left: 44%; }

  .problem-grid     { grid-template-columns: 1fr; }
  .solution__grid   { grid-template-columns: 1fr; gap: 44px; }
  .features-grid    { grid-template-columns: 1fr; }
  .benefit-grid     { grid-template-columns: 1fr; }

  .comparison-grid  {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .comparison-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    justify-self: center;
    justify-content: center;
    min-width: unset;
  }

  .cta__guarantee { flex-direction: column; text-align: center; }
  .cta__guarantee-text { text-align: center; }

  .trust-items {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 0;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0;
    width: 100%;
  }
  .trust-item:last-child { border-bottom: none; }

  .footer__inner  { flex-direction: column; align-items: center; text-align: center; }
  .footer__brand  { margin-right: 0; }
  .footer__nav    { justify-content: center; }
  .footer__seals  { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 42px; }
  .hero__ctas     { flex-direction: column; align-items: center; }
  .copa-scene     { height: 340px; }
  .cromo-outer--4, .cromo-outer--5 { display: none; }
  .copa-ball      { left: 46%; }
  .trust-items    { padding: 0 16px; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--c-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
