/* ==========================================================================
   AIR FRYER 365 RECETAS - DESIGN SYSTEM & STYLESHEET
   Colores & Estilo de la portada:
   Verde (#00B050 / #05A850), Amarillo (#FED500 / #FFCC00), Blanco y Carbón
   Estructura editorial inspirada en la referencia de alta conversión
   ========================================================================== */

:root {
  /* Paleta Oficial Portada */
  --green-primary: #05A850;
  --green-dark: #076233;
  --green-deep: #0C361E;
  --green-light: #EBF8F1;
  --green-glow: rgba(5, 168, 80, 0.25);

  --yellow-primary: #FED500;
  --yellow-hover: #E5BE00;
  --yellow-dark: #8A6800;
  --yellow-light: #FFFBE6;
  --yellow-glow: rgba(254, 213, 0, 0.35);

  --dark-bg: #111714;
  --dark-card: #18221D;
  --dark-border: #25332C;

  --text-main: #141E19;
  --text-muted: #4B5B53;
  --text-light: #7E9288;
  --white: #FFFFFF;
  --bg-page: #F7FAF8;
  --bg-card: #FFFFFF;
  --border-light: #E2ECE6;

  /* Tipografías */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sombras y Elevaciones */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(7, 98, 51, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.09);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.14);
  --shadow-glow-green: 0 10px 30px rgba(5, 168, 80, 0.3);
  --shadow-glow-yellow: 0 10px 30px rgba(254, 213, 0, 0.35);

  /* Bordes Redondeados */
  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transiciones */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET Y ESTILOS BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

.hide-mobile {
  display: inline;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/* ==========================================================================
   TIPOGRAFÍA Y RESALTADOS EDITORIALES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.highlight-serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green-primary);
  letter-spacing: -0.01em;
}

.highlight-green {
  color: var(--green-primary);
}

.highlight-yellow {
  background: linear-gradient(120deg, var(--yellow-primary) 0%, var(--yellow-primary) 100%);
  background-repeat: no-repeat;
  background-size: 100% 35%;
  background-position: 0 88%;
  color: var(--text-main);
  padding: 0 4px;
  border-radius: 4px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.badge-primary {
  background-color: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(5, 168, 80, 0.2);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* ==========================================================================
   BOTONES Y LLAMADOS A LA ACCIÓN (CTAs)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, #FED500 0%, #F5C500 100%);
  color: #111815;
  box-shadow: 0 6px 20px rgba(254, 213, 0, 0.45), 0 2px 4px rgba(0, 0, 0, 0.08);
  border: 2px solid #FFE642;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 28px rgba(254, 213, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.12);
  background: linear-gradient(180deg, #FFE033 0%, #EDB800 100%);
}

.btn-hero-ref {
  padding: 1rem 2rem;
  font-size: 1.15rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-ref-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.btn-hero-ref:hover .btn-ref-arrow {
  transform: translateX(4px);
}

.btn-ref-arrow svg {
  width: 16px;
  height: 16px;
}

.btn-outline-hero {
  background-color: var(--white);
  color: var(--text-main);
  border: 2px solid var(--border-light);
  padding: 1rem 1.75rem;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.btn-outline-hero:hover {
  border-color: var(--green-primary);
  color: var(--green-dark);
  background-color: var(--green-light);
  transform: translateY(-2px);
}

.btn-header {
  background-color: var(--green-primary);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  gap: 0.4rem;
}

.btn-header:hover {
  background-color: var(--green-dark);
  transform: translateY(-1px);
}

.btn-xl {
  padding: 1.15rem 2rem;
  width: 100%;
  max-width: 480px;
  flex-direction: column;
}

.btn-xl .btn-text {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.btn-xl .btn-subtext {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 0.2rem;
}

.btn-block {
  width: 100%;
  max-width: 100%;
}

.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
}

/* Efecto de brillo dinámico en botones */
.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: btnShineAnim 4s infinite ease-in-out;
}

