/* ===========================================================
   COLEÇÃO MODÃO SERTANEJO — Design rebuild
   Paleta:
   #121212 bg dark     #1C130D bg warm    #ffcc00 accent
   #22c55e CTA green   #E8DCC0 cream text #999/#666 muted
   Fonts: Inter (400/600/700/800) + Montserrat (700/900) — auto-hospedadas
   =========================================================== */

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700 900;
  font-display: swap;
}

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

:root {
  --bg-dark: #121212;
  --bg-warm: #1C130D;
  --accent: #ffcc00;
  --cta: #22c55e;
  --cta-glow: rgba(34, 197, 94, 0.4);
  --text-cream: #E8DCC0;
  --text-muted: #999;
  --text-dim: #666;
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --hero-grad: radial-gradient(circle at 50% 0%, #3a2415, #121212);
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ANIMAÇÕES ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.2); }
}
@keyframes slideMarquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to  { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 10px 30px var(--cta-glow); }
  50% { box-shadow: 0 20px 50px var(--cta-glow); }
}
@keyframes popupFade {
  from { opacity: 0; transform: translateY(8px); }
  to  { opacity: 1; transform: translateY(0); }
}

/* ===== BARRA DE URGÊNCIA ===== */
.urgency-bar {
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 800;
  font-size: clamp(0.75rem, 2.5vw, 0.95rem);
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(0,0,0,.15);
}
.urgency-bar-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d10000;
  display: inline-block;
  animation: pulse 1.4s infinite;
}

/* ===== TÍTULOS DE SEÇÃO ===== */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.title-underline {
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-cream);
  font-weight: 500;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.section-subtitle strong { color: var(--accent); font-weight: 700; }
.section-subtitle em { color: #fff; font-style: italic; font-weight: 600; }

/* ===== HERO ===== */
.hero {
  background: var(--hero-grad);
  text-align: center;
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 204, 0, 0.05), transparent 50%),
    radial-gradient(ellipse at 10% 30%, rgba(34,197,94,.04), transparent 40%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  font-size: clamp(0.72rem, 2.5vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 9px 22px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.5px;
  max-width: 980px;
  margin: 0 auto 32px;
  text-align: center;
}
.hl-intro {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  color: var(--text-cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hl-zap {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  font-weight: 900;
  color: var(--cta);
  text-shadow: 0 0 18px rgba(34, 197, 94, 0.5);
  margin: 0 3px;
  transform: translateY(3px);
}
.hl-big {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255, 204, 0, 0.25);
  margin: 16px 0 8px;
  letter-spacing: -0.5px;
}
.hl-era {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: #c9a85a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hl-mid {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 2.4vw, 1.3rem);
  color: #fff;
  line-height: 1.35;
}
.hl-mid:last-of-type {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.hl-price {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 28px rgba(255, 204, 0, 0.45), 0 0 14px rgba(255, 204, 0, 0.25);
  margin-top: 10px;
  letter-spacing: -1px;
}
.hero-video-wrap {
  position: relative;
  width: min(406px, 100%);
  margin: 24px auto 32px;
  padding: 3px;
  border: 1px solid rgba(255, 204, 0, 0.34);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(255, 204, 0, 0.18),
    0 0 70px rgba(255, 204, 0, 0.08);
  background: #000;
}
.hero-video-wrap vturb-smartplayer {
  border-radius: 20px;
  overflow: hidden;
}
.hero-description {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 500;
  color: var(--text-cream);
  max-width: 700px;
  margin: 0 auto 22px;
}
.hero-description strong { color: var(--accent); font-weight: 700; }
.hero-description em { color: #c9a85a; font-style: italic; font-weight: 600; }
.hero-description-2 {
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.92rem, 2.3vw, 1.08rem);
  max-width: 680px;
  margin-bottom: 28px;
}
.hero-cta-button {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 3vw, 1.25rem);
  padding: 18px 42px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px var(--cta-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-cta-button:hover { transform: translateY(-3px); box-shadow: 0 20px 45px var(--cta-glow); }
.hero-bullets {
  list-style: none;
  margin: 18px auto 0;
  max-width: 420px;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.hero-bullets li {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.88rem, 2.2vw, 1.05rem);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== CATEGORIAS ===== */
.nostalgia-section {
  background: var(--bg-warm);
  padding: 72px 0;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.category-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background-color: #1a1410;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.category-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.55);
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}
.category-card h3 {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  z-index: 1;
}

/* ===== ARTISTAS ===== */
.artists-section {
  background: var(--bg-dark);
  padding: 80px 0;
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.artist-column {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 26px 24px;
  transition: background 0.3s, border-color 0.3s;
}
.artist-column:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
}
.artist-column h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--accent);
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 204, 0, 0.25);
}
.artist-column ul { list-style: none; }
.artist-column li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #ccc;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}
.artist-column li:last-child { border-bottom: none; }

/* ===== BULLETS STACK ===== */
.bullets-stack {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 204, 0, 0.06), transparent 60%),
    var(--bg-dark);
  padding: 88px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.bullets-title {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1.5rem, 4.2vw, 2.4rem);
  letter-spacing: -0.5px;
}
.bullets-grid {
  list-style: none;
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bullets-grid li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 204, 0, 0.12);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 18px 22px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s ease, box-shadow 0.25s;
}
.bullets-grid li:hover {
  background: rgba(255, 204, 0, 0.06);
  border-color: rgba(255, 204, 0, 0.35);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.08);
}
.bullet-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.08);
  border: 1.5px solid rgba(255, 204, 0, 0.25);
  color: var(--accent);
}
.bullet-icon svg {
  width: 22px;
  height: 22px;
}
.bullet-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  color: #ddd;
  line-height: 1.55;
  padding-top: 8px;
}
.bullet-text strong {
  color: var(--accent);
  font-weight: 800;
}

