/* ==========================================================================
   FÍSICO FORJADO - LANDING PAGE DE ALTA CONVERSIÓN
   Paleta: Obsidian Carbon & Crimson Red (#e50914, #ff2a2a) con acentos dorados y metálicos
   ========================================================================== */

:root {
  --bg-main: #07080a;
  --bg-surface: #0e1117;
  --bg-card: #151922;
  --bg-card-hover: #1b202c;
  --bg-glass: rgba(21, 25, 34, 0.75);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-active: rgba(229, 9, 20, 0.4);
  --primary: #e50914;
  --primary-glow: rgba(229, 9, 20, 0.35);
  --primary-light: #ff3344;
  --primary-dark: #b8060f;
  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.25);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --font-heading: 'Teko', 'Oswald', sans-serif;
  --font-body: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 35px -5px rgba(229, 9, 20, 0.3);
  --container-max: 1140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 80% 35%, rgba(245, 158, 11, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 20% 70%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
              var(--bg-main);
}

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

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

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

/* ==========================================================================
   TOP NOTIFICATION BAR (URGENCIA)
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #b8060f, #e50914, #ff3344, #b8060f);
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
  color: #ffffff;
  padding: 10px 15px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(229, 9, 20, 0.4);
  position: relative;
  z-index: 100;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.top-bar .pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px #fff;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.top-bar .timer {
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 10px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 1rem;
  color: #ffd166;
  font-weight: 700;
}

/* ==========================================================================
   HEADER / BRAND
   ========================================================================== */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 90;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.5));
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.brand-name span {
  color: var(--primary);
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.3);
  color: #ff5566;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   ZONA 1: PORTADA (HERO) - "¿ESTO SERÁ PARA MÍ?"
   ========================================================================== */
.hero-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-banner-wrap {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 40px rgba(229, 9, 20, 0.15);
  position: relative;
}

.hero-banner-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-main), transparent);
  pointer-events: none;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* FÓRMULA DE TÍTULO / PROMESA DEL CURSO */
.hero-hook {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffd166;
  margin-bottom: 12px;
  line-height: 1.35;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title-lead {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.9vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #f1f5f9;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1.25;
}

.hero-title .highlight-red {
  display: block;
  color: var(--primary);
  text-shadow: 0 0 25px rgba(229, 9, 20, 0.6);
  position: relative;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin-top: 6px;
}

/* RESALTADO OFICIAL Y ELEGANTE DEL PRODUCTO (SIN CORTES BRUSCOS) */
.hero-title .highlight-tool {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 10px auto;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.28) 0%, rgba(20, 24, 33, 0.95) 100%);
  border: 2px solid rgba(229, 9, 20, 0.65);
  border-radius: 12px;
  box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.8), 0 0 25px rgba(229, 9, 20, 0.35);
  color: #ffffff;
  text-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
  letter-spacing: 1.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 820px;
  margin: 0 auto 35px;
  font-weight: 400;
  line-height: 1.6;
}

/* MOCKUP PRINCIPAL */
.hero-mockup-container {
  margin: 40px auto;
  position: relative;
  max-width: 900px;
}

.hero-mockup-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(229, 9, 20, 0.15), rgba(0,0,0,0.8));
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(229, 9, 20, 0.25);
  border: 1px solid rgba(229, 9, 20, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-mockup-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.95), 0 0 65px rgba(229, 9, 20, 0.4);
}

.hero-mockup-img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.mockup-floating-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(14, 17, 23, 0.92);
  border: 2px solid var(--primary);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(229, 9, 20, 0.3);
  text-align: left;
  animation: floatBadge 3.5s ease-in-out infinite;
}

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

.mockup-floating-badge .badge-top {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mockup-floating-badge .badge-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #ffd166;
  line-height: 1.1;
  text-transform: uppercase;
}

/* BOTÓN CTA PRINCIPAL */
.cta-button-wrap {
  margin: 35px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #ff2a2a 0%, #e50914 50%, #b8060f 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 50px;
  box-shadow: 0 12px 30px -5px rgba(229, 9, 20, 0.6), 0 0 25px rgba(229, 9, 20, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  animation: shine 3.5s infinite;
}

@keyframes shine {
  0% { left: -60%; }
  35%, 100% { left: 140%; }
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 45px -5px rgba(229, 9, 20, 0.8), 0 0 40px rgba(229, 9, 20, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.btn-cta:active {
  transform: translateY(-1px) scale(0.99);
}

.cta-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-subtext svg {
  color: #10b981;
}

/* "¿ESTO ES PARA TI SI...?" */
.target-audience-card {
  margin-top: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.target-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.target-title span {
  color: var(--primary);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
  transition: transform 0.2s ease, background 0.2s ease;
}

.target-item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.06);
}

.target-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.2);
  color: #ff4d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.target-item-text {
  font-size: 1rem;
  color: #e5e7eb;
  line-height: 1.5;
}

