/* =====================================================
   FÓRMULAS RENTABLES 200 - SALES PAGE STYLESHEET
   Design System: Dark Luxury, Responsive & Conversion-Focused
   ===================================================== */

:root {
  /* Core Dark Colors */
  --bg-main: #090A0C;
  --bg-surface-1: #101116;
  --bg-surface-2: #16171E;
  --bg-surface-3: #1F212B;
  --bg-card-glass: rgba(22, 23, 30, 0.94);
  --bg-card-elevated: #1B1C24;

  /* Primary Accent: Intense Gold */
  --gold-primary: #F5C518;
  --gold-hover: #FFD43B;
  --gold-dark: #C29B0E;
  --gold-glow: rgba(245, 197, 24, 0.45);
  --gold-subtle: rgba(245, 197, 24, 0.12);

  /* Secondary Accent: High-CTR Emerald Green */
  --green-primary: #2ECC71;
  --green-emerald: #10B981;
  --green-dark: #145A32;
  --green-glow: rgba(46, 204, 113, 0.4);
  --green-subtle: rgba(46, 204, 113, 0.15);

  /* Alert / Urgency Accents */
  --red-accent: #EF4444;
  --red-glow: rgba(239, 68, 68, 0.35);

  /* Text & Contrast */
  --text-white: #FFFFFF;
  --text-cream: #F8F9FA;
  --text-muted: #A0AEC0;
  --text-subtle: #718096;
  --text-dark: #090A0C;

  /* Borders & Highlights */
  --border-light: rgba(255, 255, 255, 0.09);
  --border-medium: rgba(255, 255, 255, 0.18);
  --border-gold: rgba(245, 197, 24, 0.45);
  --border-green: rgba(46, 204, 113, 0.4);

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 12px 36px rgba(245, 197, 24, 0.35);
  --shadow-green: 0 12px 36px rgba(46, 204, 113, 0.35);

  /* Layout Container */
  --max-width: 1120px;
  --container-pad: 24px;
}

/* =====================================================
   GLOBAL RESET & ACCESSIBILITY
   ===================================================== */
*,
*::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-cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background: var(--bg-main);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(20, 90, 50, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 10% 25%, rgba(245, 197, 24, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(46, 204, 113, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 88%, rgba(20, 90, 50, 0.2) 0%, transparent 55%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  touch-action: manipulation;
}

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

.container-narrow {
  max-width: 860px;
}

/* =====================================================
   BARRA SUPERIOR DE ANUNCIOS
   ===================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #0F4024 0%, #1A693B 50%, #0F4024 100%);
  color: #FFFFFF;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-bottom: 1px solid rgba(46, 204, 113, 0.4);
  position: relative;
  z-index: 60;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.announcement-text strong {
  color: var(--gold-primary);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--gold-primary);
  flex-shrink: 0;
  animation: pulseDot 1.5s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.8); }
  70% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 0 8px rgba(245, 197, 24, 0); }
  100% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(245, 197, 24, 0); }
}

/* =====================================================
   SECCIÓN 1: HERO (MOCKUP 3D TANGIBLE ARRIBA DE LA HEADLINE)
   ===================================================== */
.hero-section {
  padding: 40px 0 54px;
  position: relative;
  text-align: center;
}

.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pre-headline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.14);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(245, 197, 24, 0.18);
}

/* Mockup Visual 3D Tangible (Arriba de la Headline) */
.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-lg);
  padding: 8px;
  margin: 0 auto 24px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, rgba(46, 204, 113, 0.05) 50%, transparent 70%);
}

.hero-mockup-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 0, 0, 0.85);
  border: 1px solid var(--border-medium);
  transition: transform 0.4s ease;
}

.hero-mockup-img:hover {
  transform: translateY(-3px);
}

.floating-badge {
  position: absolute;
  background: rgba(16, 17, 22, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md), 0 0 20px rgba(245, 197, 24, 0.2);
  z-index: 10;
  text-align: left;
}

.floating-badge-top-left {
  top: -6px;
  left: -8px;
}

.floating-badge-bottom-right {
  bottom: -6px;
  right: -8px;
  border-color: var(--border-green);
  box-shadow: var(--shadow-md), 0 0 20px rgba(46, 204, 113, 0.2);
}