/* ===== BÔNUS ===== */
.bonus-section {
  background: var(--bg-warm);
  padding: 80px 0;
  position: relative;
}
.bonus-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 204, 0, 0.04), transparent 50%);
  pointer-events: none;
}
.bonus-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}
.bonus-image-wrap { position: relative; }
.bonus-mockup {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 18px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
  display: block;
}
.bonus-badge {
  position: absolute;
  top: -22px;
  left: -16px;
  background: var(--accent);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px 24px;
  border-radius: 999px;
  transform: rotate(-8deg);
  z-index: 2;
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}
.bonus-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.bonus-desc {
  color: var(--text-cream);
  font-weight: 500;
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.bonus-urgency {
  color: #ffcc00;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: -8px 0 12px;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.35);
}
.bonus-list { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.bonus-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: #fff;
  font-weight: 600;
  font-size: 1.02rem;
  background: rgba(255, 204, 0, 0.06);
  border: 1px solid rgba(255, 204, 0, 0.18);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  line-height: 1.4;
}
.bonus-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.12);
}
.bonus-price .strike { text-decoration: line-through; color: #e53935; font-weight: 700; }
.bonus-price strong {
  color: var(--cta);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1.2rem;
  text-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

/* ===== FEEDBACK ===== */
.testimonials {
  background: var(--bg-dark);
  padding: 80px 0;
}
.fb-container {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-warm);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border-soft);
}
.fb-header {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 8px;
}
.fb-comment {
  display: flex;
  gap: 12px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.fb-comment:last-child { border-bottom: none; }
.fb-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-strong);
}
.fb-body { flex: 1; }
.fb-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.fb-text {
  color: var(--text-cream);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.55;
}
.fb-text strong { color: var(--accent); font-weight: 700; }
.fb-actions {
  color: #888;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
}

