/* ============================================================
   ACADEMIA DE VUELO — FPV Profesional desde Cero
   styles.css — Premium redesign: Inter, clean borders,
   generous whitespace, Tailwind-inspired design tokens.
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Background */
  --bg: #FFFFFF;
  --bg-muted: #F9FAFB;
  --bg-subtle: #F0FDF4;
  --bg-dark: #0C1F13;
  --bg-dark-alt: #132A1C;

  /* Green scale */
  --green-50: #F0FDF4;
  --green-100: #DCFCE7;
  --green-200: #BBF7D0;
  --green-300: #86EFAC;
  --green-400: #4ADE80;
  --green-500: #22C55E;
  --green-600: #16A34A;
  --green-700: #15803D;
  --green-800: #166534;
  --green-900: #14532D;

  /* Gray scale */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Text */
  --text: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255,255,255,0.65);

  /* Accent */
  --accent: #22C55E;
  --accent-hover: #16A34A;
  --accent-light: #DCFCE7;

  /* Borders */
  --border: #E5E7EB;
  --border-green: #BBF7D0;

  /* Shadows - very subtle, Tailwind-style */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);

  /* Radius - modest, not bubbly */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-full: 9999px;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  --t-base: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ── 2. RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

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

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

ul, ol, dl {
  list-style: none;
}

strong, b {
  font-weight: 700;
  color: var(--text);
}

em {
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 800;
}


/* ── 3. CONTAINER ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}


/* ── 4. SECTIONS ──────────────────────────────────────────── */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section--white {
  background: var(--bg);
}

.section--soft {
  background: var(--bg-muted);
}

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

.section--green {
  background: linear-gradient(170deg, #0C1F13 0%, #14532D 100%);
  border-top-color: transparent;
}

.section--green + .section {
  border-top-color: transparent;
}

/* Remove border between consecutive dark sections */
.section--green + .section--green {
  border-top: none;
}

.section--green-cta {
  background: linear-gradient(170deg, #0C1F13 0%, #14532D 100%);
  border-top-color: transparent;
}

.section--green-cta + .section,
.section--green-cta + footer {
  border-top-color: transparent;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.75rem;
}

.overline--on-green {
  color: var(--green-300);
}

.section-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title em {
  color: var(--green-600);
  font-style: italic;
}

.section-title--on-green {
  color: var(--text-on-dark);
}

.section-title--on-green em {
  color: var(--green-300);
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-subtitle--on-green {
  color: var(--text-on-dark-muted);
}


/* ── 5. HERO ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(170deg, #0C1F13 0%, #143524 100%);
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

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

/* -- Logo -- */
.hero__logo {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  object-fit: contain;
}

.logo-img--animated {
  transition: transform var(--t-fast);
}

.logo-link:hover .logo-img--animated {
  transform: scale(1.05);
}

.logo-wordmark {
  display: none;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

.logo-by {
  font-size: 0.7rem;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* -- Hero Split -- */
.hero__split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: 100%;
}

/* -- Hero Content -- */
.hero__content {
  text-align: center;
  max-width: 580px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}

.badge--live {
  animation: badge-pulse-glow 3s ease-in-out infinite;
}

@keyframes badge-pulse-glow {
  0%, 100% { border-color: rgba(255,255,255,0.15); }
  50% { border-color: rgba(255,255,255,0.35); }
}

.badge-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: badge-dot-pulse 2s ease-in-out infinite;
}

@keyframes badge-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.badge--included {
  background: var(--accent-light);
  color: var(--green-700);
  border-color: var(--border-green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  margin-top: 1rem;
}

/* Headline */
.hero__headline {
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.headline-line {
  display: block;
}

.headline-line--main {
  opacity: 0.85;
  font-size: 0.85em;
}

.headline-line--accent {
  color: #FFFFFF;
  font-weight: 900;
}

.headline-line--sub {
  font-style: italic;
  font-size: 0.8em;
  opacity: 0.75;
  font-weight: 500;
}

/* Hero subtitle */
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-on-dark-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-inline: auto;
}

.hero__sub strong {
  color: var(--text-on-dark);
  font-weight: 700;
}

/* Hero social proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.st-icons {
  color: #FBBF24;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.st-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-on-dark);
}

.hero__avatars {
  display: flex;
  gap: 0;
}

.hero__avatars span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--text-on-dark);
  font-size: 0.65rem;
  font-weight: 700;
  margin-left: -6px;
}

.hero__avatars span:first-child {
  margin-left: 0;
}

.st-label {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  font-weight: 500;
}

/* Hero CTA */
.hero__cta {
  margin-bottom: 2rem;
}

/* Hero value bar */
.hero-value-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
}

.vb-old s {
  color: rgba(255,255,255,0.4);
}

.vb-arrow {
  opacity: 0.4;
}

.vb-new {
  color: var(--text-on-dark);
  font-weight: 600;
}

.vb-new strong {
  color: var(--green-300);
}

/* Microcopy */
.microcopy {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  margin-top: 0.5rem;
}

.microcopy--dark {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Hero chips */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
}

.chip svg {
  opacity: 0.6;
  flex-shrink: 0;
}

/* -- Hero Visual (Right side) -- */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
}

.mockup-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--r-lg);
  box-shadow: 0 0 20px rgba(34,197,94,0.08), 0 0 60px rgba(34,197,94,0.04);
}

.mockup-wrap--svg {
  max-width: 340px;
}

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

.mockup-img--svg {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

/* Mockup glow - radial green glow behind mockup */
.mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(34,197,94,0.18) 0%, rgba(34,197,94,0.06) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: mockup-glow-breathe 4s ease-in-out infinite;
}

@keyframes mockup-glow-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Mockup floating dots */
.mockup-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mockup-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  opacity: 0.5;
  animation: mockup-dot-float 5s ease-in-out infinite;
}

.mockup-dots span:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.mockup-dots span:nth-child(2) {
  top: 30%;
  right: 3%;
  animation-delay: 1.5s;
}

.mockup-dots span:nth-child(3) {
  bottom: 15%;
  left: 12%;
  animation-delay: 3s;
}

@keyframes mockup-dot-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-14px) scale(1.5); opacity: 0.8; }
}

.mockup-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  text-align: center;
  min-height: 300px;
  width: 100%;
}

.mockup-placeholder strong {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
}

.mockup-placeholder p {
  color: rgba(255,255,255,0.38);
  font-size: 0.8rem;
}

/* Viewfinder (hidden by design rules - no ornamental CSS) */
.mockup-vf {
  display: none;
}

/* Float badges on mockup */
.mockup-float-badge {
  display: none;
  position: absolute;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 2;
}

.mockup-float-badge svg {
  opacity: 0.7;
  flex-shrink: 0;
}

.mockup-float-badge--a {
  top: 10%;
  left: -15%;
}

.mockup-float-badge--b {
  bottom: 15%;
  right: -15%;
}


/* ── 6. BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1em 2em;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-xs);
  position: relative;
  line-height: 1.2;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-xs);
}

/* On dark backgrounds */
.hero .btn-primary,
.cta-final .btn-primary {
  background: #FFFFFF;
  color: var(--bg-dark);
}

.hero .btn-primary:hover,
.cta-final .btn-primary:hover {
  background: var(--green-50);
}

/* On white backgrounds */
.btn-on-white {
  background: var(--accent);
  color: white;
}