.target-item-text strong {
  color: #ffffff;
}

/* ==========================================================================
   ZONA 2: BENEFICIOS - "¿QUÉ GANO CON ESTO?"
   ========================================================================== */
.benefits-section {
  padding: 90px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0) 0%, rgba(14, 17, 23, 0.8) 50%, rgba(7, 8, 10, 0) 100%);
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-title span {
  color: var(--primary);
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* CUADRÍCULA 4 BENEFICIOS PRINCIPALES */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.9), 0 0 25px rgba(229, 9, 20, 0.2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-glass);
  background: #0c0e14;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-card-media img {
  transform: scale(1.04);
}

.benefit-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.benefit-text {
  font-size: 0.95rem;
  color: #c3c7d1;
  line-height: 1.6;
}

/* CÓMO ES EL PRODUCTO POR DENTRO (FEATURE HIGHLIGHT) */
.inside-product-banner {
  background: radial-gradient(circle at 80% 50%, rgba(229, 9, 20, 0.15) 0%, transparent 60%),
              var(--bg-card);
  border: 1px solid rgba(229, 9, 20, 0.25);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  margin: 60px 0 90px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.inside-product-content h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.inside-product-content h3 span {
  color: var(--primary);
}

.inside-product-content p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.inside-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inside-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #e2e8f0;
}

.inside-points-list li svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
  color: #10b981;
  margin-top: 3px;
}

.inside-product-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 9, 20, 0.25);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #090b0f;
}

.inside-product-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.inside-product-image:hover img {
  transform: scale(1.02);
}

/* ==========================================================================
   SECCIÓN: LOS 7 BONOS PREMIUM EXCLUSIVOS (DISEÑO HORIZONTAL LADO A LADO)
   ========================================================================== */
.bonuses-section {
  padding: 80px 0;
  background: #090b0f;
  position: relative;
}

.bonuses-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.bonuses-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #ffd166;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s ease;
}

.bonus-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(245, 158, 11, 0.2);
}

.bonus-card-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(10, 12, 16, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 5;
  gap: 8px;
}

.bonus-card-badge {
  position: static;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.bonus-card-price-tag {
  position: static;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: #10b981;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.bonus-card-price-tag .strike-price {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 1.5px;
  font-weight: 600;
}

.bonus-image-wrap {
  width: 100%;
  height: 250px;
  min-height: 250px;
  background: radial-gradient(circle at center, #181d28 0%, #0c0e14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
  border-right: none;
  border-bottom: 1px solid var(--border-glass);
  user-select: none;
  -webkit-user-select: none;
}

.bonus-image-wrap img {
  max-height: 225px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.85));
  transition: transform 0.4s ease;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.bonus-card:hover .bonus-image-wrap img {
  transform: scale(1.05);
}

.bonus-card-body {
  padding: 24px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bonus-pricing-note {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.35);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  line-height: 1.35;
}

.bonus-pricing-note .old-price-line {
  color: #cbd5e1;
  font-weight: 600;
}

.bonus-pricing-note .strike-tag {
  color: #fca5a5;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 1.5px;
  font-weight: 700;
  padding: 0 2px;
}

.bonus-pricing-note .now-free {
  color: #34d399;
  font-weight: 800;
}

.bonus-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.18;
  letter-spacing: 0.5px;
}

.bonus-title span {
  color: #ffd166;
}

.bonus-desc {
  font-size: 1.08rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.bonus-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
}

.bonus-format {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bonus-status {
  color: #10b981;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   ZONA 3: ZONA DE VENTA - "¿QUÉ MÁS GANO CON ESTO?"
   ========================================================================== */
.offer-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(229, 9, 20, 0.15) 0%, transparent 70%),
              #07080a;
}

