/* ═══════════════════════════════════════
   VARIABLES Y RESET
═══════════════════════════════════════ */
:root {
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --black: #111111;
  --gray-light: #F4F4F2;
  --gray-mid: #888888;
  --gray-dark: #444444;
  --orange: #FF6B35;
  --orange-dark: #E55A25;
  --green: #2ECC71;
  --green-dark: #27AE60;
  --green-bg: #F0FBF4;
  --red: #E74C3C;
  --border: #E8E8E4;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }

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

/* ═══════════════════════════════════════
   REVEAL (scroll animation)
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   BOTONES
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,53,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,.45);
}
.btn-secondary {
  background: var(--black);
  color: #fff;
}
.btn-secondary:hover {
  background: #333;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--orange);
  font-weight: 800;
}
.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 17px; letter-spacing: -0.2px; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════
   STICKY HEADER
═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.site-header.visible {
  transform: translateY(0);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
}
.logo-icon { color: var(--orange); font-size: 14px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  padding: 60px 0 80px;
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF3EE;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,53,.2);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 18px;
  color: var(--gray-dark);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 20px;
}
.trust-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 24px;
}
.trust-item { font-weight: 500; }
.trust-sep { color: var(--border); }

.price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.price-old {
  font-size: 20px;
  color: var(--gray-mid);
  text-decoration: line-through;
}
.price-current {
  font-size: 38px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -1.5px;
}
.price-save {
  background: #FFF3EE;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.urgency-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--gray-dark);
  margin-top: 14px;
  padding: 12px 16px;
  background: #FFF8F6;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,107,53,.15);
}
.urgency-stock { color: var(--red); font-weight: 500; }
.urgency-sep { color: var(--border); }
.urgency-timer { font-weight: 500; }
#countdown { color: var(--orange); font-variant-numeric: tabular-nums; }

/* Hero media */
.hero-video-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #111;
  aspect-ratio: 4/3;
  width: 100%;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback placeholders (para secciones sin asset real) */
.video-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 9/16;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: rgba(255,255,255,.6);
  padding: 24px;
}
.play-icon {
  width: 72px; height: 72px;
  background: rgba(255,107,53,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  padding-left: 5px;
  box-shadow: 0 0 40px rgba(255,107,53,.4);
}
.placeholder-label { font-size: 14px; font-weight: 600; }
.placeholder-label small { font-weight: 400; opacity: 0.7; }

/* ═══════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════ */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-headline {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-dark);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
}
.text-center { text-align: center; }
.text-center.section-sub { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════
   PRUEBA SOCIAL
═══════════════════════════════════════ */
.social-proof {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.tiktok-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #010101;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.ugc-card--hidden-mobile { display: none; }
.ugc-placeholder {
  background: linear-gradient(160deg, #1a1a1a, #333);
  border-radius: var(--radius-md);
  aspect-ratio: 9/16;
  max-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.ugc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: white;
  padding-left: 3px;
  border: 1.5px solid rgba(255,255,255,.3);
}
.ugc-label {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  text-align: center;
}
.ugc-label small { font-weight: 400; opacity: .7; }

.mini-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mini-review {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.mini-review-avatar {
  width: 44px; height: 44px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.mini-review-body p {
  font-size: 14px;
  color: var(--gray-dark);
  font-style: italic;
  margin: 4px 0;
}
.mini-review-stars { font-size: 12px; margin-bottom: 2px; }
.mini-review-name { font-size: 12px; color: var(--gray-mid); font-weight: 500; }

/* ═══════════════════════════════════════
   PROBLEMA
═══════════════════════════════════════ */
.problem {
  padding: 80px 0;
  background: var(--bg);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.pain-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pain-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.pain-text span { font-size: 14px; color: var(--gray-dark); }

.before-after {
  display: flex;
  gap: 12px;
  align-items: center;
}
.before-after-item { flex: 1; }
.before-after-divider {
  font-size: 28px;
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 700;
}
.img-placeholder {
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}
.img-placeholder p { color: rgba(255,255,255,.7); }
.img-placeholder small { opacity: .7; font-weight: 400; }
.img-placeholder--dark {
  background: linear-gradient(135deg, #3d1a1a, #5c2626);
  aspect-ratio: 3/4;
  min-height: 200px;
}
.img-placeholder--green {
  background: linear-gradient(135deg, #1a3d2a, #2d5c42);
  aspect-ratio: 3/4;
  min-height: 200px;
}
.img-placeholder--lifestyle {
  background: linear-gradient(135deg, #2a2a2a, #444);
  aspect-ratio: 16/9;
  min-height: 260px;
  width: 100%;
  margin-top: 32px;
  border-radius: var(--radius-lg);
}
.lifestyle-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 16/9;
  margin-top: 32px;
  box-shadow: var(--shadow-md);
}
.before-after-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
  min-height: 200px;
}
.before-after-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 100px;
}
.before-label { background: #FBE8E8; color: var(--red); }
.after-label { background: var(--green-bg); color: var(--green-dark); }

/* ═══════════════════════════════════════
   BENEFICIOS
═══════════════════════════════════════ */
.benefits {
  padding: 80px 0;
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-icon { font-size: 36px; margin-bottom: 14px; }
.benefit-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.benefit-card p { font-size: 14px; color: var(--gray-dark); line-height: 1.6; }

/* ═══════════════════════════════════════
   CÓMO FUNCIONA
═══════════════════════════════════════ */
.how-it-works {
  padding: 80px 0;
  background: var(--bg);
}
.steps-grid {
  display: flex;
  gap: 0;
  align-items: center;
  margin-top: 48px;
}
.step-card {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-number {
  width: 40px; height: 40px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  margin: 0 auto 20px;
}
.step-icon-wrap { margin-bottom: 16px; }
.step-svg { width: 80px; height: 80px; margin: 0 auto; }
.step-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.step-card p { font-size: 14px; color: var(--gray-dark); }
.step-arrow {
  font-size: 28px;
  color: var(--orange);
  padding: 0 8px;
  flex-shrink: 0;
  font-weight: 700;
  opacity: 0.4;
}

/* ═══════════════════════════════════════
   COMPARATIVA
═══════════════════════════════════════ */
.comparison {
  padding: 80px 0;
  background: var(--white);
}
.table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 520px;
}
.comparison-table th {
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
}
.comparison-table th.feature-col { text-align: left; }
.comparison-table th.our-col {
  background: var(--orange);
  color: white;
  font-size: 14px;
  letter-spacing: -0.2px;
}
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--gray-dark);
}
.comparison-table td.feature-col { text-align: left; font-weight: 500; color: var(--black); }
.comparison-table td.our-col { background: #FFF8F6; font-weight: 600; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--gray-light); }
.comparison-table tr:hover td.our-col { background: #FFEFE8; }
.check-yes { color: var(--green-dark); font-weight: 700; }
.check-mid { color: #D4A017; font-weight: 600; }
.check-no { color: var(--red); }

/* ═══════════════════════════════════════
   RESEÑAS
═══════════════════════════════════════ */
.reviews {
  padding: 80px 0;
  background: var(--bg);
}
.rating-overview {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.rating-big {
  text-align: center;
  flex-shrink: 0;
}
.rating-number {
  display: block;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
}
.rating-stars-big { font-size: 22px; margin: 6px 0; }
.rating-count { font-size: 13px; color: var(--gray-mid); }
.rating-bars { flex: 1; min-width: 200px; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--gray-mid);
}
.bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 100px;
  transition: width 1s ease;
}
.bar-fill--low { background: var(--gray-mid); }
.rating-bar-row span:last-child { min-width: 30px; text-align: right; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange), #FF9A70);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-meta strong { display: block; font-size: 15px; font-weight: 700; }
.review-meta span { font-size: 12px; color: var(--gray-mid); }
.review-stars { font-size: 12px; }
.review-img-placeholder {
  background: linear-gradient(135deg, #2a2a2a, #444);
  border-radius: var(--radius-md);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-bottom: 14px;
  text-align: center;
}
.review-text {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 12px;
}
.review-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--gray-mid);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.testimonial-video-wrap {
  margin-top: 40px;
  text-align: center;
}
.testimonial-video {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  display: block;
  background: #111;
  box-shadow: var(--shadow-md);
}
.testimonial-caption {
  font-size: 15px;
  color: var(--gray-dark);
  font-style: italic;
}

/* ═══════════════════════════════════════
   BUNDLE
═══════════════════════════════════════ */
.bundle {
  padding: 80px 0;
  background: var(--white);
}
.bundle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.bundle-card {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: var(--transition);
  cursor: pointer;
}
.bundle-card:hover, .bundle-card.selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,.15);
}
.bundle-card--featured {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.bundle-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.bundle-header { margin-bottom: 20px; }
.bundle-header h3 { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; }
.bundle-header p { font-size: 13px; color: var(--gray-mid); margin-top: 2px; }
.bundle-contents ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.bundle-contents li { font-size: 14px; color: var(--gray-dark); font-weight: 500; }
.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.bundle-price-old { font-size: 18px; color: var(--gray-mid); text-decoration: line-through; }
.bundle-solo-hoy {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin: 2px 0 0;
}
.bundle-price-current { font-size: 36px; font-weight: 900; letter-spacing: -1.5px; }
.bundle-stock { font-size: 12px; color: var(--red); font-weight: 600; margin-bottom: 20px; }

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.payment-icon {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 500;
  background: var(--bg);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   TRUST / GARANTÍA
═══════════════════════════════════════ */
.trust {
  padding: 80px 0;
  background: var(--bg);
}
.guarantee-banner {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--green-bg);
  border: 1.5px solid rgba(46,204,113,.25);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.guarantee-icon { font-size: 48px; flex-shrink: 0; }
.guarantee-copy h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.guarantee-copy p { font-size: 15px; color: var(--gray-dark); }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
}
.trust-badge-icon { font-size: 24px; flex-shrink: 0; }

.faq-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  gap: 12px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-arrow {
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 18px;
}
.faq-answer p { font-size: 14px; color: var(--gray-dark); line-height: 1.7; }

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.final-cta {
  padding: 80px 20px;
  background: var(--black);
  text-align: center;
}
.final-cta-headline {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.final-cta-sub { font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 28px; }
.final-price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.price-current-big {
  font-size: 52px;
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
}
.final-cta .price-old { color: rgba(255,255,255,.4); font-size: 22px; }
.final-countdown {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
}
#countdownFinal { color: var(--orange); font-variant-numeric: tabular-nums; }
.final-trust {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #0A0A0A;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 16px;
  color: white;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  text-align: center;
}

/* ═══════════════════════════════════════
   HEADLINE MOBILE BREAK
═══════════════════════════════════════ */
.mobile-br { display: none; }
@media (max-width: 767px) {
  .mobile-br { display: block; }
}

/* ═══════════════════════════════════════
   VIDEO CAROUSEL
═══════════════════════════════════════ */
.video-carousel-wrap {
  margin-bottom: 48px;
}
.video-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  cursor: grab;
}
.video-carousel::-webkit-scrollbar { display: none; }
.video-carousel:active { cursor: grabbing; }

.carousel-item {
  flex-shrink: 0;
  width: 80vw;
  max-width: 380px;
  scroll-snap-align: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
  aspect-ratio: 9/16;
}
.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* En desktop los videos son más anchos y horizontales */
@media (min-width: 768px) {
  .carousel-item {
    width: 340px;
    aspect-ratio: 9/16;
  }
  .video-carousel {
    padding: 8px 0 16px;
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════
   WHATSAPP — Botón flotante (FAB)
═══════════════════════════════════════ */
.wsp-fab {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 190;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 12px 18px 12px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  transition: var(--transition);
  text-decoration: none;
}
.wsp-fab:hover {
  background: #20c05a;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.wsp-fab-text { line-height: 1; }

/* En desktop no necesita "Consultar", solo el icono + texto corto */
@media (min-width: 768px) {
  .wsp-fab { bottom: 28px; }
}

/* ═══════════════════════════════════════
   WHATSAPP — CTA inline en bundle
═══════════════════════════════════════ */
.btn-wsp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-wsp:hover {
  background: #20c05a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}
.wsp-inline-cta {
  text-align: center;
  margin: 28px 0 0;
}
.wsp-bundle-btn {
  display: inline-flex;
  width: auto;
  max-width: 320px;
  margin: 0 auto;
}
.wsp-inline-note {
  font-size: 13px;
  color: var(--gray-mid);
  margin-top: 8px;
}

/* ═══════════════════════════════════════
   BUNDLE PRODUCT IMAGE
═══════════════════════════════════════ */
.bundle-product-img {
  text-align: center;
  margin: 32px 0 0;
}
.product-solo-img {
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.15));
}

/* ═══════════════════════════════════════
   STICKY BOTTOM CTA (solo mobile)
═══════════════════════════════════════ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 20px max(12px, env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,.12);
}
.mobile-sticky-cta.visible {
  transform: translateY(0);
}
.mobile-sticky-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-sticky-price {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.mobile-price-old {
  font-size: 12px;
  color: var(--gray-mid);
  text-decoration: line-through;
  line-height: 1;
}
.mobile-price-current {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--black);
  line-height: 1.2;
}
.mobile-sticky-btn {
  flex: 1;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════
   TABLET: 768px+
═══════════════════════════════════════ */
@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .hero-media { order: 2; }
  .hero-copy { order: 1; }
  .video-placeholder { max-height: 600px; }

  .ugc-grid { grid-template-columns: repeat(4, 1fr); }
  .ugc-card--hidden-mobile { display: block; }
  .mini-reviews { flex-direction: row; gap: 12px; }
  .mini-review { flex: 1; }

  .problem-inner { grid-template-columns: 1fr 1fr; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .bundle-grid { grid-template-columns: repeat(3, 1fr); }
  .bundle-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 680px; margin-left: auto; margin-right: auto; }

  .trust-badges { grid-template-columns: repeat(4, 1fr); }

  .footer-inner { flex-direction: row; justify-content: space-between; }
}

/* ═══════════════════════════════════════
   DESKTOP: 1200px+
═══════════════════════════════════════ */
@media (min-width: 1200px) {
  .hero { padding: 100px 0 100px; }
  .hero-inner { gap: 80px; }

  .steps-grid { gap: 16px; }

  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .bundle-card--featured { margin-top: -12px; padding-top: 44px; }
}

/* ═══════════════════════════════════════
   MOBILE: < 768px
═══════════════════════════════════════ */
@media (max-width: 767px) {
  /* Sticky CTA visible en mobile */
  .mobile-sticky-cta { display: block; }

  /* Hero: video arriba, copy abajo */
  .hero { padding: 20px 0 100px; }
  .hero-inner { gap: 24px; }
  .hero-media { order: 1; }
  .hero-copy { order: 2; }

  /* Video hero ocupa ancho completo en mobile */
  .hero-video-wrap {
    border-radius: var(--radius-lg);
    aspect-ratio: 16/9;
  }

  /* Padding inferior para no solapar con sticky CTA */
  .site-footer { padding-bottom: 80px; }
}

/* ═══════════════════════════════════════
   MOBILE PEQUEÑO: < 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .steps-grid {
    flex-direction: column;
    gap: 20px;
  }
  .step-arrow { display: none; }
  .price-current { font-size: 30px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-headline { letter-spacing: -1.5px; }
  .guarantee-banner { flex-direction: column; text-align: center; }
  .rating-overview { flex-direction: column; align-items: flex-start; gap: 20px; }
  .bundle-card { padding: 24px 20px; }
  .section-headline { letter-spacing: -1px; }
  .btn-lg { padding: 16px 28px; font-size: 16px; }
}