.badge-icon {
  font-size: 1.4rem;
}

.badge-title {
  font-weight: 800;
  font-size: 0.84rem;
  color: var(--text-white);
}

.badge-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Headline Principal */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4.2vw, 2.9rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-white);
  max-width: 900px;
  margin: 0 auto 18px;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #FFD43B 0%, #F5C518 50%, #2ECC71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle-highlight {
  background: linear-gradient(90deg, rgba(20, 90, 50, 0.65) 0%, rgba(15, 64, 36, 0.85) 100%);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #E6FAEC;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  margin: 0 auto 18px;
  max-width: 780px;
  line-height: 1.45;
}

.hero-subheadline {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 26px;
  line-height: 1.65;
}

.hero-subheadline strong {
  color: var(--text-cream);
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #2ECC71 0%, #145A32 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 900;
  padding: 18px 34px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-green), 0 0 30px rgba(46, 204, 113, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  min-height: 56px;
}

.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(30deg);
  animation: shineButton 3.5s infinite;
}

@keyframes shineButton {
  0% { left: -60%; }
  30% { left: 140%; }
  100% { left: 140%; }
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 44px rgba(46, 204, 113, 0.55), 0 0 40px rgba(46, 204, 113, 0.6);
  background: linear-gradient(135deg, #34D399 0%, #2ECC71 100%);
  color: #FFFFFF;
}

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

.trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-wrap: wrap;
}

.trust-line .dot {
  color: var(--gold-primary);
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-badge-item svg {
  width: 16px;
  height: 16px;
  fill: var(--green-primary);
  flex-shrink: 0;
}

/* =====================================================
   SECCIÓN 2: IDENTIFICACIÓN DEL DOLOR & OPORTUNIDAD
   ===================================================== */
.pain-section {
  padding: 75px 0;
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.12);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
  max-width: 860px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 12px auto 0;
  line-height: 1.6;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.pain-card {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.pain-icon-wrapper {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  background: rgba(239, 68, 68, 0.12);
  padding: 8px;
  border-radius: var(--radius-sm);
}

.pain-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.pain-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pain-text strong {
  color: var(--text-cream);
}

/* Box Oportunidad de Mercado */
.market-opportunity-box {
  background: linear-gradient(135deg, rgba(20, 90, 50, 0.35) 0%, rgba(16, 20, 26, 0.95) 100%);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md), 0 0 30px rgba(46, 204, 113, 0.15);
}

.opportunity-header {
  margin-bottom: 14px;
}

.opp-badge {
  display: inline-block;
  background: var(--green-primary);
  color: #090A0C;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.opportunity-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text-white);
}

.opp-desc {
  font-size: 1.05rem;
  color: var(--text-cream);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.65;
}

.opp-desc strong {
  color: var(--gold-primary);
}

/* =====================================================
   SECCIÓN 3: PRESENTACIÓN DE LA SOLUCIÓN (IMAGEN PRIMERO)
   ===================================================== */
.offer-presentation-section {
  padding: 70px 0;
}

.offer-big-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}

.offer-title-row {
  text-align: center;
  margin-bottom: 22px;
}

.offer-name-badge {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold-primary);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.offer-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  font-weight: 900;
  color: var(--text-white);
}

.offer-main-heading span {
  color: var(--gold-primary);
}

/* Visual Showcase Card (IMAGEN PRIMERO) */
.visual-showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md), 0 0 30px rgba(245, 197, 24, 0.15);
}

.visual-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.visual-showcase-card:hover .visual-showcase-img {
  transform: scale(1.02);
}

.visual-showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(9, 10, 12, 0.96) 0%, rgba(9, 10, 12, 0.75) 60%, transparent 100%);
  padding: 22px;
  text-align: left;
}

.visual-tag {
  background: var(--gold-primary);
  color: #090A0C;
  font-weight: 900;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 6px;
}

.visual-caption {
  font-size: 0.92rem;
  color: var(--text-cream);
  font-weight: 500;
  line-height: 1.4;
}

.offer-body-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 26px;
}

.offer-body-text strong {
  color: var(--text-white);
}

.offer-contrast-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}