@keyframes btnShineAnim {
  0% { left: -60%; }
  25% { left: 140%; }
  100% { left: 140%; }
}

@keyframes pulseEffect {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.btn-action-pulse {
  animation: pulseEffect 3s infinite ease-in-out;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #0C361E 0%, #05A850 50%, #0C361E 100%);
  color: var(--white);
  padding: 0.55rem 0;
  font-size: 0.85rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  text-align: center;
}

.announcement-badge {
  background-color: var(--yellow-primary);
  color: #121815;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

.countdown-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
  letter-spacing: 0.05em;
}

.cd-box {
  color: var(--yellow-primary);
}

/* ==========================================================================
   HEADER / NAVEGACIÓN
   ========================================================================== */
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
  position: relative;
  z-index: 90;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px var(--green-glow);
}

.logo-badge-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.logo-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: 0.15em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--green-primary);
}

@media (max-width: 992px) {
  .header-nav {
    display: none;
  }
}

/* ==========================================================================
   SECCIÓN 1: HERO CON VIDEO DE FONDO (ESTILO REFERENCIA)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  background-color: #000000;
  overflow: hidden;
}

/* Background Video Styles (Idéntico al overlay de la referencia) */
.hero-video-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.95) contrast(1.05);
  transform: scale(1.02);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.edition-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yellow-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.25rem;
}

.hero-reference-title {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-reference-title .highlight-serif-italic {
  color: var(--yellow-primary);
  text-shadow: 0 0 25px rgba(254, 213, 0, 0.4);
}

.hero-reference-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #D1E7DD;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons-duo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-price-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.price-bubble {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.price-bubble .price-strikethrough {
  font-size: 0.85rem;
  color: #64748B;
  text-decoration: line-through;
}

.price-bubble .price-deal {
  font-size: 0.95rem;
  color: var(--green-dark);
}

.price-bubble .price-deal strong {
  color: var(--green-primary);
  font-size: 1.2rem;
}

.clean-payment-tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: #E2ECE6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-rating-clean {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.stars-gold {
  color: #FBBF24;
  letter-spacing: 2px;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2ECE6;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--yellow-primary);
  flex-shrink: 0;
}

/* Hero Visual / Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.bundle-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  background: var(--white);
  padding: 0.75rem;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.mockup-main-image {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bundle-visual-card:hover .mockup-main-image {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  background-color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  z-index: 10;
  border: 1px solid var(--border-light);
  animation: floatAnim 4s ease-in-out infinite alternate;
}

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

.badge-top-right {
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, var(--white) 0%, var(--green-light) 100%);
  border-color: rgba(5, 168, 80, 0.3);
}

.badge-bottom-left {
  bottom: 25px;
  left: -20px;
  animation-delay: 2s;
}

.badge-sweet-savory {
  bottom: -15px;
  right: 15px;
  padding: 0.35rem 0.5rem;
  background: #111815;
  border: none;
}

.split-pill {
  display: flex;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.part-sweet {
  background-color: var(--yellow-primary);
  color: #111815;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.part-savory {
  background-color: var(--green-primary);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.devices-supported {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ==========================================================================
   TRUST BAR SECTION
   ========================================================================== */
.trust-bar-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-bar-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.t-icon {
  font-size: 1.75rem;
  background-color: var(--green-light);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.t-info h4 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.t-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ==========================================================================
   SECCIÓN 2: "IMAGINÁ ESTO" (DISEÑO EXACTO A LA REFERENCIA CON TELÉFONO & BUBBLES)
   ========================================================================== */
.imagina-section-ref {
  padding: 6rem 0;
  background: linear-gradient(135deg, #07381E 0%, #032112 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.imagina-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(5, 168, 80, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(254, 213, 0, 0.1) 0%, transparent 45%);
  pointer-events: none;
}

.imagina-pattern-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.015) 20px,
    transparent 20px,
    transparent 40px
  );
  pointer-events: none;
}