/* ===== OFERTA ===== */
.offer-section {
  background: var(--bg-dark);
  padding: 64px 0 80px;
}
.offer-countdown {
  max-width: 620px;
  margin: 28px auto 34px;
}
.offer-choice-title {
  max-width: 820px;
  margin: 0 auto 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.35rem, 4vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}
.offer-choice-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}
.offer-choice-start {
  color: var(--text-cream);
  font-size: clamp(1rem, 2.5vw, 1.16rem);
  margin-bottom: 22px;
}
.offer-choice-start strong { color: var(--accent); }
.offer-choice-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.offer-choice-item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}
.offer-choice-item-premium {
  background: rgba(255, 204, 0, 0.08);
  border-color: rgba(255, 204, 0, 0.35);
}
.offer-choice-item span {
  display: block;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.1px;
  margin-bottom: 7px;
}
.offer-choice-item p {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.offer-choice-item strong { color: var(--accent); }
.offer-choice-arrow {
  width: 48px;
  height: 44px;
  margin: 20px auto -14px;
  color: var(--accent);
  animation: choiceArrow 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.35));
}
.offer-choice-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes choiceArrow {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}
.offer-options {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 760px;
  margin: 0 auto;
}
.offer-card {
  width: 100%;
  margin: 0;
  background: var(--bg-warm);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 20px 60px rgba(255, 204, 0, 0.1);
  text-align: center;
  position: relative;
}
.offer-card-premium {
  padding-top: 58px;
  box-shadow: 0 24px 70px rgba(255, 204, 0, 0.16);
}
.offer-card-essential {
  max-width: 650px;
  margin: 0 auto;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
.offer-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% + 4px);
  transform: translate(-50%, -2px);
  padding: 12px 20px;
  border-radius: 18px 18px 0 0;
  background: var(--accent);
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.offer-kicker {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.1px;
  margin-bottom: 14px;
}
.offer-description {
  max-width: 590px;
  margin: -14px auto 24px;
  color: var(--text-cream);
  font-size: 1rem;
  line-height: 1.55;
}
.offer-description-name {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.7px;
}
.countdown-wrap {
  text-align: center;
  margin-bottom: 24px;
  padding: 22px 18px 20px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 204, 0, 0.1), transparent 70%);
  border: 1.5px solid rgba(255, 204, 0, 0.35);
  border-radius: 16px;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 14px;
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-dark);
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 72px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cd-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-sub {
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 700;
}
.cd-sep {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--accent);
  animation: blink 1s infinite;
}
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0.25; } }
.cd-num.tick {
  animation: cdPop 0.35s ease;
}
@keyframes cdPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); color: var(--accent); }
  100% { transform: scale(1); }
}
.countdown-deadline {
  margin-top: 16px;
  font-size: clamp(0.82rem, 2vw, 0.95rem);
  font-weight: 800;
  color: #fff;
}
.cd-old-price {
  text-decoration: line-through;
  color: #e53935;
  font-weight: 800;
  margin: 0 4px;
}
.cd-for { color: var(--text-muted); margin: 0 3px; }
.cd-new-price {
  color: var(--cta);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
}
.offer-product {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 3.5vw, 1.75rem);
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.offer-price-block { margin: 20px 0 30px; }
.old-price {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 6px;
}
.old-price-strike {
  color: #e63946;
  text-decoration: line-through;
  font-weight: 800;
}
.offer-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 4.8rem);
  color: #fff;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px 0 12px;
  text-shadow: 0 0 24px rgba(255, 204, 0, 0.15);
}
.price-footer {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.price-footer-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
}
.price-footer-pingado {
  font-weight: 800;
  font-size: 1.02rem;
  color: #ffcc00;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.45), 0 0 18px rgba(255, 204, 0, 0.25);
  letter-spacing: 1.2px;
}
.offer-features {
  list-style: none;
  text-align: left;
  margin: 24px auto;
  max-width: 460px;
}
.offer-features li {
  padding: 10px 0;
  color: #ddd;
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.offer-features li:last-child { border-bottom: none; }
.offer-features strong { color: #fff; }
.offer-features-premium {
  max-width: 610px;
}
.offer-features-premium li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}
.offer-features-premium li span { text-align: center; }
.offer-price-repeat {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  margin-top: 28px;
}
.offer-price-repeat strong {
  color: var(--accent);
  font-size: 1.35rem;
}
.offer-cta {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  padding: 20px 50px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 16px;
  box-shadow: 0 10px 30px var(--cta-glow);
  transition: transform 0.2s ease;
  letter-spacing: 0.5px;
  border: 0;
  cursor: pointer;
  line-height: 1.25;
}
.offer-cta:hover { transform: translateY(-3px); }
.offer-cta-premium { max-width: 580px; }
.offer-delivery {
  margin-top: 16px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}
.offer-exclusion {
  max-width: 540px;
  margin: 22px auto 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.55;
}

/* ===== GARANTIA ===== */
.guarantee-section {
  background: var(--bg-warm);
  padding: 64px 0;
}
.guarantee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 800px;
}
.guarantee-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.1);
}
.guarantee-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3.5vw, 1.85rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.badge-label { color: var(--cta); font-weight: 800; }
.guarantee-text p {
  color: #bbb;
  margin-bottom: 12px;
  font-size: 0.97rem;
}
.guarantee-text strong { color: var(--accent); font-weight: 700; }