.contrast-item {
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contrast-item.negative {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.contrast-item.positive {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid var(--border-green);
}

.contrast-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.contrast-text {
  font-size: 0.92rem;
  color: var(--text-cream);
  line-height: 1.5;
}

.offer-summary-punchline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-cream);
  text-align: center;
  line-height: 1.5;
  border-top: 1px solid var(--border-light);
  padding-top: 22px;
}

.offer-summary-punchline span {
  color: var(--green-primary);
}

/* =====================================================
   SECCIÓN 4: DESGLOSE DE LOS 3 LIBROS (IMAGEN PRIMERO)
   ===================================================== */
.breakdown-section {
  padding: 75px 0;
  background: var(--bg-surface-1);
}

.books-stack-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 44px;
}

.book-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  transition: all 0.3s ease;
}

.book-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.book-card-featured {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, var(--bg-surface-2) 0%, rgba(245, 197, 24, 0.05) 100%);
}

.book-card-bonus {
  border-color: var(--border-green);
  background: linear-gradient(135deg, var(--bg-surface-2) 0%, rgba(46, 204, 113, 0.07) 100%);
}

.book-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-cover-img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}

.book-cover-img:hover {
  transform: scale(1.03);
}

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

.book-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
  align-self: flex-start;
}

.book-badge-gold {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
}

.book-badge-green {
  background: rgba(46, 204, 113, 0.18);
  color: var(--green-primary);
  border: 1px solid var(--border-green);
}

.book-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.book-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}

.book-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.book-features-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--text-cream);
  line-height: 1.5;
}

.check-icon {
  background: var(--green-primary);
  color: #090A0C;
  font-weight: 900;
  font-size: 0.72rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Workshop Showcase Box (IMAGEN PRIMERO) */
.workshop-showcase-box {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.workshop-media {
  width: 100%;
  height: 100%;
}

.workshop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.workshop-content {
  padding: 34px;
}

.workshop-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.16);
  color: var(--green-primary);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.workshop-content h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.workshop-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.workshop-checkmarks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.workshop-checkmarks li {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-cream);
}

.btn-cta-secondary {
  padding: 14px 26px;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #145A32 0%, #0F4024 100%);
  border-color: rgba(46, 204, 113, 0.5);
  max-width: 480px;
}

/* =====================================================
   SECCIÓN 5: LA MATEMÁTICA BRUTAL DEL ORO LÍQUIDO
   ===================================================== */
.profit-breakdown-section {
  padding: 75px 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 90, 50, 0.2) 0%, var(--bg-main) 75%);
}

.profit-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.profit-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.profit-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.profit-card-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.p-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.p-card-title-wrap h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 2px;
}

.p-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.profit-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 14px;
}

.stat-col {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-subtle);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.stat-col.cost .stat-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #F87171;
}

.stat-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 800;
}

.stat-col.sell .stat-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-primary);
}

.profit-margin-badge {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-cream);
}

.profit-margin-badge strong {
  color: var(--green-primary);
}

/* Impact Box Multiplicador */
.multiplier-impact-box {
  background: linear-gradient(135deg, #181920 0%, #111217 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(245, 197, 24, 0.18);
  text-align: center;
}

.multiplier-header {
  margin-bottom: 28px;
}

.multiplier-badge {
  display: inline-block;
  background: var(--gold-primary);
  color: #090A0C;
  font-weight: 900;
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.multiplier-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--text-white);
}

.multiplier-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 30px;
  text-align: left;
}