.btn-on-white:hover {
  background: var(--accent-hover);
}

/* Large button */
.btn--large {
  padding: 1.1em 2.5em;
  font-size: 1.05rem;
}

/* Pulse animation */
.btn--pulse {
  animation: btn-pulse 3s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: var(--shadow-xs); }
  50% { box-shadow: 0 0 0 4px rgba(34,197,94,0.15); }
}

.hero .btn--pulse {
  animation: btn-pulse-white 3s ease-in-out infinite;
}

@keyframes btn-pulse-white {
  0%, 100% { box-shadow: var(--shadow-xs); }
  50% { box-shadow: 0 0 0 4px rgba(255,255,255,0.12); }
}

.btn-arrow {
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}


/* ── 7. BENEFIT CARDS ─────────────────────────────────────── */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.benefit-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-sm);
}

.benefit-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--green-400);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--green-50);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  color: var(--green-600);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ── 8. PARA QUIEN ────────────────────────────────────────── */
.pq-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.pq-col {
  width: 100%;
  max-width: 480px;
  padding: var(--space-lg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg);
}

.pq-col--yes {
  border-color: var(--border-green);
}

.pq-col--no {
  border-color: var(--gray-200);
}

.pq-col__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.pq-col--yes .pq-col__title {
  color: var(--green-700);
}

.pq-col--no .pq-col__title {
  color: var(--gray-600);
}

.pq-col--yes .pq-col__title svg {
  color: var(--green-500);
}

.pq-col--no .pq-col__title svg {
  color: var(--gray-400);
}

.pq-list li {
  position: relative;
  padding: 0.6rem 0;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border-bottom: 1px solid var(--gray-100);
}

.pq-list li:last-child {
  border-bottom: none;
}

.pq-list li::before {
  position: absolute;
  left: 0;
  top: 0.7rem;
}

.pq-list--yes li::before {
  content: "\2713";
  color: var(--green-500);
  font-weight: 700;
  font-size: 0.82rem;
}

.pq-list--no li::before {
  content: "\2717";
  color: var(--gray-400);
  font-weight: 700;
  font-size: 0.82rem;
}

.pq-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pq-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.pq-cierre-wrap {
  text-align: center;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.pq-cierre {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.pq-cierre strong {
  color: var(--text);
}

.pq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-600);
  border-bottom: 2px solid var(--border-green);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.pq-cta-link:hover {
  color: var(--green-700);
  border-color: var(--green-600);
}


/* ── 9. PRUEBA SOCIAL ─────────────────────────────────────── */
.rating-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-score {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Credibility row */
.credibility-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  margin-inline: auto;
}

.cred-item {
  display: flex;
  gap: 0.75rem;
  padding: var(--space-md);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.cred-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  color: var(--green-500);
}

.cred-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.cred-item strong {
  color: var(--text);
}

/* Victories grid */
.victories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  margin-inline: auto;
}

.victory-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.victory-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-sm);
}

.victory-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.victory-author {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.victory-verified {
  display: block;
  font-size: 0.72rem;
  color: var(--green-600);
  font-weight: 600;
}

/* Testimonials grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  margin-inline: auto;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.testimonial-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-img-wrap {
  margin-bottom: 1rem;
}

.avatar-pl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-50);
  border: 1px solid var(--border-green);
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 700;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Section CTA */
.section-cta {
  text-align: center;
}


/* ── 9b. PRUEBA SOCIAL — Dark green overrides ─────────────── */
.prueba-social.section--green .victory-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.prueba-social.section--green .victory-card:hover {
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.prueba-social.section--green .victory-quote {
  color: var(--text-on-dark);
}

.prueba-social.section--green .victory-author {
  color: rgba(255,255,255,0.65);
}

.prueba-social.section--green .victory-verified {
  color: var(--green-300);
}

.prueba-social.section--green .testimonial-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.prueba-social.section--green .testimonial-card:hover {
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.prueba-social.section--green .testimonial-text {
  color: var(--text-on-dark);
}

.prueba-social.section--green .testimonial-name {
  color: rgba(255,255,255,0.5);
}

.prueba-social.section--green .testimonial-stars svg {
  fill: #FBBF24;
  color: #FBBF24;
}

.prueba-social.section--green .avatar-pl {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--text-on-dark);
}

.prueba-social.section--green .cred-item {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.prueba-social.section--green .cred-item p {
  color: var(--text-on-dark);
}

.prueba-social.section--green .cred-item strong {
  color: var(--text-on-dark);
}

.prueba-social.section--green .rating-score {
  color: var(--text-on-dark);
}

.prueba-social.section--green .rating-count {
  color: rgba(255,255,255,0.5);
}

.prueba-social.section--green .section-cta .btn-primary {
  background: #FFFFFF;
  color: var(--bg-dark);
}

.prueba-social.section--green .section-cta .btn-primary:hover {
  background: var(--green-50);
}

.prueba-social.section--green .microcopy--dark {
  color: rgba(255,255,255,0.5);
}


/* ── 10. BONOS ────────────────────────────────────────────── */
.bonos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.bono-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  overflow: hidden;
}

/* Animated border gradient on hover via ::before pseudo */
.bono-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r-lg) + 2px);
  background: conic-gradient(
    from var(--bono-border-angle, 0deg),
    transparent 0%,
    var(--green-400) 10%,
    var(--green-300) 20%,
    transparent 30%,
    transparent 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: bono-border-rotate 4s linear infinite;
}

@property --bono-border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes bono-border-rotate {
  0% { --bono-border-angle: 0deg; }
  100% { --bono-border-angle: 360deg; }
}

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

.bono-card:hover {
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Bono visual */
.bono-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -0.5rem -0.5rem 1.25rem;
  padding: 1.5rem 0.5rem;
  background: rgba(0,0,0,0.15);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--t-fast), filter var(--t-fast);
}

/* Radial gradient glow overlay on bono-visual */
.bono-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34,197,94,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Brighter and scale up on card hover */
.bono-card:hover .bono-visual {
  transform: scale(1.03);
  filter: brightness(1.15);
}

.bono-format-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 2;
}

.bono-sticker {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 2;
}

.sticker-was {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  font-weight: 500;
}

.sticker-free {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green-300);
  letter-spacing: 0.04em;
}

.bono-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

/* Icono inline al lado del número (NO debajo) */
.bono-top .bono-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(145deg, rgba(34,197,94,0.18), rgba(34,197,94,0.06));
  border: 1px solid rgba(34,197,94,0.32);
  border-radius: 10px;
  color: var(--green-300);
  margin: 0;
  flex-shrink: 0;
  box-shadow: 0 4px 14px -4px rgba(34,197,94,0.25);
}

.bono-num {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-300);
  letter-spacing: 0.05em;
  opacity: 0.95;
}

/* Value empujado al extremo derecho */
.bono-value {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  opacity: 0.75;
  margin-left: auto;
}

/* Fallback para cualquier .bono-icon que quede fuera de .bono-top (compat) */
.bono-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-300);
}

.bono-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.bono-card p {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

.bono-card .badge--included {
  background: rgba(34,197,94,0.15);
  color: var(--green-300);
  border-color: rgba(34,197,94,0.3);
}


/* ── 11. OFERTA / PRICING ─────────────────────────────────── */

/* --- Animated border angle property --- */
@property --oferta-border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.oferta-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 2.5rem);
  align-items: center;
}