.offer-box {
  background: linear-gradient(180deg, #161a24 0%, #0d1017 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.95), 0 0 50px rgba(229, 9, 20, 0.35);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ff2a2a, #ffd166, #ff2a2a);
}

.offer-badge-pill {
  display: inline-block;
  background: linear-gradient(90deg, #b8060f, #e50914);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 26px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.5);
}

.offer-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 15px;
}

.offer-title span {
  color: var(--primary);
}

.offer-bundle-preview {
  margin: 30px auto;
  max-width: 650px;
}

.offer-bundle-preview img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.offer-checklist {
  text-align: left;
  max-width: 580px;
  margin: 30px auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 0, 0, 0.3);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #e5e7eb;
}

.offer-check-item svg {
  color: #10b981;
  min-width: 22px;
  width: 22px;
  height: 22px;
}

.offer-check-item strong {
  color: #ffffff;
}

.price-tag-wrapper {
  margin: 30px 0 20px;
}

.price-regular-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px dashed rgba(245, 158, 11, 0.5);
  padding: 8px 22px;
  border-radius: 10px;
  margin-bottom: 14px;
  white-space: nowrap;
}

.price-regular-label {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-regular-amount {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: #f8fafc;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2.5px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
}

.price-title-pack {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #ffd166;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 10px 0;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #ff3344;
  font-weight: 700;
}

.price-number {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 7.2rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 20%, #ffd700 45%, #f59e0b 75%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.75)) drop-shadow(0 0 60px rgba(217, 119, 6, 0.4));
}

/* CAJA DE PRECIO EN CIERRE FINAL (FINAL CTA) */
.final-cta-pricing-box {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(20, 24, 33, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.45);
  padding: 10px 26px;
  border-radius: 100px;
  margin: 0 auto 26px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.65), 0 0 20px rgba(245, 158, 11, 0.15);
}

.final-regular-price {
  font-size: 1.05rem;
  color: #cbd5e1;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.final-regular-price del {
  color: #fca5a5;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  font-weight: 800;
  margin-left: 4px;
}

.final-offer-price {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.final-offer-price strong {
  color: #fbbf24;
  font-size: 1.35rem;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
  margin-left: 4px;
}

.price-currency-suffix {
  font-size: 1.3rem;
  color: #d1d5db;
  font-weight: 700;
  text-transform: uppercase;
}

.price-discount-pill {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.4));
  border: 1px solid #10b981;
  color: #34d399;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 5px 18px;
  border-radius: 50px;
  margin: 10px 0 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-payment-type {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd166;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* SELLOS DE CONFIANZA / PAGO SEGURO */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 20px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #9ca3af;
  font-weight: 600;
}

.trust-badge-item svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   GARANTÍA DE 7 DÍAS (DERROTERO)
   ========================================================================== */
.guarantee-section {
  padding: 50px 0;
  position: relative;
}

.guarantee-card {
  background: linear-gradient(135deg, rgba(21, 25, 34, 0.95), rgba(14, 17, 23, 0.95));
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.15);
}

.guarantee-seal-img-wrap {
  width: 140px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-seal-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(245, 158, 11, 0.45));
  transition: transform 0.3s ease;
}

.guarantee-seal-img:hover {
  transform: scale(1.06) rotate(3deg);
}

.offer-guarantee-seal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 18px auto 8px;
  max-width: 480px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.offer-guarantee-seal-row img {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.5));
}

.offer-guarantee-seal-row span {
  font-size: 0.92rem;
  color: #ffd166;
  font-weight: 600;
  text-align: left;
  line-height: 1.35;
}

.guarantee-badge-graphic {
  width: 120px;
  min-width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #f59e0b 0%, #b45309 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
  border: 4px solid #fff;
}


.guarantee-badge-days {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 0.9;
}

.guarantee-badge-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guarantee-text h4 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.guarantee-text h4 span {
  color: #ffd166;
}

.guarantee-text p {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* ==========================================================================
   PREGUNTAS FRECUENTES (FAQ ACORDEÓN)
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  position: relative;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--border-active);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.7), 0 0 20px rgba(229, 9, 20, 0.15);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.5s ease-in-out;
}