.mult-step-card {
  background: var(--bg-surface-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
}

.mult-step-card.highlight {
  background: linear-gradient(135deg, rgba(20, 90, 50, 0.4) 0%, rgba(15, 64, 36, 0.7) 100%);
  border: 2px solid var(--green-primary);
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
}

.mult-number {
  width: 30px;
  height: 30px;
  background: var(--gold-primary);
  color: #090A0C;
  font-weight: 900;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mult-step-card.highlight .mult-number {
  background: var(--green-primary);
}

.mult-step-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.35;
}

.mult-step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.mult-step-card p strong {
  color: var(--text-cream);
}

.multiplier-cta-wrap {
  display: flex;
  justify-content: center;
}

.btn-cta-sim {
  padding: 16px 30px;
  font-size: 1.05rem;
  max-width: 580px;
  width: 100%;
}

/* =====================================================
   SECCIÓN 6: PARA QUIÉN ES ESTO
   ===================================================== */
.target-section {
  padding: 75px 0;
  background: var(--bg-surface-1);
}

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

.target-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.target-card:hover {
  border-color: var(--border-green);
  transform: translateY(-2px);
}

.target-arrow {
  color: var(--green-primary);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.target-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.target-text strong {
  color: var(--text-cream);
}

/* =====================================================
   SECCIÓN 7: PRUEBA SOCIAL / COMENTARIOS DE COMUNIDAD
   ===================================================== */
.testimonials-section {
  padding: 75px 0;
  background: var(--bg-main);
}

.fb-comments-wrapper {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 26px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.fb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.fb-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fb-logo-icon {
  width: 22px;
  height: 22px;
  fill: #1877F2;
}

.fb-header-count {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

.fb-filter-label {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.fb-filter-val {
  color: var(--text-muted);
}

.fb-comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fb-comment-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fb-comment-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-medium);
}

.fb-avatar-small {
  width: 34px;
  height: 34px;
}

.fb-comment-reply {
  margin-left: 48px;
}

.fb-comment-content {
  flex-grow: 1;
}

.fb-bubble {
  background: var(--bg-surface-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  position: relative;
}

.fb-author-name {
  font-weight: 700;
  font-size: 0.93rem;
  color: #4B9BFA;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.verified-buyer-badge {
  background: rgba(46, 204, 113, 0.15);
  color: var(--green-primary);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-green);
}

.fb-comment-text {
  font-size: 0.93rem;
  color: var(--text-cream);
  line-height: 1.5;
}

.fb-comment-text strong {
  color: var(--gold-primary);
}

.fb-mention {
  color: #4B9BFA;
  font-weight: 600;
}

.fb-reactions-badge {
  position: absolute;
  bottom: -9px;
  right: 12px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  box-shadow: var(--shadow-sm);
}

.fb-comment-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-subtle);
  margin-top: 5px;
  padding-left: 6px;
}

.fb-action-btn {
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
}

.fb-action-btn:hover {
  text-decoration: underline;
}

.fb-verified-social-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.fb-verified-social-badge svg {
  width: 15px;
  height: 15px;
  fill: var(--green-primary);
}

/* =====================================================
   SECCIÓN 8: OFERTA IRRESISTIBLE & PRECIO (ÚNICO LUGAR)
   ===================================================== */
.pricing-section {
  padding: 75px 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 90, 50, 0.22) 0%, var(--bg-main) 80%);
}

.pricing-box {
  background: var(--bg-surface-2);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-xl);
  padding: 42px 34px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(245, 197, 24, 0.25);
  text-align: center;
}

.pricing-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F5C518 0%, #2ECC71 100%);
  color: #090A0C;
  font-weight: 900;
  font-size: 0.84rem;
  padding: 7px 22px;
  border-radius: var(--radius-full);
  letter-spacing: 0.6px;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.45);
  max-width: 90%;
  text-align: center;
}

.pricing-header {
  margin-top: 12px;
  margin-bottom: 24px;
}

.pricing-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text-white);
}

.pricing-stack-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
  background: var(--bg-surface-1);
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.pricing-stack-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stack-text {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93rem;
  color: var(--text-cream);
  flex-wrap: wrap;
  gap: 6px;
}

.stack-val {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.badge-free {
  background: rgba(46, 204, 113, 0.2);
  color: var(--green-primary);
  border: 1px solid var(--border-green);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 2px 9px;
  border-radius: var(--radius-full);
}

.price-display-wrapper {
  margin-bottom: 26px;
}

.price-anchor-regular {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-anchor-regular s {
  color: var(--red-accent);
  font-weight: 800;
}

.price-offer-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-cream);
  margin-bottom: 6px;
}

.price-big-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  text-shadow: 0 0 30px var(--gold-glow);
  margin-bottom: 6px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-muted);
}

.price-note {
  font-size: 0.86rem;
  color: var(--text-subtle);
}