.imagina-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Column: Text */
.imagina-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.imagina-eyebrow-clean {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.imagina-heading-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
}

.imagina-body-bold {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--white);
}

.imagina-footer-note {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: var(--yellow-primary);
  margin-top: 0.5rem;
}

/* Right Column: Phone Composition & Floating Chat Bubbles */
.imagina-phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 520px;
}

.phone-composition-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
}

/* Smartphone Frame */
.phone-frame {
  width: 290px;
  height: 560px;
  background-color: #000000;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 0 2px #333d37,
    0 0 0 5px #1a221e;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform 0.4s ease;
}

.phone-composition-wrapper:hover .phone-frame {
  transform: rotate(0deg) scale(1.01);
}

.phone-speaker-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 20px;
  background-color: #000000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-speaker-bar {
  width: 35px;
  height: 4px;
  background-color: #222;
  border-radius: 4px;
}

.phone-camera-dot {
  width: 7px;
  height: 7px;
  background-color: #111;
  border-radius: 50%;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background-color: #111;
}

.phone-screen-header {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-screen-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

/* Floating Chat Notification Bubbles */
.chat-bubble {
  position: absolute;
  background-color: var(--white);
  color: #19231E;
  padding: 0.85rem 1.15rem;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  z-index: 10;
  width: max-content;
  max-width: 290px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatBubble 4s infinite ease-in-out alternate;
}

.chat-bubble:hover {
  transform: scale(1.04) translateY(-3px) !important;
  z-index: 20;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.bubble-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bubble-author-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.bubble-content {
  position: relative;
}

.bubble-content p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1E293B;
  margin: 0;
}

.bubble-quote-mark {
  color: #05A850;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -8px;
  right: -6px;
  opacity: 0.7;
}

/* Staggered Positions for Bubbles around Phone */
.bubble-pos-1 {
  top: 40px;
  left: -80px;
  animation-delay: 0s;
}

.bubble-pos-2 {
  top: 160px;
  right: -90px;
  animation-delay: 1s;
}

.bubble-pos-3 {
  bottom: 170px;
  left: -100px;
  animation-delay: 2s;
}

.bubble-pos-4 {
  bottom: 45px;
  right: -75px;
  animation-delay: 3s;
}

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

/* Rotating Brand Seal (Bottom Right Stamp) */
.imagina-stamp-seal {
  position: absolute;
  bottom: 25px;
  right: 35px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.rotating-text-svg {
  width: 100%;
  height: 100%;
  animation: rotateSeal 18s linear infinite;
}

@keyframes rotateSeal {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stamp-center-icon {
  position: absolute;
  font-size: 1.25rem;
}

@media (max-width: 1100px) {
  .bubble-pos-1 { left: -30px; }
  .bubble-pos-2 { right: -30px; }
  .bubble-pos-3 { left: -40px; }
  .bubble-pos-4 { right: -30px; }
}

@media (max-width: 992px) {
  .imagina-grid-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .imagina-text-col {
    align-items: center;
  }

  .imagina-phone-col {
    min-height: auto;
    padding: 2rem 0 3rem;
  }

  .imagina-stamp-seal {
    display: none;
  }
}

@media (max-width: 600px) {
  .phone-frame {
    width: 240px;
    height: 480px;
  }

  .chat-bubble {
    max-width: 220px;
    padding: 0.65rem 0.85rem;
  }

  .chat-bubble p {
    font-size: 0.72rem;
  }

  .bubble-pos-1 { top: 20px; left: -15px; }
  .bubble-pos-2 { top: 130px; right: -20px; }
  .bubble-pos-3 { bottom: 130px; left: -20px; }
  .bubble-pos-4 { bottom: 25px; right: -15px; }
}

/* ==========================================================================
   SECCIÓN 3: "EL CAMINO QUE YA PROBASTE VS. EL QUE REALMENTE FUNCIONA"
   ========================================================================== */
.comparison-ref-section {
  padding: 5.5rem 0;
  background-color: #F3F7F4;
}

.comp-main-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.comp-main-title .highlight-serif-italic {
  color: var(--green-dark);
}

.vs-badge {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85em;
  padding: 0 0.25rem;
}

.comp-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem;
}

.comp-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.comp-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.comp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-old-way {
  border-top: 5px solid #EF4444;
  background: linear-gradient(180deg, #FFF9F9 0%, #FFFFFF 100%);
}

.card-new-way {
  border-top: 5px solid var(--green-primary);
  background: linear-gradient(180deg, #F2FAF5 0%, #FFFFFF 100%);
  border-color: rgba(5, 168, 80, 0.35);
  box-shadow: 0 12px 36px rgba(5, 168, 80, 0.12);
}

.comp-card-top {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.comp-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.badge-red {
  background-color: #FEE2E2;
  color: #DC2626;
}

.badge-green-glow {
  background-color: var(--green-primary);
  color: var(--white);
  box-shadow: 0 2px 10px var(--green-glow);
}

.comp-card-title {
  font-size: 1.6rem;
  color: var(--text-main);
}

.text-green-primary {
  color: var(--green-dark);
}

.comp-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  flex-grow: 1;
}

.comp-item-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.icon-cross {
  width: 26px;
  height: 26px;
  background-color: #FEE2E2;
  color: #DC2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.icon-check {
  width: 26px;
  height: 26px;
  background-color: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  box-shadow: 0 2px 8px var(--green-glow);
}

.comp-item-row p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.item-positive p {
  color: var(--text-main);
}

.comp-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-comp-cta {
  flex-direction: row;
  gap: 0.75rem;
  border-radius: var(--radius-full);
}

.comp-cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   SECCIÓN 4: BENEFICIOS CLAVE
   ========================================================================== */
.benefits-section {
  padding: 5.5rem 0;
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.benefit-card {
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-6px);
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: rgba(5, 168, 80, 0.3);
}

.benefit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.bg-green {
  background-color: var(--green-light);
}

.bg-yellow {
  background-color: var(--yellow-light);
}

.benefit-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #CBD5E1;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.benefit-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  padding-top: 1rem;
  border-top: 1px dashed var(--border-light);
}

/* ==========================================================================
   QUÉ INCLUYE (RECIPES SPLIT GRID)
   ========================================================================== */
.content-preview-section {
  padding: 5rem 0;
  background-color: #F8FAF9;
}

.recipes-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.recipe-col {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.col-badge-header {
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.green-header {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
}

.yellow-header {
  background: linear-gradient(135deg, #FED500 0%, #D4A800 100%);
  color: #111815;
}

.col-badge-header h3 {
  font-size: 1.2rem;
  color: inherit;
}

.col-icon {
  font-size: 1.6rem;
}

.recipe-item-list {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.recipe-mini-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background-color: var(--bg-page);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.recipe-mini-card:hover {
  background-color: var(--green-light);
  transform: translateX(4px);
}

.recipe-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-primary);
  width: 24px;
}

.recipe-detail {
  flex-grow: 1;
}

.recipe-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--text-main);
}

.recipe-detail p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.recipe-time {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.more-recipes-note {
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
}

/* ==========================================================================
   LLAMADO A LA ACCIÓN (CTA INTERMEDIO)
   ========================================================================== */
.mid-cta-section {
  padding: 4.5rem 0;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.mid-cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--green-primary);
  filter: blur(120px);
  opacity: 0.15;
  top: -50px;
  right: 10%;
  pointer-events: none;
}

.mid-cta-card {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.mid-cta-badge {
  display: inline-block;
  background-color: rgba(254, 213, 0, 0.15);
  color: var(--yellow-primary);
  border: 1px solid rgba(254, 213, 0, 0.3);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.mid-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.mid-cta-desc {
  font-size: 1.05rem;
  color: #94A3B8;
  margin-bottom: 2rem;
}

.price-box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.price-strikethrough {
  font-size: 1rem;
  color: #64748B;
  text-decoration: line-through;
}

.price-current-large {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.price-current-large span {
  color: var(--yellow-primary);
  font-size: 2.2rem;
  font-family: var(--font-heading);
}

.price-save-tag {
  background-color: var(--green-primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.guarantee-mini-text {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: #94A3B8;
}

/* ==========================================================================
   BONOS GRATIS DE REGALO
   ========================================================================== */
.bonuses-section {
  padding: 5.5rem 0;
  background-color: var(--white);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.bonus-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-page) 100%);
  border: 2px dashed rgba(5, 168, 80, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.bonus-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--green-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px var(--green-glow);
  white-space: nowrap;
}

.bonus-icon {
  font-size: 2.5rem;
  margin: 1rem 0 0.75rem;
}

.bonus-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.bonus-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.bonus-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
}

.bonus-value span {
  color: var(--text-light);
  text-decoration: line-through;
}

.free-pill {
  background-color: var(--yellow-primary);
  color: #111815;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
}

/* ==========================================================================
   TESTIMONIOS
   ========================================================================== */
.testimonials-section {
  padding: 5rem 0;
  background-color: #F4F7F5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.test-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.test-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ==========================================================================
   GARANTÍA
   ========================================================================== */
.guarantee-section {
  padding: 3rem 0;
  background-color: var(--white);
}

.guarantee-card {
  background: linear-gradient(135deg, var(--yellow-light) 0%, #FFFDF0 100%);
  border: 2px solid rgba(254, 213, 0, 0.5);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-md);
}

.guarantee-badge-shield {
  width: 90px;
  height: 90px;
  background-color: var(--yellow-primary);
  color: #111815;
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--yellow-glow);
}

.guarantee-badge-shield svg {
  width: 32px;
  height: 32px;
}

.guarantee-badge-shield span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.7rem;
}

.guarantee-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.guarantee-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   5. OFERTA FINAL & CHECKOUT CTA
   ========================================================================== */
.final-offer-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #07381E 0%, #032112 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.offer-container {
  position: relative;
  z-index: 2;
}

.offer-box {
  background-color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.offer-box-header {
  background: linear-gradient(180deg, #F3F9F5 0%, #FFFFFF 100%);
  padding: 2.75rem 2rem 2.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.offer-pill-badge {
  display: inline-block;
  background-color: var(--yellow-primary);
  color: #111815;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(254, 213, 0, 0.25);
}

.offer-main-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.offer-main-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

.offer-box-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  padding: 3rem;
  background-color: var(--white);
}

.summary-title {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.summary-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #EAEFEA;
}

.check-icon {
  background-color: #E8F7EE;
  color: var(--green-primary);
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(5, 168, 80, 0.15);
}

.item-desc {
  flex-grow: 1;
}

.item-desc strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-main);
  font-weight: 700;
}

.item-desc span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.item-val {
  font-weight: 700;
  font-size: 0.9rem;
  color: #94A3B8;
  text-decoration: line-through;
}

.item-free {
  color: var(--green-dark);
  background-color: #E8F7EE;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.bonus-row {
  background-color: rgba(5, 168, 80, 0.06);
  border-radius: var(--radius-xs);
  padding: 1rem 0.5rem;
}

.total-value-row {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.total-val-struck {
  text-decoration: line-through;
  color: #EF4444;
  font-size: 1.25rem;
}

/* Checkout Pricing Card */
.offer-checkout-card {
  align-self: start;
  width: 100%;
  max-width: 460px;
  justify-self: center;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e3e3df;
  border-radius: 28px;
  color: #242422;
  box-shadow: 0 4px 0 #e4e2dc, 0 14px 28px rgba(21, 29, 24, 0.1);
}

.checkout-product-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a1a18;
}

.checkout-product-cover::before,
.checkout-product-cover::after {
  content: none;
  display: none;
  background: none;
}

.checkout-product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

.checkout-product-content {
  padding: 1.9rem 1.7rem 1.35rem;
}

.checkout-digital-badge {
  display: inline-flex;
  padding: 0.33rem 0.72rem;
  border-radius: var(--radius-full);
  background: #f0f0ee;
  color: #65635e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.checkout-product-content h3 {
  margin: 1rem 0 0.55rem;
  color: #242422;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.035em;
}

.checkout-product-content > p {
  margin: 0;
  color: #726f69;
  font-size: 1rem;
}

.checkout-purchase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.checkout-prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  white-space: nowrap;
}

.checkout-prices strong {
  color: #242422;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.checkout-prices del {
  color: #ff5d78;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.checkout-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.75rem 1.55rem;
  flex: 0 0 auto;
  border-radius: var(--radius-full);
  background: #1c1c1c;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.checkout-buy-button:hover {
  background: #05a850;
  color: #ffffff;
  transform: translateY(-2px);
}

.checkout-buy-button.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.checkout-security-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #ecebe7;
  color: #77746e;
  font-size: 0.76rem;
}

.checkout-security-note svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #05a850;
}

/* ==========================================================================
   6. PREGUNTAS FRECUENTES (FAQ)
   ========================================================================== */
.faq-section {
  padding: 5.5rem 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-page);
  overflow: hidden;
  transition: var(--transition-fast);
}