/* Oferta badge with pulse rings */
.oferta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  padding: 0.55rem 1.5rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
  animation: badge-float 3s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
  z-index: 1;
}

.oferta-badge__ring {
  position: absolute;
  inset: -4px;
  border-radius: var(--r-full);
  border: 2px solid var(--green-400);
  opacity: 0;
  animation: badge-ring-pulse 2.5s ease-out infinite;
}

.oferta-badge__ring--2 {
  animation-delay: 1.25s;
}

@keyframes badge-ring-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Savings callout --- */
.oferta-savings {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
  padding: 0.6rem 1.2rem;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--r-full);
}

.oferta-savings__old {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--red, #ef4444);
  text-decoration-thickness: 2px;
}

.oferta-savings__arrow {
  color: var(--green-500);
  animation: arrow-bounce-h 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes arrow-bounce-h {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.oferta-savings__new {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-600);
}

.oferta-savings__tag {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  background: var(--green-600);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: var(--r-full);
  animation: tag-bounce 2s ease-in-out infinite;
}

@keyframes tag-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* --- Include chips --- */
.includes-chips {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.include-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.include-chip:hover {
  border-color: var(--green-300);
  box-shadow: 0 2px 12px rgba(34,197,94,0.08);
}

.include-chip__icon {
  flex-shrink: 0;
  color: var(--green-500);
  width: 20px;
  height: 20px;
}

.include-chip__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.include-chip__text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.include-chip__text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.include-chip__value {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.include-chip--guarantee {
  border-color: var(--green-200);
  background: var(--green-50);
}

.include-chip--guarantee .include-chip__icon {
  color: var(--green-600);
}

/* --- Pricing block with animated border --- */
.precio-bloque {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(34,197,94,0.15),
    0 4px 30px rgba(34,197,94,0.12),
    0 20px 60px rgba(34,197,94,0.06);
  overflow: visible;
  z-index: 1;
}

/* Animated rotating border */
.precio-bloque__border {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r-xl) + 2px);
  background: conic-gradient(
    from var(--oferta-border-angle),
    var(--green-500),
    var(--green-200),
    var(--green-400),
    var(--green-100),
    var(--green-500)
  );
  z-index: -1;
  animation: oferta-border-spin 4s linear infinite;
  opacity: 0.7;
}

.precio-bloque__border::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: var(--r-xl);
  background: var(--bg);
}

@keyframes oferta-border-spin {
  to { --oferta-border-angle: 360deg; }
}

/* Shimmer sweep */
.precio-bloque__shimmer {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.precio-bloque__shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(34,197,94,0.06) 45%,
    rgba(255,255,255,0.12) 50%,
    rgba(34,197,94,0.06) 55%,
    transparent 70%
  );
  animation: shimmer-sweep 5s ease-in-out infinite;
}

@keyframes shimmer-sweep {
  0%, 100% { left: -100%; }
  50% { left: 120%; }
}

/* Popular badge — top ribbon */
.precio-bloque__popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
  z-index: 5;
}

.precio-bloque__popular svg {
  flex-shrink: 0;
  animation: bolt-flash 2s ease-in-out infinite;
}

@keyframes bolt-flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Sparkle dots — enhanced */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  animation: sparkle-float 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

.sparkle--1 { top: 12%; left: 8%;  animation-delay: 0s; }
.sparkle--2 { top: 18%; right: 10%; animation-delay: 0.8s; }
.sparkle--3 { bottom: 28%; left: 6%;  animation-delay: 1.6s; }
.sparkle--4 { bottom: 18%; right: 8%; animation-delay: 2.4s; }
.sparkle--5 { top: 40%; left: 4%;  animation-delay: 0.4s; width: 4px; height: 4px; }
.sparkle--6 { top: 55%; right: 5%; animation-delay: 1.2s; width: 4px; height: 4px; }

.sparkle--star {
  width: auto;
  height: auto;
  background: none;
  font-size: 0.9rem;
  color: var(--green-400);
  animation: sparkle-star 3s ease-in-out infinite;
}

.sparkle--star-1 { top: 8%; right: 15%; animation-delay: 0.5s; }
.sparkle--star-2 { bottom: 8%; left: 12%; animation-delay: 2s; }

@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-14px) scale(1.5); opacity: 1; }
}

@keyframes sparkle-star {
  0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.3) rotate(20deg); opacity: 0.9; }
}

/* Precio glow — enhanced ring + radial */
.precio-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.18) 0%, transparent 70%);
  animation: precio-glow-pulse 3s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes precio-glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

.precio-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.2);
  animation: precio-ring-expand 3s ease-out infinite;
  pointer-events: none;
}

@keyframes precio-ring-expand {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

/* --- Valor stack with stagger --- */
.valor-stack {
  margin-bottom: 1.5rem;
}

.valor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px dotted var(--border);
  font-size: 0.9rem;
  position: relative;
}

.valor-row span {
  color: var(--text-secondary);
}

.valor-row s {
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
}

/* Animated strikethrough line */
.valor-row s::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--red, #ef4444);
  transition: width 0.5s ease;
}

.precio-bloque[data-animated="true"] .valor-row s::after {
  width: 100%;
  transition-delay: calc(var(--row-delay, 0) * 0.15s + 0.3s);
}

.valor-row--total {
  border-bottom: none;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  border-top: 2px solid var(--green-200);
}

.valor-row--total span {
  font-weight: 700;
  color: var(--text);
}

.valor-row--total s {
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
}

/* --- Price display area --- */
.precio-real {
  margin-bottom: 1.5rem;
  position: relative;
  padding: 1rem 0;
}

.precio-hoy {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.precio-numero {
  font-size: clamp(3.5rem, 12vw, 5rem);
  font-weight: 900;
  color: var(--green-600);
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow:
    0 0 40px rgba(34,197,94,0.25),
    0 0 80px rgba(34,197,94,0.1);
  position: relative;
  z-index: 1;
  animation: precio-breathe 4s ease-in-out infinite;
}

@keyframes precio-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* --- Arrow pointing to CTA --- */
.oferta-arrow-down {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--green-500);
  animation: arrow-bounce-v 1.5s ease-in-out infinite;
}

@keyframes arrow-bounce-v {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Garantia badge --- */
.garantia-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}

.garantia-badge svg {
  color: var(--green-600);
  flex-shrink: 0;
}

/* --- CTA button with glow wrap --- */
.oferta-cta-wrap {
  position: relative;
  margin-bottom: 0.75rem;
}

.oferta-cta-glow {
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--r-lg) + 6px);
  background: var(--green-500);
  opacity: 0;
  filter: blur(16px);
  animation: cta-glow-breathe 2.5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes cta-glow-breathe {
  0%, 100% { opacity: 0; transform: scale(0.98); }
  50% { opacity: 0.35; transform: scale(1.02); }
}

.oferta-cta-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
  animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(34,197,94,0.2); }
  50% { box-shadow: 0 6px 30px rgba(34,197,94,0.4); }
}

/* --- Urgency strip animated --- */
.urgency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-top: 0.75rem;
  background: var(--green-50);
  border-radius: var(--r-md);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-700);
  text-align: center;
}

.urgency-strip__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--green-500);
  border-radius: 50%;
  animation: urgency-blink 1.5s ease-in-out infinite;
}

.urgency-strip__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.5rem;
}

.urgency-strip__text span {
  display: inline;
}