.btn-cta-main-price {
  width: 100%;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  padding: 20px 30px;
  margin-bottom: 16px;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.payment-badge {
  background: var(--bg-surface-3);
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

/* =====================================================
   SECCIÓN 9: GARANTÍA DE 7 DÍAS (CON SELLO DORADO)
   ===================================================== */
.guarantee-section {
  padding: 70px 0;
}

.guarantee-card {
  background: linear-gradient(135deg, #181920 0%, #101116 100%);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 38px;
  display: flex;
  align-items: center;
  gap: 34px;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(245, 197, 24, 0.16);
}

.guarantee-badge-container {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-badge-img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(245, 197, 24, 0.45));
  transition: transform 0.3s ease;
}

.guarantee-badge-img:hover {
  transform: rotate(4deg) scale(1.04);
}

.guarantee-content {
  flex-grow: 1;
}

.guarantee-tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold-primary);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.guarantee-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.guarantee-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.guarantee-signature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-top: 12px;
  flex-wrap: wrap;
}

/* =====================================================
   SECCIÓN 10: PREGUNTAS FRECUENTES (FAQ)
   ===================================================== */
.faq-section {
  padding: 75px 0;
  background: var(--bg-surface-1);
}

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

.faq-item {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question-btn {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  background: none;
  gap: 14px;
}

.faq-toggle-icon {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

/* =====================================================
   SECCIÓN 11: CTA FINAL & P.D.
   ===================================================== */
.final-cta-section {
  padding: 75px 0;
  text-align: center;
}

.final-cta-card {
  background: linear-gradient(135deg, #181920 0%, #101116 100%);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-xl);
  padding: 46px 32px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(46, 204, 113, 0.16);
}

.final-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: var(--green-primary);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.final-cta-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.65;
}

.final-cta-text strong {
  color: var(--text-cream);
}

.btn-cta-final {
  padding: 20px 36px;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  max-width: 660px;
  margin: 0 auto 26px;
}

.ps-box {
  background: var(--bg-surface-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.ps-text {
  font-size: 0.92rem;
  color: var(--text-cream);
  line-height: 1.55;
}

.ps-text strong {
  color: var(--gold-primary);
}

/* =====================================================
   SECCIÓN 12: FOOTER PROFESIONAL
   ===================================================== */
.site-footer {
  padding: 48px 0 calc(30px + env(safe-area-inset-bottom, 0px));
  background: #060708;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-subtle);
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 12px;
}

.footer-brand-title span {
  color: var(--gold-primary);
}

.footer-contact {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-contact a {
  color: var(--gold-primary);
  font-weight: 600;
}

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

.footer-link {
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 4px 8px;
}

.footer-link:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.footer-disclaimer {
  max-width: 820px;
  margin: 0 auto 18px;
  line-height: 1.5;
  font-size: 0.74rem;
}

.footer-copyright {
  font-size: 0.8rem;
}

/* =====================================================
   BOTÓN FLOTANTE PERSISTENTE (ACCESIBLE & NO INVASIVO)
   ===================================================== */
.floating-cta-widget {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 20px));
  right: 20px;
  z-index: 990;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.floating-cta-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1C1D24 0%, #101116 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-full);
  padding: 8px 18px 8px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85), 0 0 25px rgba(245, 197, 24, 0.35);
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.floating-badge-discount {
  position: absolute;
  top: -10px;
  right: 14px;
  background: linear-gradient(90deg, #EF4444 0%, #DC2626 100%);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.6);
  letter-spacing: 0.4px;
  z-index: 10;
}

.floating-cta-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ECC71 0%, #145A32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.6);
  flex-shrink: 0;
  animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.floating-cta-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.floating-cta-label {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.15;
  white-space: nowrap;
}

.floating-cta-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.floating-cta-link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9), 0 0 35px rgba(245, 197, 24, 0.5);
  border-color: var(--green-primary);
}

/* =====================================================
   MODALES LEGALES
   ===================================================== */
.legal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.legal-modal.active {
  display: flex;
}

.legal-modal-dialog {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.legal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-light);
}

.legal-modal-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
}