/* ===== FAQ ===== */
.faq {
  padding: 70px 0 60px;
  max-width: 850px;
  margin: 0 auto;
}
.faq-title { margin-bottom: 30px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.faq-item.active {
  border-color: rgba(255, 204, 0, 0.35);
  background: rgba(255, 204, 0, 0.04);
}
.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  transition: color 0.2s;
  gap: 18px;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  padding: 0 24px;
  color: var(--text-cream);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer strong { color: var(--accent); font-weight: 700; }
.faq-answer em { color: #fff; font-style: italic; font-weight: 600; }
.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 18px;
}
.faq-final-cta {
  display: block;
  text-align: center;
  background: var(--cta);
  color: #fff;
  font-weight: 800;
  font-size: clamp(1rem, 3vw, 1.2rem);
  padding: 18px 40px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  margin: 36px auto 0;
  max-width: 500px;
  box-shadow: 0 10px 30px var(--cta-glow);
  letter-spacing: 0.5px;
  transition: transform 0.2s ease;
}
.faq-final-cta:hover { transform: translateY(-3px); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-soft);
  padding: 30px 0;
}
.footer-content { text-align: center; }
.footer-content p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.footer-content p:first-child { color: var(--text-muted); font-weight: 600; }

/* ===== POPUP ÚLTIMA CHANCE ===== */
body.popup-open { overflow: hidden; }
.downsell-popup {
  position: fixed;
  inset: auto;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  margin: 0;
  transform: translate(-50%, -50%);
  width: min(680px, calc(100% - 28px));
  max-width: none;
  max-height: min(92dvh, 820px);
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72), 0 0 45px rgba(255, 204, 0, 0.12);
}
.downsell-popup[open] {
  animation: popupShellIn 0.28s ease-out both;
}
.downsell-popup[open] .downsell-popup-panel {
  animation: popupCardIn 0.38s cubic-bezier(0.2, 0.85, 0.25, 1.08) both;
  transform-origin: center center;
}
.downsell-popup::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(5px);
}
.downsell-popup[open]::backdrop {
  animation: popupBackdropIn 0.28s ease-out both;
}
@keyframes popupShellIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popupCardIn {
  from { opacity: 0; transform: translateY(34px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes popupBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.downsell-popup-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  max-height: min(92dvh, 820px);
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(255, 204, 0, 0.13), transparent 36%), #171512;
  border: 2px solid var(--accent);
  border-radius: 22px;
}
.downsell-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}
.downsell-popup-content {
  overflow: hidden;
  padding: 25px 30px 16px;
}
.downsell-alert {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: 5px;
}
.downsell-popup h2 {
  max-width: 560px;
  margin: 0 auto 14px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
}
.downsell-intro {
  color: var(--text-cream);
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: center;
}
.downsell-intro strong { color: #fff; }
.downsell-loss-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  margin: 15px 0;
  list-style: none;
}
.downsell-loss-list li {
  position: relative;
  padding: 6px 8px 6px 28px;
  color: #ddd;
  background: rgba(229, 57, 53, 0.06);
  border: 1px solid rgba(229, 57, 53, 0.14);
  border-radius: 9px;
  font-size: 0.79rem;
  line-height: 1.28;
}
.downsell-loss-list li::before {
  content: '✕';
  position: absolute;
  left: 9px;
  top: 6px;
  color: #ff5b55;
  font-weight: 900;
}
.downsell-loss-list strong { color: #fff; }
.downsell-upgrade {
  padding: 13px;
  text-align: center;
  background: rgba(255, 204, 0, 0.07);
  border: 1px solid rgba(255, 204, 0, 0.3);
  border-radius: 14px;
}
.downsell-upgrade p { color: var(--text-cream); font-size: 0.92rem; }
.downsell-upgrade p strong { color: var(--accent); }
.downsell-upgrade h3 {
  margin: 7px 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}
.downsell-old-price { color: var(--text-muted); font-size: 0.82rem; }
.downsell-price {
  margin-top: 2px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.25rem, 8vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
}
.downsell-popup-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 12px 30px 15px;
  background: #11100e;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.28);
}
.downsell-accept {
  display: block;
  width: 100%;
  padding: 14px 20px;
  color: #fff;
  background: var(--cta);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 28px var(--cta-glow);
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.downsell-or {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  color: #777;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.downsell-or::before,
.downsell-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.downsell-decline {
  display: block;
  width: 100%;
  padding: 13px 20px;
  color: #fff;
  background: #c92b2b;
  border: 1px solid #e44a45;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(201, 43, 43, 0.25);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.downsell-decline:hover { background: #df3530; transform: translateY(-2px); }

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .bonus-content { grid-template-columns: 1fr; gap: 40px; }
  .bonus-image-wrap { max-width: 420px; margin: 0 auto; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .artists-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .artist-column { padding: 20px 18px; }
  .guarantee-content { flex-direction: column; text-align: center; gap: 22px; }
  .guarantee-badge { width: 76px; height: 76px; }
  .faqu-question { font-size: 0.92rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.active .faq-answer { padding: 0 18px 18px; }
  .bullets-grid li { padding: 16px 18px; gap: 14px; }
  .bullet-icon { width: 38px; height: 38px; }
  .bullet-icon svg { width: 20px; height: 20px; }
}

/* ===== MOBILE (até 560px) — otimização touch & leitura ===== */
@media (max-width: 560px) {
  .artists-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }

  /* Hero mais respirável no topo */
  .hero { padding: 36px 0 52px; }
  .hero-title { margin-bottom: 24px; }
  .hero-video-wrap { width: 100%; margin: 18px auto 24px; border-radius: 20px; }
  .hero-video-wrap vturb-smartplayer { border-radius: 16px; }

  /* CTAs full-width touch-friendly */
  .hero-cta-button,
  .offer-cta,
  .faq-final-cta {
    display: block;
    width: 100%;
    padding: 18px 24px;
    font-size: 1.05rem;
    text-align: center;
    border-radius: 14px;
  }
  .hero-bullets { padding: 0 8px; max-width: 100%; }

  /* Seções com padding equilibrado */
  .nostalgia-section, .artists-section, .bonus-section,
  .testimonials, .offer-section, .guarantee-section { padding: 52px 0; }
  .bullets-stack { padding: 64px 0; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .category-card { min-height: 150px; }
  .category-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
    margin: 0 auto;
  }

  /* Bullets cards compactos */
  .bullets-grid { gap: 12px; margin-top: 30px; }
  .bullets-grid li { padding: 14px 16px; border-radius: 10px; }
  .bullet-icon { width: 36px; height: 36px; }
  .bullet-icon svg { width: 20px; height: 20px; }

  /* Bônus */
  .bonus-content { gap: 28px; }
  .bonus-text h2 { font-size: clamp(1.3rem, 5.5vw, 1.6rem); }
  .bonus-mockup { width: 100%; }

  /* Offer card refinado */
  .offer-card { padding: 28px 20px; border-radius: 16px; }
  .offer-card-premium { padding-top: 56px; }
  .offer-popular-badge { border-radius: 14px 14px 0 0; font-size: 0.72rem; }
  .offer-choice-heading { margin-bottom: 28px; }
  .offer-choice-summary { grid-template-columns: 1fr; gap: 10px; }
  .offer-choice-item { padding: 15px 16px; }
  .offer-options { gap: 26px; }
  .offer-price { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .offer-features { padding: 0 4px; }
  .offer-features li { font-size: 0.92rem; padding: 9px 0; }

  /* Countdown compacto e sem quebrar */
  .countdown-timer { gap: 6px; }
  .cd-unit { min-width: 64px; padding: 8px 4px; }
  .cd-num { font-size: clamp(1.6rem, 7vw, 2rem); }
  .cd-sub { font-size: 0.55rem; }
  .cd-sep { font-size: 1.3rem; }
  .countdown-deadline { font-size: 0.78rem; line-height: 1.4; }

  /* Headlines mais justas */
  .section-title { font-size: clamp(1.4rem, 6.5vw, 1.7rem); }
  .section-subtitle { font-size: 0.95rem; padding: 0 8px; margin-bottom: 32px; }

  /* Depoimentos */
  .fb-comment { padding: 14px 0; gap: 10px; }
  .fb-avatar { width: 40px; height: 40px; }
  .fb-text { font-size: 0.9rem; line-height: 1.5; }

  /* FAQ mais legível */
  .faq-question { font-size: 0.95rem; padding: 16px 14px; }
  .faq-answer { padding: 0 14px; font-size: 0.92rem; line-height: 1.6; }
  .faq-item.active .faq-answer { padding: 0 14px 16px; }

  /* Garantia */
  .guarantee-text h3 { font-size: 1.15rem; }
  .guarantee-text p { font-size: 0.92rem; }

  /* Popup compacto e confortável em telas pequenas */
  .downsell-popup { width: calc(100% - 16px); max-height: 96dvh; border-radius: 18px; }
  .downsell-popup-panel { max-height: 96dvh; border-radius: 18px; }
  .downsell-popup-content { padding: 18px 13px 9px; }
  .downsell-popup-close { top: 7px; right: 8px; width: 34px; height: 34px; }
  .downsell-alert { font-size: 0.75rem; }
  .downsell-popup h2 {
    max-width: calc(100% - 44px);
    font-size: clamp(1.02rem, 5vw, 1.28rem);
    margin-bottom: 6px;
  }
  .downsell-intro { font-size: 0.78rem; line-height: 1.28; }
  .downsell-loss-list { grid-template-columns: 1fr; gap: 3px; margin: 8px 0; }
  .downsell-loss-list li {
    padding: 3px 6px 3px 23px;
    background: transparent;
    border: 0;
    font-size: 0.68rem;
    line-height: 1.18;
  }
  .downsell-loss-list li::before { left: 6px; top: 3px; }
  .downsell-upgrade { padding: 8px; }
  .downsell-upgrade {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    text-align: left;
  }
  .downsell-upgrade p { grid-column: 1; grid-row: 1; font-size: 0.72rem; }
  .downsell-upgrade h3 { grid-column: 1; grid-row: 2; margin: 2px 0 0; font-size: 0.8rem; }
  .downsell-old-price { grid-column: 2; grid-row: 1; font-size: 0.66rem; text-align: right; }
  .downsell-price { grid-column: 2; grid-row: 2; font-size: 1.75rem; white-space: nowrap; }
  .downsell-popup-actions { gap: 4px; padding: 7px 12px 9px; }
  .downsell-accept { padding: 11px 8px; border-radius: 11px; font-size: 0.78rem; }
  .downsell-or { gap: 7px; font-size: 0.56rem; }
  .downsell-decline { padding: 10px 8px; border-radius: 11px; font-size: 0.76rem; }
}

@media (max-height: 650px) {
  .downsell-popup { max-height: calc(100dvh - 8px); }
  .downsell-popup-panel { max-height: calc(100dvh - 8px); }
  .downsell-popup-content { padding-top: 12px; padding-bottom: 6px; }
  .downsell-popup-close { width: 29px; height: 29px; top: 5px; right: 6px; font-size: 1.2rem; }
  .downsell-alert { font-size: 0.64rem; margin-bottom: 2px; }
  .downsell-popup h2 { font-size: 0.96rem; margin-bottom: 4px; }
  .downsell-intro { font-size: 0.7rem; }
  .downsell-loss-list { gap: 1px; margin: 5px 0; }
  .downsell-loss-list li { padding-top: 2px; padding-bottom: 2px; font-size: 0.62rem; line-height: 1.12; }
  .downsell-loss-list li::before { top: 2px; }
  .downsell-upgrade { padding: 6px; }
  .downsell-upgrade p { font-size: 0.65rem; }
  .downsell-upgrade h3 { margin: 2px 0; font-size: 0.76rem; }
  .downsell-old-price { font-size: 0.63rem; }
  .downsell-price { font-size: 1.65rem; }
  .downsell-popup-actions { gap: 3px; padding: 5px 10px 6px; }
  .downsell-accept { padding: 9px 7px; font-size: 0.72rem; }
  .downsell-or { font-size: 0.5rem; }
  .downsell-decline { padding: 8px 7px; font-size: 0.7rem; }
}

@media (max-width: 380px) {
  .categories-grid { grid-template-columns: 1fr; }
  .hero-cta-button, .offer-cta, .faq-final-cta { padding: 16px 20px; font-size: 0.98rem; }
  .offer-card { padding: 24px 16px; }
  .cd-unit { min-width: 56px; }
  .bullet-icon { width: 32px; height: 32px; }
  .bullet-icon svg { width: 18px; height: 18px; }
  .fb-avatar { width: 36px; height: 36px; }
}

/* ===== Acessibilidade touch + viewport iOS ===== */
@media (hover: none) {
  .bullets-grid li:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@supports (-webkit-touch-callout: none) {
  body { -webkit-text-size-adjust: 100%; }
}

/* ===== POPUP MOBILE-FIRST ===== */
.downsell-loss-list li span {
  display: block;
  margin-top: 2px;
  color: #bdbdbd;
  font-weight: 500;
}

@media (max-width: 560px) {
  .downsell-popup {
    width: min(386px, calc(100% - 20px));
    max-height: calc(100dvh - 16px);
    border-radius: 26px;
  }
  .downsell-popup-panel {
    max-height: calc(100dvh - 16px);
    border-width: 1px;
    border-radius: 26px;
    background:
      radial-gradient(circle at 50% -8%, rgba(255, 204, 0, 0.17), transparent 32%),
      linear-gradient(180deg, #1d1a15 0%, #12110f 100%);
  }
  .downsell-popup-close {
    top: 10px;
    right: 11px;
    width: 34px;
    height: 34px;
    color: #d7d7d7;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
    font-size: 1.25rem;
  }
  .downsell-popup-content {
    padding: 18px 15px 11px;
  }
  .downsell-alert {
    display: table;
    margin: 0 auto 7px;
    padding: 5px 10px;
    color: #1a1712;
    background: var(--accent);
    border-radius: 999px;
    font-size: 0.66rem;
    letter-spacing: 0.8px;
  }
  .downsell-popup h2 {
    max-width: 290px;
    margin: 0 auto 7px;
    font-size: clamp(1.06rem, 5.2vw, 1.28rem);
    line-height: 1.12;
    letter-spacing: -0.25px;
  }
  .downsell-intro {
    max-width: 310px;
    margin: 0 auto;
    font-size: 0.77rem;
    line-height: 1.3;
  }
  .downsell-loss-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 11px 0;
  }
  .downsell-loss-list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 43px;
    padding: 7px 7px 7px 25px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    font-size: 0.69rem;
    line-height: 1.17;
  }
  .downsell-loss-list li::before {
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.72rem;
  }
  .downsell-loss-list li:last-child {
    grid-column: 1 / -1;
    min-height: 35px;
  }
  .downsell-loss-list li strong { line-height: 1.16; }
  .downsell-loss-list li span { margin-top: 2px; font-size: 0.62rem; line-height: 1.15; }
  .downsell-upgrade {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 11px;
    align-items: center;
    padding: 10px 11px;
    text-align: left;
    border-radius: 13px;
  }
  .downsell-upgrade p {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.7rem;
    line-height: 1.2;
  }
  .downsell-upgrade h3 {
    grid-column: 1;
    grid-row: 2;
    margin: 3px 0 0;
    font-size: 0.78rem;
    line-height: 1.1;
  }
  .downsell-old-price {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.61rem;
    text-align: right;
  }
  .downsell-price {
    grid-column: 2;
    grid-row: 2;
    font-size: 1.75rem;
    white-space: nowrap;
  }
  .downsell-popup-actions {
    gap: 5px;
    padding: 9px 14px max(11px, env(safe-area-inset-bottom));
    background: rgba(10, 10, 9, 0.96);
  }
  .downsell-accept,
  .downsell-decline {
    padding: 12px 10px;
    border-radius: 13px;
    font-size: 0.77rem;
    line-height: 1.18;
  }
  .downsell-accept {
    min-height: 56px;
    padding: 16px 12px;
    font-size: 0.84rem;
  }
  .downsell-or { font-size: 0.52rem; }
}

@media (max-width: 350px), (max-height: 620px) {
  .downsell-popup-content { padding: 12px 10px 7px; }
  .downsell-popup-close { top: 6px; right: 7px; width: 29px; height: 29px; }
  .downsell-alert { margin-bottom: 4px; padding: 4px 8px; font-size: 0.59rem; }
  .downsell-popup h2 { max-width: 270px; margin-bottom: 4px; font-size: 0.95rem; }
  .downsell-intro { font-size: 0.67rem; }
  .downsell-loss-list { gap: 4px; margin: 7px 0; }
  .downsell-loss-list li { min-height: 35px; padding: 5px 5px 5px 22px; font-size: 0.61rem; }
  .downsell-loss-list li::before { left: 7px; font-size: 0.64rem; }
  .downsell-loss-list li:last-child { min-height: 29px; }
  .downsell-loss-list li span { font-size: 0.56rem; }
  .downsell-upgrade { padding: 7px 8px; }
  .downsell-upgrade p { font-size: 0.62rem; }
  .downsell-upgrade h3 { font-size: 0.69rem; }
  .downsell-old-price { font-size: 0.55rem; }
  .downsell-price { font-size: 1.48rem; }
  .downsell-popup-actions { gap: 3px; padding: 6px 10px 7px; }
  .downsell-accept,
  .downsell-decline { padding: 9px 7px; font-size: 0.69rem; }
  .downsell-accept { min-height: 48px; padding: 13px 8px; font-size: 0.75rem; }
  .downsell-or { font-size: 0.47rem; }
}