.accordion-item:hover {
  border-color: rgba(5, 168, 80, 0.3);
}

.accordion-header {
  width: 100%;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}

.chevron-icon {
  width: 20px;
  height: 20px;
  color: var(--green-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .chevron-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  background-color: var(--white);
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
  padding: 0 1.5rem 1.35rem;
}

.accordion-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FLOATING MOBILE BAR
   ========================================================================== */
.floating-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(18, 24, 21, 0.96);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--green-primary);
  padding: 0.75rem 0;
  z-index: 999;
  transform: translateY(120%);
  transition: transform 0.4s ease-in-out;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.floating-mobile-bar.is-visible {
  transform: translateY(0);
}

.floating-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.float-price {
  display: flex;
  flex-direction: column;
}

.float-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--yellow-primary);
  letter-spacing: 0.05em;
}

.float-amount {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
}

.btn-float {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--dark-bg);
  color: #94A3B8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--dark-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo-title {
  color: var(--white);
}

.footer-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
  color: #94A3B8;
}

.footer-links h4, .footer-security h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--green-primary);
}

.footer-security p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.f-badge {
  font-size: 0.8rem;
  color: #E2E8F0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.disclaimer {
  font-size: 0.75rem;
  color: #64748B;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

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

  .hero-buttons-duo {
    justify-content: center;
  }

  .hero-price-bar {
    justify-content: center;
  }

  .hero-trust-list {
    justify-content: center;
  }

  .comp-duo-grid {
    grid-template-columns: 1fr;
  }

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

  .offer-box-body {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-buttons-duo {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-ref, .btn-outline-hero {
    width: 100%;
    justify-content: center;
  }

  .recipes-split-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .bonuses-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .btn-xl {
    padding: 1rem 1.25rem;
  }

  .floating-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .badge-top-right {
    top: -10px;
    right: -5px;
  }

  .badge-bottom-left {
    left: -5px;
    bottom: 10px;
  }

  .checkout-product-content {
    padding: 1.5rem 1.25rem 1.2rem;
  }

  .checkout-purchase-row {
    margin-top: 1.6rem;
  }
}

@media (max-width: 420px) {
  .offer-box-body {
    padding: 1rem;
  }

  .offer-checkout-card {
    border-radius: 22px;
  }

  .checkout-purchase-row {
    align-items: stretch;
    flex-direction: column;
  }

  .checkout-buy-button {
    width: 100%;
  }
}