.urgency-strip__text span + span::before {
  content: '·';
  margin-right: 0.5rem;
  color: var(--green-300);
}

/* Urgency note */
.urgency-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.urgency-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  animation: urgency-blink 2s ease-in-out infinite;
}

@keyframes urgency-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Payment trust */
.payment-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.payment-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.payment-trust__item svg {
  color: var(--gray-400);
  flex-shrink: 0;
}


/* ── 12. VIDEO GALLERY ────────────────────────────────────── */
.videos-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.video-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.video-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-sm);
}

.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gray-900);
  overflow: hidden;
  cursor: pointer;
}

.video-facade-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-facade-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

.video-facade-placeholder span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.play-btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--gray-900);
  transition: transform var(--t-fast), background var(--t-fast);
}

.play-btn:hover .play-btn-circle {
  transform: scale(1.08);
  background: #FFFFFF;
}

/* REMOVED: .video-card--featured .play-btn-circle larger size */
/* REMOVED: .video-card--featured grid spanning - now flat grid */

.video-info {
  padding: 1rem 1.25rem;
}

.video-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.35rem;
}

.video-title-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* Gallery bottom */
.galeria-bottom {
  text-align: center;
}

.galeria-bottom p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.galeria-bottom strong {
  color: var(--text);
}


/* ── 12b. GALERIA-VIDEOS — Dark green overrides ───────────── */
.galeria-videos.section--green .video-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.galeria-videos.section--green .video-card:hover {
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.galeria-videos.section--green .video-title-text {
  color: var(--text-on-dark);
}

.galeria-videos.section--green .video-category {
  color: var(--green-300);
}

.galeria-videos.section--green .galeria-bottom p {
  color: var(--text-on-dark);
}

.galeria-videos.section--green .galeria-bottom strong {
  color: var(--text-on-dark);
}

.galeria-videos.section--green .section-title {
  color: var(--text-on-dark);
}

.galeria-videos.section--green .section-title em {
  color: var(--green-300);
}

.galeria-videos.section--green .section-subtitle {
  color: var(--text-on-dark-muted);
}

.galeria-videos.section--green .overline {
  color: var(--green-300);
}


/* ── 13. AUTORIDAD ────────────────────────────────────────── */
.autoridad-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 640px;
  margin-inline: auto;
}

/* ── Layout HERO (foto grande + texto al lado en desktop) ── */
.autoridad-layout.autoridad-layout--hero {
  display: grid;
  grid-template-columns: 1fr;       /* mobile: stack */
  gap: 2.5rem;
  align-items: center;
  text-align: left;
  max-width: 1180px;
  margin-inline: auto;
}
/* Desktop: 2 columnas con foto grande a la izquierda */
@media (min-width: 900px) {
  .autoridad-layout.autoridad-layout--hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 4rem;
  }
}
@media (min-width: 1200px) {
  .autoridad-layout.autoridad-layout--hero {
    gap: 5rem;
  }
  .autoridad__photo--large {
    max-width: 560px;
  }
}
/* Mobile: badge más pequeño */
@media (max-width: 600px) {
  .photo-badge--years { top: 0.75rem; right: 0.5rem; padding: 0.65rem 0.85rem; }
  .photo-badge__num  { font-size: 1.3rem; }
  .photo-badge__label { font-size: 0.6rem; }
  .photo-caption__name { font-size: 1rem; }
  .photo-caption__role { font-size: 0.72rem; }
}

.autoridad__photo {
  flex-shrink: 0;
  position: relative;
}

.autoridad__photo--large {
  width: 100%;
  max-width: 520px;
  justify-self: center;
}

.photo-frame {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--green-400);
  background: var(--green-50);
  box-shadow: 0 0 0 6px var(--green-100), 0 0 40px rgba(34,197,94,0.15);
}

/* ── Variante rectangular cinematográfica (foto grande de Manu) ── */
.photo-frame--rect {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  border: none;
  background: linear-gradient(145deg, var(--green-50) 0%, #e7f5ec 100%);
  box-shadow:
    0 30px 60px -20px rgba(13, 60, 30, 0.35),
    0 18px 36px -12px rgba(34, 197, 94, 0.22),
    0 0 0 1px rgba(34, 197, 94, 0.08);
  transition: transform 0.5s cubic-bezier(0.34, 1.32, 0.64, 1), box-shadow 0.5s ease;
}
.photo-frame--rect:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 80px -22px rgba(13, 60, 30, 0.45),
    0 24px 48px -16px rgba(34, 197, 94, 0.3),
    0 0 0 1px rgba(34, 197, 94, 0.15);
}

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

/* Overlay sutil para feeling cinemático */
.photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

/* Caption con nombre + rol en la parte inferior */
.photo-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: #ffffff;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.photo-caption__name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.photo-caption__role {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

/* Esquinas decorativas estilo "marca de cámara" */
.photo-accent {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--green-500, #22c55e);
  pointer-events: none;
  z-index: 3;
}
.photo-accent--tl {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 8px;
}
.photo-accent--br {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 8px;
}

/* Badge flotante "5+ años FPV" */
.photo-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  z-index: 4;
  animation: photoBadgeFloat 4.5s ease-in-out infinite;
}
.photo-badge--years {
  top: 1.5rem;
  right: -1rem;
}
.photo-badge__num {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--green-600, #16a34a);
  letter-spacing: -0.04em;
  line-height: 1;
}
.photo-badge__label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary, #475569);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}

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

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--green-50);
}

.autoridad__text {
  text-align: center;
}

.autoridad__text .overline {
  color: var(--green-600);
}

.autoridad__text .section-title {
  margin-bottom: 1.25rem;
}

.autoridad__text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.autoridad__text p:last-of-type {
  margin-bottom: 1.75rem;
}

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

/* Brands - simple flex grid */
.autoridad-brands {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.autoridad-brands__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.autoridad-brands__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.autoridad-brands__logos span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-svg {
  height: 24px;
  width: auto;
  opacity: 0.55;
  transition: opacity var(--t-fast);
}

.brand-logo-svg:hover {
  opacity: 0.85;
}


/* ── 14. FAQ ──────────────────────────────────────────────── */
.faq-list {
  max-width: 680px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--t-fast);
}

.faq-question:hover {
  color: var(--green-700);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--t-base);
}

.faq-item[open] .faq-icon,
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

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

.faq-answer[aria-hidden="false"],
.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-inner {
  padding-bottom: 1.25rem;
}

.faq-inner p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ── 15. CTA FINAL ────────────────────────────────────────── */
.cta-final {
  text-align: center;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final__headline {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta-final__headline em {
  color: var(--green-300);
  font-style: italic;
}

.cta-final__body {
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.cta-final__body strong {
  color: var(--text-on-dark);
}

.cta-final .btn-primary {
  margin-bottom: 1.25rem;
}

.cta-final__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
}

.cta-final__guarantee svg {
  color: var(--green-400);
  flex-shrink: 0;
}


/* ── 16. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  padding: clamp(3rem, 6vw, 4rem) 0;
  border-top: none;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

/* Footer logo */
.footer__logo {
  margin-bottom: 0.5rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.footer-logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-logo-fallback {
  display: none;
}

/* Footer social */
.footer__social {
  display: flex;
  gap: 1.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}

.social-link:hover {
  color: rgba(255,255,255,0.85);
}

.social-link svg {
  color: inherit;
}

/* Footer links */
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.footer__links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--t-fast);
}

.footer__links a:hover {
  color: rgba(255,255,255,0.7);
}

/* Footer trust */
.footer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.footer-trust-item svg {
  color: rgba(255,255,255,0.22);
}

/* Footer copy */
.footer__copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}