.faq-answer-inner {
  padding: 0 26px 24px;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   CIERRE FINAL INSPIRADOR
   ========================================================================== */
.final-cta-section {
  padding: 90px 0 100px;
  position: relative;
  background: radial-gradient(circle at 50% 80%, rgba(229, 9, 20, 0.18) 0%, transparent 60%);
}

.final-cta-card {
  background: linear-gradient(180deg, #141822 0%, #0a0d13 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  position: relative;
}

.final-cta-img-wrap {
  max-width: 450px;
  margin: 0 auto 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 9, 20, 0.3);
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta-title span {
  color: var(--primary);
}

.final-cta-text {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 680px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER LEGAL
   ========================================================================== */
.site-footer {
  padding: 50px 0 40px;
  background: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-wrap img {
  width: 40px;
  height: 40px;
}

.footer-disclaimer {
  max-width: 780px;
  margin: 0 auto 24px;
  line-height: 1.6;
  color: #6b7280;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copyright {
  color: #4b5563;
}

/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(229, 9, 20, 0.4);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
  transform: translateY(120%);
  transition: transform 0.35s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

.sticky-price {
  font-size: 0.95rem;
  color: #ffd166;
  font-weight: 700;
}

.btn-sticky-cta {
  background: linear-gradient(135deg, #ff2a2a, #b8060f);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.5);
}

/* ==========================================================================
   RESPONSIVE QUERIES & MOBILE FIRST OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 900px) {
  .hero-section {
    padding: 40px 0 60px;
  }
  .inside-product-banner {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 25px;
  }
  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .bonuses-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .bonus-card {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  /* Contenedor compacto en móviles */
  .container {
    padding: 0 16px;
  }

  /* Barra superior de urgencia en móvil */
  .top-bar {
    font-size: 0.78rem;
    padding: 8px 12px;
    flex-direction: column;
    gap: 6px;
    line-height: 1.3;
  }
  .top-bar .timer {
    font-size: 0.95rem;
    padding: 2px 8px;
  }

  /* Header móvil */
  .site-header {
    padding: 12px 0;
  }
  .brand-logo-img {
    width: 40px;
    height: 40px;
  }
  .brand-name {
    font-size: 1.4rem;
  }
  .header-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  /* Hero Section Móvil */
  .hero-section {
    padding: 24px 0 45px;
  }
  .hero-banner-wrap {
    margin-bottom: 24px;
    border-radius: var(--radius-md);
  }
  .hero-banner-img {
    max-height: 190px;
    object-fit: cover;
  }
  .hero-pretitle {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .hero-hook {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  /* Mockup en móvil */
  .hero-mockup-container {
    margin: 20px auto 30px;
  }
  .hero-mockup-wrapper {
    padding: 6px;
    border-radius: var(--radius-md);
  }
  .mockup-floating-badge {
    position: static;
    margin-top: 12px;
    padding: 10px 16px;
    text-align: center;
    border-radius: var(--radius-sm);
  }
  .mockup-floating-badge .badge-main {
    font-size: 1.3rem;
  }

  /* Botones CTA en móvil: Ancho completo y táctil */
  .cta-button-wrap {
    margin: 25px 0 15px;
    width: 100%;
  }
  .btn-cta {
    font-size: 1.45rem;
    padding: 16px 20px;
    width: 100%;
    letter-spacing: 1px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .btn-cta svg {
    width: 20px;
    height: 20px;
  }
  .cta-subtext {
    font-size: 0.8rem;
    text-align: center;
    justify-content: center;
    line-height: 1.4;
  }

  /* Target Audience móvil */
  .target-audience-card {
    margin-top: 35px;
    padding: 24px 16px;
  }
  .target-title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .target-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .target-item {
    padding: 12px 14px;
    gap: 10px;
  }
  .target-item-text {
    font-size: 0.92rem;
  }

  /* Beneficios móvil */
  .benefits-section {
    padding: 50px 0;
  }
  .section-tag {
    font-size: 1.05rem;
  }
  .section-title {
    font-size: 1.75rem;
    line-height: 1.15;
  }
  .section-description {
    font-size: 0.98rem;
    margin-bottom: 30px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }
  .benefit-card {
    padding: 20px 16px;
    text-align: center;
  }
  .benefit-card-media {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    height: auto !important;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c0e14;
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .benefit-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
  }
  .benefit-title {
    font-size: 1.5rem;
  }
  .benefit-text {
    font-size: 0.92rem;
  }

  /* Guía por dentro móvil */
  .inside-product-banner {
    margin: 40px 0 50px;
    padding: 24px 16px;
    border-radius: var(--radius-lg);
  }
  .inside-product-content h3 {
    font-size: 1.7rem;
  }
  .inside-product-content p {
    font-size: 0.95rem;
  }
  .inside-points-list li {
    font-size: 0.92rem;
    gap: 8px;
  }

  /* Bonos móvil: TARJETAS VERTICALES CON IMAGEN COMPACTA Y TEXTO GRANDE */
  .bonuses-section {
    padding: 50px 0;
  }
  .bonuses-badge {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
  .bonuses-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .bonus-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden !important;
    text-align: left;
  }
  .bonus-image-wrap {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    padding: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-glass) !important;
  }
  .bonus-image-wrap img {
    max-height: 200px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    pointer-events: none !important;
    -webkit-user-drag: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
  }
  .bonus-card-top-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 14px !important;
    background: rgba(8, 10, 14, 0.98) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    gap: 8px !important;
    position: static !important;
    z-index: 5 !important;
  }
  .bonus-card-badge {
    position: static !important;
    top: auto !important;
    left: auto !important;
    font-size: 0.8rem !important;
    padding: 4px 10px !important;
    flex-shrink: 0 !important;
  }
  .bonus-card-price-tag {
    display: inline-flex !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    font-size: 0.72rem !important;
    padding: 4px 8px !important;
    white-space: nowrap !important;
  }
  .bonus-card-body {
    padding: 20px 16px !important;
  }
  .bonus-title {
    font-size: 1.45rem !important;
    line-height: 1.22 !important;
    margin-bottom: 8px !important;
  }
  .bonus-desc {
    font-size: 1.02rem !important;
    line-height: 1.55 !important;
    margin-bottom: 12px !important;
  }
  .bonus-pricing-note {
    display: inline-flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 4px !important;
    background: rgba(229, 9, 20, 0.12) !important;
    border: 1px solid rgba(229, 9, 20, 0.3) !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    font-size: 0.78rem !important;
    margin-bottom: 10px !important;
  }
  .bonus-pricing-note .old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
  }
  .bonus-pricing-note .now-free {
    color: #34d399;
    font-weight: 800;
  }
  .bonus-footer {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 12px !important;
    gap: 4px !important;
    font-size: 0.88rem !important;
  }
  .bonus-format, .bonus-status {
    font-size: 0.85rem !important;
  }

  /* Zona de oferta móvil */
  .offer-section {
    padding: 50px 0;
  }
  .offer-box {
    padding: 30px 16px;
    border-radius: var(--radius-lg);
  }
  .offer-badge-pill {
    font-size: 1.05rem;
    padding: 5px 16px;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .offer-title {
    font-size: 1.8rem;
  }
  .offer-checklist {
    padding: 16px;
    margin: 20px auto 25px;
    gap: 10px;
  }
  .offer-check-item {
    font-size: 0.92rem;
    gap: 8px;
  }
  .price-supertitle {
    font-size: 0.95rem;
  }
  .price-title-pack {
    font-size: 1.3rem;
  }
  .price-amount-display {
    margin: 5px 0;
  }
  .price-currency {
    font-size: 2.2rem;
  }
  .price-number {
    font-size: 4.5rem;
  }
  .price-currency-suffix {
    font-size: 1.1rem;
  }
  .price-payment-type {
    font-size: 0.82rem;
    padding: 4px 14px;
    margin-bottom: 18px;
  }
  .trust-badges-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
  }

  /* Garantía móvil */
  .guarantee-card {
    padding: 24px 16px;
    gap: 18px;
  }
  .guarantee-badge-graphic {
    width: 90px;
    min-width: 90px;
    height: 90px;
  }
  .guarantee-badge-days {
    font-size: 2.2rem;
  }
  .guarantee-badge-label {
    font-size: 0.58rem;
  }
  .guarantee-text h4 {
    font-size: 1.5rem;
  }
  .guarantee-text p {
    font-size: 0.92rem;
  }

  /* FAQ móvil */
  .faq-section {
    padding: 50px 0;
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 1rem;
  }
  .faq-answer-inner {
    padding: 0 18px 18px;
    font-size: 0.92rem;
  }

  /* Cierre final móvil */
  .final-cta-section {
    padding: 50px 0 90px;
  }
  .final-cta-card {
    padding: 35px 16px;
    border-radius: var(--radius-lg);
  }
  .final-cta-title {
    font-size: 1.75rem;
  }
  .final-cta-text {
    font-size: 0.95rem;
  }

  /* Footer móvil */
  .site-footer {
    padding: 35px 0 85px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  /* Barra Sticky CTA ultra optimizada para móvil */
  .sticky-cta-bar {
    padding: 10px 14px;
    gap: 10px;
  }
  .sticky-title {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
  }
  .sticky-price {
    font-size: 0.85rem;
  }
  .btn-sticky-cta {
    font-size: 1.15rem;
    padding: 10px 18px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
}