.legal-modal-close {
  font-size: 1.3rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-modal-close:hover {
  color: var(--text-white);
}

.legal-modal-body {
  padding: 22px;
  overflow-y: auto;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-modal-body h4 {
  color: var(--text-white);
  margin: 16px 0 6px;
  font-size: 1rem;
}

.legal-modal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

/* =====================================================
   BREAKPOINTS & RESPONSIVE DESIGN (TABLETS & MOBILE)
   ===================================================== */

/* Tablet Horizontal / Small Laptops (992px - 1199px) */
@media (max-width: 1199px) {
  :root {
    --max-width: 960px;
    --container-pad: 20px;
  }
}

/* Tablet Vertical & Phablets (< 992px) */
@media (max-width: 991px) {
  .hero-section {
    padding: 32px 0 44px;
  }

  .hero-mockup-wrapper {
    max-width: 480px;
    margin-bottom: 20px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .profit-comparison-grid {
    grid-template-columns: 1fr;
  }

  .multiplier-steps-grid {
    grid-template-columns: 1fr;
  }

  .target-grid {
    grid-template-columns: 1fr 1fr;
  }

  .book-card {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 22px;
  }

  .book-media {
    max-width: 240px;
    margin: 0 auto;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .workshop-img {
    max-height: 260px;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .guarantee-signature {
    justify-content: center;
  }
}

/* Mobile Standard (< 768px) */
@media (max-width: 767px) {
  :root {
    --container-pad: 16px;
  }

  .announcement-bar {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .hero-section {
    padding: 20px 0 36px;
  }

  .pre-headline-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  /* MOCKUP 3D TANGIBLE EN MOBILE (ARRIBA DE LA HEADLINE) */
  .hero-mockup-wrapper {
    max-width: 340px;
    margin: 0 auto 16px;
    padding: 4px;
  }

  .floating-badge {
    position: static;
    margin: 6px auto 0;
    display: inline-flex;
    padding: 6px 10px;
  }

  .badge-icon {
    font-size: 1.1rem;
  }

  .badge-title {
    font-size: 0.75rem;
  }

  .badge-desc {
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: clamp(1.4rem, 5.5vw, 1.95rem);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .hero-subtitle-highlight {
    font-size: 0.9rem;
    padding: 8px 12px;
    margin-bottom: 12px;
  }

  .hero-subheadline {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  /* BOTÓN HERO */
  .btn-cta {
    font-size: 0.94rem;
    padding: 16px 18px;
    min-height: 52px;
    width: 100%;
    box-shadow: var(--shadow-green), 0 0 20px rgba(46, 204, 113, 0.4);
  }

  .offer-contrast-box {
    grid-template-columns: 1fr;
  }

  .target-grid {
    grid-template-columns: 1fr;
  }

  .book-card {
    padding: 22px 16px;
  }

  .book-media {
    max-width: 200px;
    margin: 0 auto 10px;
  }

  .fb-comment-reply {
    margin-left: 20px;
  }

  .fb-comments-wrapper {
    padding: 18px 14px;
  }

  .pricing-box {
    padding: 32px 14px 22px;
  }

  .pricing-stack-list {
    padding: 14px;
  }

  .guarantee-badge-img {
    width: 125px;
    height: 125px;
  }

  /* BOTÓN FLOTANTE RESPONSIVO EN MOBILE (NO INVASIVO) */
  .floating-cta-widget {
    bottom: max(12px, env(safe-area-inset-bottom, 12px));
    right: 12px;
    left: 12px;
    display: flex;
    justify-content: center;
  }

  .floating-cta-link {
    width: 100%;
    max-width: 420px;
    justify-content: center;
    padding: 7px 12px;
    border-radius: var(--radius-full);
  }

  .floating-cta-icon-circle {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .floating-cta-label {
    font-size: 0.8rem;
  }

  .floating-cta-sub {
    font-size: 0.65rem;
  }

  .site-footer {
    padding-bottom: max(32px, calc(68px + env(safe-area-inset-bottom, 0px)));
  }
}

/* Small Screens (< 400px) */
@media (max-width: 399px) {
  :root {
    --container-pad: 12px;
  }

  .btn-cta {
    font-size: 0.86rem;
    padding: 14px 14px;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-mockup-wrapper {
    max-width: 280px;
  }

  .price-big-number {
    font-size: 2.6rem;
  }

  .fb-author-name {
    font-size: 0.85rem;
  }

  .fb-comment-text {
    font-size: 0.85rem;
  }
}