/* ── 17. STICKY CTA BAR ──────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.sticky-cta[aria-hidden="false"],
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta__info {
  display: none;
  flex-direction: column;
  gap: 1px;
}

.sticky-cta__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.sticky-cta__sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background var(--t-fast);
  white-space: nowrap;
}

.sticky-cta__btn:hover {
  background: var(--accent-hover);
}

.sticky-cta__btn svg {
  flex-shrink: 0;
}


/* ── 18. ANIMATIONS (scroll-based) ────────────────────────── */
[data-animate] {
  opacity: 0;
}

[data-animate].is-visible {
  opacity: 1;
}

[data-animate="fade-up"] {
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate="fade-up"].is-visible {
  transform: translateY(0);
}

[data-animate="fade-down"] {
  transform: translateY(-20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate="fade-down"].is-visible {
  transform: translateY(0);
}

[data-animate="scale-in"] {
  transform: scale(0.95);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate="scale-in"].is-visible {
  transform: scale(1);
}

[data-animate="slide-left"] {
  transform: translateX(-20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate="slide-left"].is-visible {
  transform: translateX(0);
}

[data-animate="slide-right"] {
  transform: translateX(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate="slide-right"].is-visible {
  transform: translateX(0);
}


/* ── 19. STATS GRID (used if present) ─────────────────────── */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat__number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  display: none;
}


/* ── 20. RESPONSIVE ───────────────────────────────────────── */

/* Small tablet: 640px */
@media (min-width: 640px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .victories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

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

  .bonos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .videos-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .pq-grid {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 1.25rem;
  }

  .pq-col {
    flex: 1;
    max-width: 420px;
  }

  .pq-divider {
    flex-shrink: 0;
    align-self: center;
  }

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

  .stat-divider {
    display: block;
    width: 1px;
    height: 40px;
    background: var(--border);
  }

  .sticky-cta__info {
    display: flex;
  }

  .precio-bloque {
    max-width: 440px;
  }

  .include-chip__value {
    display: inline;
  }

  /* FAQ wider on tablet */
  .faq-list {
    max-width: 720px;
  }
}

/* Desktop: 900px */
@media (min-width: 900px) {

  /* --- Hero desktop --- */
  .hero__split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  .hero__content {
    text-align: left;
    flex: 1;
    max-width: 560px;
  }

  .hero__headline {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  }

  .hero__sub {
    margin-inline: 0;
    max-width: 500px;
  }

  .hero__social-proof {
    justify-content: flex-start;
  }

  .hero__chips {
    justify-content: flex-start;
  }

  .hero__visual {
    flex: 0 0 auto;
    width: 360px;
  }

  .mockup-float-badge {
    display: inline-flex;
  }

  /* --- Grids desktop --- */
  .benefit-grid,
  .bonos-grid,
  .testimonials-grid,
  .victories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .credibility-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* --- Oferta section: horizontal layout --- */
  .oferta-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
    max-width: 960px;
    margin-inline: auto;
  }

  .includes-chips {
    flex: 1;
    min-width: 0;
  }

  .include-chip {
    padding: 1rem 1.25rem;
  }

  .include-chip__value {
    display: inline;
  }

  .precio-bloque {
    flex-shrink: 0;
    width: 360px;
    max-width: none;
  }

  .precio-bloque .urgency-strip {
    border-radius: var(--r-md);
    padding: 0.6rem 0.85rem;
  }

  .precio-bloque .urgency-strip__text {
    flex-direction: column;
    gap: 0.15rem;
    text-align: center;
  }

  .precio-bloque .urgency-strip__text span + span::before {
    display: none;
  }

  .precio-bloque .payment-trust {
    gap: 0.75rem;
  }

  .precio-bloque .payment-trust__item {
    font-size: 0.68rem;
  }

  /* --- Autoridad section: horizontal --- */
  .autoridad-layout {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 3rem;
    max-width: 880px;
  }

  .autoridad__text {
    flex: 1;
    text-align: left;
  }

  .autoridad__text .overline,
  .autoridad__text .section-title {
    text-align: left;
  }

  .autoridad__text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .photo-frame {
    width: 260px;
    height: 260px;
  }

  .autoridad-brands__logos {
    justify-content: flex-start;
  }

  /* --- FAQ desktop --- */
  .faq-list {
    max-width: 760px;
    margin-inline: auto;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 1.35rem 0;
  }

  .faq-inner p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 680px;
  }

  /* --- Videos --- */
  .videos-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  /* --- Para Quién desktop --- */
  .pq-grid {
    max-width: 880px;
    margin-inline: auto;
    gap: 1.5rem;
  }

  .pq-col {
    max-width: none;
    padding: clamp(1.5rem, 3vw, 2.5rem);
  }

  .pq-list li {
    font-size: 0.95rem;
  }

  /* --- CTA final desktop --- */
  .cta-final__headline {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }

  .cta-final__body {
    font-size: 1.05rem;
  }

  /* --- Footer desktop --- */
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
  }

  .footer__logo {
    margin-bottom: 0;
  }
}

/* ── Large desktop: 1200px ────────────────────────────────── */
@media (min-width: 1200px) {

  /* --- Hero large desktop --- */
  .hero__split {
    gap: 4rem;
  }

  .hero__content {
    max-width: 600px;
  }

  .hero__visual {
    width: 400px;
  }

  .hero__headline {
    font-size: 3.5rem;
  }

  /* --- Typography --- */
  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  /* --- Grids large desktop --- */
  .benefit-grid,
  .bonos-grid,
  .testimonials-grid,
  .victories-grid,
  .credibility-row {
    gap: 1.75rem;
  }

  /* --- Oferta large desktop --- */
  .oferta-layout {
    gap: 3.5rem;
    max-width: 1020px;
  }

  .precio-bloque {
    width: 380px;
  }

  .include-chip {
    padding: 1.1rem 1.35rem;
  }

  .include-chip__text strong {
    font-size: 0.95rem;
  }

  .include-chip__text span {
    font-size: 0.85rem;
  }

  /* --- Autoridad large desktop --- */
  .autoridad-layout {
    gap: 4rem;
    max-width: 960px;
  }

  .photo-frame {
    width: 300px;
    height: 300px;
  }

  .autoridad__text p {
    font-size: 1.05rem;
  }

  /* --- FAQ large desktop --- */
  .faq-list {
    max-width: 800px;
  }

  /* --- Para Quién large desktop --- */
  .pq-grid {
    max-width: 940px;
    gap: 2rem;
  }

  /* --- Videos large desktop --- */
  .videos-gallery {
    gap: 1.75rem;
  }

  /* --- CTA final large desktop --- */
  .cta-final__headline {
    font-size: 2.75rem;
  }
}


/* ── 21. ACCESSIBILITY ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Skip link (if present) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: white;
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
}

.skip-link:focus {
  top: 0;
}

/* ── MOBILE-FIRST GLOBAL OPTIMIZATIONS ──────────────────── */
@media (max-width: 639px) {

  /* --- Global mobile spacing --- */
  .section {
    padding: clamp(3rem, 8vw, 4.5rem) 0;
  }

  .section-header {
    margin-bottom: clamp(1.75rem, 5vw, 2.5rem);
  }

  .container {
    padding-inline: 1rem;
  }

  /* --- Hero mobile tightening --- */
  .hero {
    padding-top: 1.25rem;
    padding-bottom: clamp(2.5rem, 7vw, 4rem);
  }

  .hero__logo {
    margin-bottom: 1.5rem;
  }

  .hero__headline {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .hero__sub {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero__social-proof {
    margin-bottom: 1.5rem;
    gap: 0.5rem;
  }

  .hero__cta {
    margin-bottom: 1.5rem;
  }

  .hero-value-bar {
    font-size: 0.75rem;
  }

  .chip {
    padding: 0.3rem 0.6rem;
    font-size: 0.68rem;
  }

  .hero__visual {
    max-width: 280px;
  }

  .mockup-wrap--svg {
    max-width: 260px;
  }

  /* --- Badge mobile --- */
  .badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
  }

  /* --- Section titles mobile --- */
  .section-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .overline {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  /* --- Benefit cards mobile --- */
  .benefit-card {
    padding: var(--space-md);
  }

  /* --- Oferta section mobile --- */
  .oferta-savings {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .oferta-savings__arrow { width: 20px; }

  .include-chip {
    padding: 0.75rem 0.85rem;
    gap: 0.65rem;
  }

  .include-chip__icon {
    width: 18px;
    height: 18px;
  }

  .include-chip__text strong {
    font-size: 0.85rem;
  }

  .include-chip__text span {
    font-size: 0.78rem;
  }

  .include-chip__value {
    display: none;
  }

  .precio-bloque {
    max-width: 100%;
    padding: 1.5rem 1.15rem;
    padding-top: 2.2rem;
  }

  .precio-bloque__popular {
    font-size: 0.6rem;
    padding: 0.25rem 0.7rem;
  }

  .precio-bloque__shimmer::before {
    display: none;
  }

  .sparkle--5,
  .sparkle--6,
  .sparkle--star-2 {
    display: none;
  }

  .valor-row {
    font-size: 0.82rem;
    padding: 0.5rem 0;
  }

  .valor-row--total s {
    font-size: 0.92rem;
  }

  .precio-numero {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .garantia-badge {
    font-size: 0.72rem;
    padding: 0.4rem 0.85rem;
  }

  .oferta-cta-btn {
    font-size: 0.92rem;
    padding: 0.9rem 1.5rem;
  }

  .urgency-strip {
    border-radius: var(--r-md);
    justify-content: center;
    padding: 0.4rem 0.75rem;
    font-size: 0.65rem;
  }

  .urgency-strip__text {
    flex-direction: column;
    gap: 0.1rem;
    text-align: left;
  }

  .urgency-strip__text span + span::before {
    display: none;
  }

  .urgency-note {
    font-size: 0.7rem;
  }

  .payment-trust {
    gap: 0.6rem;
  }

  .payment-trust__item {
    font-size: 0.65rem;
  }

  /* --- Bonos section mobile --- */
  .bono-card {
    padding: var(--space-md);
  }

  .bono-card h3 {
    font-size: 1.05rem;
  }

  .bono-card p {
    font-size: 0.85rem;
  }

  /* --- Video gallery mobile --- */
  .video-card__info {
    padding: 0.65rem;
  }

  /* --- Testimonials/victories mobile --- */
  .testimonial-card,
  .victory-card {
    padding: var(--space-md);
  }

  /* --- Autoridad mobile --- */
  .autoridad-layout {
    gap: 1.5rem;
  }

  .photo-frame {
    width: 180px;
    height: 180px;
    border-width: 3px;
    box-shadow: 0 0 0 5px var(--green-100), 0 0 30px rgba(34,197,94,0.12);
  }

  .autoridad__text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
  }

  .autoridad-brands__logos {
    gap: 1rem;
  }

  .brand-logo-svg {
    height: 20px;
  }

  /* --- CTA final mobile --- */
  .cta-final__headline {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .cta-final__body {
    font-size: 0.92rem;
  }

  /* --- FAQs mobile --- */
  .faq-list {
    max-width: 100%;
  }

  .faq-question {
    padding: 1rem 0;
    font-size: 0.9rem;
    gap: 0.75rem;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .faq-inner {
    padding-bottom: 1rem;
  }

  .faq-inner p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* --- Sticky CTA mobile --- */
  .sticky-cta {
    padding: 0.6rem 1rem;
  }

  .sticky-cta__btn {
    font-size: 0.82rem;
    padding: 0.55rem 1rem;
  }

  /* --- Footer mobile --- */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer__links {
    gap: 1rem;
  }

  .footer__links a {
    font-size: 0.78rem;
  }

  /* --- FPV gear strip mobile --- */
  .fpv-gear-strip {
    padding: 0.6rem 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .brands-marquee {
    animation: none;
  }
}


/* ── 22. PRINT ────────────────────────────────────────────── */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }

  .hero {
    background: #e0e0e0 !important;
    color: #000 !important;
    padding: 2rem 0;
  }

  .hero__headline,
  .hero__sub,
  .badge,
  .chip,
  .hero__social-proof,
  .logo-name,
  .logo-by {
    color: #000 !important;
  }

  .section--green,
  .section--green-cta {
    background: #e0e0e0 !important;
    color: #000 !important;
  }

  .section-title--on-green,
  .section-subtitle--on-green,
  .overline--on-green,
  .bono-card h3,
  .bono-card p,
  .cta-final__headline,
  .cta-final__body {
    color: #000 !important;
  }

  .sticky-cta {
    display: none !important;
  }

  .btn-primary {
    border: 2px solid #000;
    padding: 0.5em 1em;
  }

  .hero__visual,
  .mockup-float-badge,
  .bono-visual {
    display: none !important;
  }

  .brands-marquee {
    animation: none;
  }

  .footer {
    background: #e0e0e0 !important;
    color: #000 !important;
  }

  .footer__links a,
  .footer__copy,
  .footer-trust-item,
  .social-link,
  .footer-logo-name,
  .footer-logo-sub {
    color: #000 !important;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 2cm;
  }
}


/* ── 23. UTILITIES ────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════════════════════
   ── 24. INTRO OVERLAY ──────────────────────────────────────
   ═══════════════════════════════════════════════════════════ */

/* grid + place-items: center = centering que nunca falla */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#intro-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ─── Centro — bloque centrado, sin flex (evita shrink de párrafos) ─── */
.intro-center {
  text-align: center;
  animation: introFloat 3.2s ease-in-out 1.6s infinite;
}
@keyframes introFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ─── Logo: bloque centrado con margin auto ─── */
.intro-logo-wrap {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
}
/* Halo verde que late detrás del logo */
.intro-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,101,52,0.13) 0%, transparent 68%);
  animation: introHaloPulse 2.2s ease-in-out 1.2s infinite;
  pointer-events: none;
}
@keyframes introHaloPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.45); opacity: 1;   }
}
/* Logo image — spring entrance */
.intro-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  position: relative; /* encima del halo ::before */
  box-shadow: 0 6px 22px rgba(22,101,52,0.16), 0 2px 6px rgba(0,0,0,0.07);
  animation: introLogoSpring 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes introLogoSpring {
  from { opacity: 0; transform: scale(0.45); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── Nombre academia — sube tras el logo ─── */
.intro-brand-name {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #166534;
  margin: 0 0 8px;
  font-weight: 700;
  text-align: center;
  animation: introSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}

/* ─── Nombre curso — sube después ─── */
.intro-product-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
  text-align: center;
  animation: introSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.05s both;
}

@keyframes introSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Barra de progreso con punto luminoso ─── */
.intro-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.07);
}
.intro-progress-bar__fill {
  position: relative;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #15803d, #4ade80);
  animation: introProgress 0.75s linear 0.05s forwards;
  border-radius: 0 2px 2px 0;
}
.intro-progress-bar__fill::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 9px 3px rgba(74, 222, 128, 0.5);
}
@keyframes introProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   ── 25. BENEFIT CARD ENHANCEMENTS ─────────────────────────
   ═══════════════════════════════════════════════════════════ */
.benefit-icon {
  position: relative;
}
/* .benefit-icon__pulse y @keyframes benefitPulse eliminados — animación desactivada por petición */

.benefit-result {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 7px 12px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-400);
  letter-spacing: 0.01em;
}
.benefit-result svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* ═══════════════════════════════════════════════════════════
   ── 26. BONO LOCK ANIMATION ───────────────────────────────
   ═══════════════════════════════════════════════════════════ */
.bono-card {
  position: relative;
  overflow: hidden;
}

.bono-lock-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(5, 15, 8, 0.72);
  backdrop-filter: blur(6px);
  border-radius: inherit;
  transition: opacity 0.5s ease 0.3s, visibility 0.5s ease 0.3s;
}
.bono-card.is-visible .bono-lock-wrap {
  opacity: 0;
  visibility: hidden;
}

.bono-lock-icon {
  color: var(--green-400);
  filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.5));
  animation: lockBob 2s ease-in-out infinite;
}
@keyframes lockBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.bono-lock-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-400);
  opacity: 0.8;
}

.bono-unlock-flash {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(74,222,128,0.35) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.bono-card.is-visible .bono-unlock-flash {
  animation: unlockFlash 0.6s ease 0.25s forwards;
}
@keyframes unlockFlash {
  0%   { opacity: 0.8; }
  100% { opacity: 0; }
}

.bono-price-bg {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.02em;
  pointer-events: none;
  text-decoration: line-through;
  transition: color 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}
.bono-card.is-visible .bono-price-bg {
  color: rgba(74, 222, 128, 0.22);
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════
   ── 27. OFERTA LIVE BADGE ─────────────────────────────────
   ═══════════════════════════════════════════════════════════ */
.oferta-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f87171;
  letter-spacing: 0.02em;
}
.oferta-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  animation: livePulse 1.5s ease infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ═══════════════════════════════════════════════════════════
   ── 28. COMPACT TESTIMONIALS (testi-grid) ─────────────────
   ═══════════════════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.testi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 222, 128, 0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.testi-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.testi-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testi-card__who {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.testi-card__who strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.testi-card__who span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.testi-card__stars {
  font-size: 0.8rem;
  color: #F59E0B;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.testi-card__quote {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   ── 29. VIDEO CATEGORY COLORS ─────────────────────────────
   ═══════════════════════════════════════════════════════════ */
.video-cat--turismo  { background: rgba(59,130,246,0.15);  color: #60a5fa;  border-color: rgba(59,130,246,0.3); }
.video-cat--motor    { background: rgba(239,68,68,0.15);   color: #f87171;  border-color: rgba(239,68,68,0.3); }
.video-cat--personas { background: rgba(236,72,153,0.15);  color: #f472b6;  border-color: rgba(236,72,153,0.3); }
.video-cat--realestate { background: rgba(245,158,11,0.15); color: #fbbf24; border-color: rgba(245,158,11,0.3); }
.video-cat--industrial { background: rgba(99,102,241,0.15); color: #818cf8; border-color: rgba(99,102,241,0.3); }
.video-cat--hoteles  { background: rgba(20,184,166,0.15);  color: #2dd4bf;  border-color: rgba(20,184,166,0.3); }

.video-category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   ── 30. DESKTOP: SECTION TITLE / SUBTITLE SPACING ─────────
   ── Allow <br> tags to create natural 2-line breaks.
   ── Add breathing room between heading and supporting text.
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  /* Let <br> work — no longer suppressed */

  .section-title {
    margin-bottom: 1.25rem;
    line-height: 1.18;
  }

  .section-subtitle {
    margin-bottom: 0.5rem;
    line-height: 1.65;
    max-width: 580px;
    margin-inline: auto;
  }

  .overline {
    margin-bottom: 1rem;
  }

  .section-header {
    row-gap: 0; /* handled by child margins */
    margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
  }

  /* Hero title & sub */
  .hero__title {
    margin-bottom: 1.25rem;
    line-height: 1.15;
  }

  .hero__sub {
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ── 31. CENTERING OVERRIDE — garantiza centrado en todos los
         breakpoints y en todos los navegadores
   ═══════════════════════════════════════════════════════════ */

/* Ensure the container never goes out of its bounds */
html, body {
  overflow-x: hidden; /* Robust cross-browser containment */
  max-width: 100%;
}

/* Every section is full-width and self-contained */
.section {
  width: 100%;
  box-sizing: border-box;
}

/* section-header: always full-width, always centered */
.section-header {
  width: 100%;
  box-sizing: border-box;
  text-align: center !important;
}

/* Explicitly center all text inside section headers */
.section-header .section-title,
.section-header .section-subtitle,
.section-header .section-label,
.section-header .overline,
.section-header p {
  text-align: center !important;
}

/* Global fallback: centrado aunque no estén dentro de .section-header */
.section-title,
.section-subtitle {
  text-align: center;
}

/* Fix oferta-layout centering on large desktop */
@media (min-width: 1200px) {
  .oferta-layout {
    margin-inline: auto;
  }
}

/* Desktop hero: wider text column, less cramped */
@media (min-width: 900px) {
  .hero__content {
    max-width: 640px; /* was 560px */
  }
}

/* ═══════════════════════════════════════════════════════════
   ── 32. VIDEO EMBED WRAP (Vimeo background mode)
   ═══════════════════════════════════════════════════════════ */
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0a1a0f;
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════════════
   ── 33. MODALES LEGALES (Aviso legal · Privacidad · Cookies)
   ═══════════════════════════════════════════════════════════ */

/* Backdrop */
.legal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.legal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* Panel */
.legal-modal {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.legal-backdrop.is-open .legal-modal {
  transform: translateY(0) scale(1);
}

/* Header del modal */
.legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.legal-modal__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 0;
}
.legal-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
  font-size: 1.1rem;
  line-height: 1;
}
.legal-modal__close:hover {
  background: #e5e7eb;
  color: #111827;
}

/* Cuerpo scrolleable */
.legal-modal__body {
  overflow-y: auto;
  padding: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.legal-modal__body::-webkit-scrollbar {
  width: 5px;
}
.legal-modal__body::-webkit-scrollbar-track {
  background: #f9fafb;
}
.legal-modal__body::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 99px;
}

/* Tipografía legal */
.legal-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #374151;
}
.legal-text h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 1.5rem 0 0.4rem;
  padding-top: 0.25rem;
  border-top: 1px solid #f3f4f6;
}
.legal-text h2:first-child {
  margin-top: 0;
  border-top: none;
}
.legal-text p {
  margin: 0 0 0.75rem;
  text-align: left;
}
.legal-text ul {
  margin: 0 0 0.75rem 1.25rem;
  padding: 0;
}
.legal-text ul li {
  margin-bottom: 0.3rem;
}
.legal-text a {
  color: #15803d;
  text-decoration: underline;
}
.legal-text strong {
  color: #111827;
}
.legal-text .legal-placeholder {
  background: #fef9c3;
  border-radius: 3px;
  padding: 0 3px;
  font-style: italic;
  color: #92400e;
}
.legal-text .legal-updated {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1.25rem;
  display: block;
}

/* Bloqueo de scroll en body cuando hay modal abierto */
body.modal-open {
  overflow: hidden;
}

/* Link inline dentro del FAQ que abre el modal de devoluciones */
.faq-legal-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #15803d;
  text-decoration: underline;
  cursor: pointer;
}

/* Responsive: móvil más cómodo */
@media (max-width: 600px) {
  .legal-modal {
    max-height: 92vh;
    border-radius: 12px 12px 0 0;
    margin-top: auto;
  }
  .legal-backdrop {
    align-items: flex-end;
    padding: 0;
  }
}


/* ═══════════════════════════════════════════════════════════
   ── 34. BENEFICIOS — Sección "Lo que cambia" (DARK + cards claras)
   Fondo oscuro charcoal con tinte verde, cards blancas flotantes
   ═══════════════════════════════════════════════════════════ */

.section.beneficios {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%,  rgba(34, 197, 94, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(74, 222, 128, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #0a1410 0%, #0e1c15 50%, #0a1410 100%);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

/* Shapes decorativos (orbs flotantes) */
.beneficios-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.beneficios-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.beneficios-shape--1 {
  width: 380px; height: 380px;
  top: -120px; left: -140px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.35) 0%, transparent 70%);
  animation: benDarkFloat 14s ease-in-out infinite;
}
.beneficios-shape--2 {
  width: 320px; height: 320px;
  top: 40%; right: -120px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.30) 0%, transparent 70%);
  animation: benDarkFloat 12s ease-in-out infinite reverse;
}
.beneficios-shape--3 {
  width: 260px; height: 260px;
  bottom: -100px; left: 35%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
}
@keyframes benDarkFloat {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-25px, 35px); }
}

/* Grid de líneas sutiles sobre el fondo oscuro */
.beneficios-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}

/* Container por encima del fondo */
.section.beneficios .container {
  position: relative;
  z-index: 2;
}

/* ── Header del bloque sobre fondo oscuro ── */
.section.beneficios .section-header .overline {
  color: rgba(134, 239, 172, 0.95);
  background: rgba(34, 197, 94, 0.12);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  display: inline-block;
}
.section.beneficios .section-header .section-title {
  color: #ffffff;
}
.section.beneficios .section-header .section-title em {
  color: #86efac;
  font-style: normal;
  background: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section.beneficios .section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Meta tags sobre fondo oscuro */
.beneficios-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.beneficios-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.beneficios-meta__item svg {
  color: #4ade80;
}
.beneficios-meta__dot {
  width: 4px; height: 4px;
  background: #4ade80;
  border-radius: 50%;
  opacity: 0.6;
}

/* ── Grid: 3 columnas desktop, 2 tablet, 1 móvil ── */
.benefit-grid.benefit-grid--enhanced {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 720px) {
  .benefit-grid.benefit-grid--enhanced {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .benefit-grid.benefit-grid--enhanced {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

/* ── Cards blancas flotantes ── */
.benefit-card.benefit-card--enhanced {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.65rem 1.45rem 1.5rem;
  overflow: hidden;
  box-shadow:
    0 20px 45px -18px rgba(0, 0, 0, 0.45),
    0 6px 18px -8px rgba(34, 197, 94, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1),
              box-shadow 0.35s ease;
  isolation: isolate;
}
/* Watermark del número (grande, decorativo) */
.benefit-card.benefit-card--enhanced::before {
  content: attr(data-num);
  position: absolute;
  top: -16px;
  right: -10px;
  font-size: 6.5rem;
  font-weight: 900;
  color: rgba(34, 197, 94, 0.07);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
/* Línea verde superior */
.benefit-card.benefit-card--enhanced::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #22c55e 0%, #4ade80 50%, #22c55e 100%);
  transform: scaleX(0.3);
  transform-origin: left;
  opacity: 0.4;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.benefit-card.benefit-card--enhanced:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    0 12px 28px -10px rgba(34, 197, 94, 0.35),
    0 0 0 1px rgba(34, 197, 94, 0.2);
}
.benefit-card.benefit-card--enhanced:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Número visible como pill */
.benefit-card.benefit-card--enhanced .benefit-num {
  position: relative;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #15803d;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.6rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 6px;
  z-index: 2;
}

/* Icono con gradiente verde + sombra */
.benefit-card.benefit-card--enhanced .benefit-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #dcfce7 0%, #86efac 100%);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 13px;
  color: #166534;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px -6px rgba(34, 197, 94, 0.45);
  z-index: 2;
}
.benefit-icon__pulse {
  display: none; /* Animación eliminada por petición */
}

/* Texto interno */
.benefit-card.benefit-card--enhanced h3 {
  position: relative;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  z-index: 2;
}
.benefit-card.benefit-card--enhanced p {
  position: relative;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 0;
  z-index: 2;
}

/* Chip "resultado" inferior */
.benefit-card.benefit-card--enhanced .benefit-result {
  position: relative;
  margin-top: 1rem;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.14) 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 9px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #166534;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  z-index: 2;
}
.benefit-card.benefit-card--enhanced:hover .benefit-result {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.28) 100%);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateX(2px);
}
.benefit-card.benefit-card--enhanced .benefit-result svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* ── FPV floats (decoración existente) sobre fondo oscuro ── */
.section.beneficios .fpv-floats--benefits .fpv-float {
  color: rgba(134, 239, 172, 0.18);
}

/* Mobile ajustes */
@media (max-width: 600px) {
  .benefit-card.benefit-card--enhanced {
    padding: 1.35rem 1.2rem;
  }
  .benefit-card.benefit-card--enhanced::before {
    font-size: 5rem;
    top: -12px;
  }
  .benefit-card.benefit-card--enhanced h3 {
    font-size: 1rem;
  }
  .benefit-card.benefit-card--enhanced p {
    font-size: 0.84rem;
  }
  .beneficios-meta {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem 0.85rem;
    font-size: 0.72rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ── 35. BRANDS MARQUEE — Logos de marcas en scroll horizontal
   ═══════════════════════════════════════════════════════════ */
.brands-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Fade en los bordes para efecto cinemático */
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  padding: 0.25rem 0;
}
.brands-marquee__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: brandsScroll 28s linear infinite;
  will-change: transform;
}
.brands-marquee:hover .brands-marquee__track {
  animation-play-state: paused;
}
.brands-marquee__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}
.brand-logo-real {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(20%);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}
.brand-logo-real:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

@keyframes brandsScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Mobile: marquee más lento y compacto */
@media (max-width: 600px) {
  .brands-marquee__track {
    gap: 2.2rem;
    animation-duration: 22s;
  }
  .brand-logo-real {
    height: 22px;
    max-width: 90px;
  }
  .brands-marquee__item {
    height: 26px;
  }
}

/* Respeto a usuarios con reduced motion */
@media (prefers-reduced-motion: reduce) {
  .brands-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}
