/* ═══════════════════════════════════════════════════════
   ULTRA — Minimal Premium Effects Layer
   Only subtle, high-quality visual enhancements
   ═══════════════════════════════════════════════════════ */

/* ── HEADLINE SHIMMER ────────────────────────────────── */
/* Subtle shimmer pass on the accent headline in hero */
.headline-line--accent {
  position: relative;
  display: block;
  overflow: hidden;
}
.headline-line--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer-pass 5s 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer-pass {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ── BENEFIT CARD: Subtle 3D tilt (desktop only) ────── */
.benefit-card {
  transform: perspective(900px) rotateX(var(--tiltX,0deg)) rotateY(var(--tiltY,0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── SECTION TITLE: Draw-in underline on em ──────────── */
.section-title em {
  position: relative;
  display: inline-block;
}
.section-title em::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2.5px;
  width: 100%;
  background: var(--accent, #22C55E);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.7s 0.3s cubic-bezier(0.22,1,0.36,1);
}
.section-header.is-visible .section-title em::after {
  transform: scaleX(1);
}

/* On dark sections, underline is white */
.section-title--on-green em::after {
  background: rgba(255,255,255,0.8) !important;
}

/* ── CTA FINAL HEADLINE: Same underline ─────────────── */
.cta-final__headline em {
  position: relative;
  display: inline;
  font-style: inherit;
}
.cta-final__headline em::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.7s 0.3s cubic-bezier(0.22,1,0.36,1);
}
.cta-final__headline.is-visible em::after {
  transform: scaleX(1);
}

/* ── PRECIO: Subtle breathing glow ──────────────────── */
.precio-numero {
  animation: price-breathe 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes price-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.85; }
}

/* ── GUARANTEE BADGE: Shield pulse ───────────────────── */
.garantia-badge svg {
  animation: shield-beat 2.5s ease-in-out infinite;
}
@keyframes shield-beat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}

/* ── BRANDS MARQUEE: Enhanced ────────────────────────── */
.brand-item {
  transition: filter 0.3s ease, transform 0.3s ease;
}
.brand-item:hover {
  filter: grayscale(0) opacity(1) !important;
  transform: scale(1.08);
}

/* ── PHOTO FRAME: Subtle border glow on hover ────────── */
.photo-frame {
  transition: box-shadow 0.4s ease;
}
.photo-frame:hover {
  box-shadow: 0 0 0 2px rgba(34,197,94,0.3), 0 20px 40px rgba(0,0,0,0.1);
}

/* ── STICKY CTA: Smooth slide ────────────────────────── */
.sticky-cta {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
}

/* ── CHAR ANIMATION (split text, desktop only) ───────── */
.char-wrap { overflow: hidden; display: inline-block; vertical-align: top; }
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(55%) rotateX(-50deg);
  transform-origin: center bottom;
  backface-visibility: hidden;
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.char.is-in { opacity: 1; transform: translateY(0) rotateX(0); }
.char-space { display: inline-block; width: 0.3em; }

/* ── HUD CORNERS (video hover) ────────────────────────── */
.viewfinder-corners {
  position: absolute; inset: 8px; z-index: 3; pointer-events: none;
  opacity: 0; transition: opacity 0.3s ease;
  background:
    linear-gradient(to right, rgba(255,255,255,0.5) 16px, transparent 16px) top left / 100% 1px,
    linear-gradient(to bottom, rgba(255,255,255,0.5) 16px, transparent 16px) top left / 1px 100%,
    linear-gradient(to left, rgba(255,255,255,0.5) 16px, transparent 16px) top right / 100% 1px,
    linear-gradient(to bottom, rgba(255,255,255,0.5) 16px, transparent 16px) top right / 1px 100%,
    linear-gradient(to right, rgba(255,255,255,0.5) 16px, transparent 16px) bottom left / 100% 1px,
    linear-gradient(to top, rgba(255,255,255,0.5) 16px, transparent 16px) bottom left / 1px 100%,
    linear-gradient(to left, rgba(255,255,255,0.5) 16px, transparent 16px) bottom right / 100% 1px,
    linear-gradient(to top, rgba(255,255,255,0.5) 16px, transparent 16px) bottom right / 1px 100%;
  background-repeat: no-repeat;
}
.video-card:hover .viewfinder-corners { opacity: 1; }


/* ═══════════════════════════════════════════════════════
   CHANGE 1: BONO CARD ENHANCEMENTS
   - Gradient background glow
   - Shine animated border on hover
   - Ribbon / corner badges for value
   ═══════════════════════════════════════════════════════ */

/* Bono card position context for glow + ribbon */
.bono-card--shine {
  position: relative;
  overflow: hidden;
}

/* Gradient glow behind the bono visual */
.bono-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.25) 0%, rgba(34,197,94,0.08) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

/* Shine border effect on hover */
.bono-card--shine::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, transparent 30%, rgba(34,197,94,0.5) 50%, transparent 70%);
  background-size: 300% 300%;
  background-position: 0% 0%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 10;
}
.bono-card--shine:hover::before {
  opacity: 1;
  animation: shine-sweep 1.5s ease-in-out infinite;
}
@keyframes shine-sweep {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* Ribbon badge for value */
.bono-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 40px;
  transform: rotate(45deg);
  z-index: 12;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════
   CHANGE 2: HERO MOCKUP ENHANCEMENTS
   - Glowing ring/border around mockup
   - Floating animated dots/particles (CSS-only)
   - Radial gradient glow behind the mockup
   ═══════════════════════════════════════════════════════ */

/* Glowing radial gradient behind mockup */
.mockup-glow {
  position: absolute;
  inset: -30%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.18) 0%, rgba(34,197,94,0.06) 40%, transparent 65%);
  pointer-events: none;
  animation: mockup-glow-pulse 4s ease-in-out infinite;
}
@keyframes mockup-glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}

/* Glowing ring around the mockup-wrap */
.mockup-wrap {
  position: relative;
}
.mockup-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 2px solid rgba(34,197,94,0.30);
  box-shadow:
    0 0 20px rgba(34,197,94,0.15),
    inset 0 0 20px rgba(34,197,94,0.05);
  pointer-events: none;
  z-index: 5;
  animation: ring-breathe 3s ease-in-out infinite;
}
@keyframes ring-breathe {
  0%, 100% { border-color: rgba(34,197,94,0.30); box-shadow: 0 0 20px rgba(34,197,94,0.15), inset 0 0 20px rgba(34,197,94,0.05); }
  50%      { border-color: rgba(34,197,94,0.50); box-shadow: 0 0 30px rgba(34,197,94,0.25), inset 0 0 30px rgba(34,197,94,0.08); }
}

/* Floating animated dots around the mockup */
.mockup-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
}
.mockup-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(34,197,94,0.6);
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
}
.mockup-dots span:nth-child(1) {
  top: 10%;
  right: -12px;
  animation: dot-float-1 4s ease-in-out infinite;
}
.mockup-dots span:nth-child(2) {
  bottom: 20%;
  left: -10px;
  animation: dot-float-2 5s ease-in-out infinite;
  width: 4px;
  height: 4px;
}
.mockup-dots span:nth-child(3) {
  top: 50%;
  right: -18px;
  animation: dot-float-3 3.5s ease-in-out infinite;
  width: 5px;
  height: 5px;
}
@keyframes dot-float-1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50%      { transform: translate(-6px, -14px); opacity: 1; }
}
@keyframes dot-float-2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50%      { transform: translate(8px, 10px); opacity: 0.9; }
}
@keyframes dot-float-3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50%      { transform: translate(-10px, -8px); opacity: 1; }
}


/* ═══════════════════════════════════════════════════════
   CHANGE 3: VIDEO GALLERY — Flat 3x2 grid
   ═══════════════════════════════════════════════════════ */

.videos-gallery--flat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.videos-gallery--flat .video-card {
  grid-column: span 1;
}
@media (max-width: 900px) {
  .videos-gallery--flat {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .videos-gallery--flat {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════
   CHANGE 5: PRUEBA SOCIAL ON DARK GREEN
   Styles for testimonials, victory cards, credibility
   on dark green backgrounds
   ═══════════════════════════════════════════════════════ */

/* Rating score/count on dark green */
.rating-score--on-green {
  color: rgba(255,255,255,0.92);
}
.rating-count--on-green {
  color: rgba(255,255,255,0.55);
}

/* Credibility row on dark green */
.credibility-row--on-green {
  border-color: rgba(255,255,255,0.10);
}
.cred-item--on-green {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
}
.cred-item--on-green strong {
  color: #fff;
}
.cred-item--on-green .cred-icon {
  color: #22C55E;
}

/* Victory card on dark green */
.victory-card--on-green {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}
.victory-card--on-green .victory-quote {
  color: rgba(255,255,255,0.88);
}
.victory-card--on-green .victory-author {
  color: rgba(255,255,255,0.55);
}
.victory-card--on-green .victory-verified {
  color: #22C55E;
}

/* Testimonial card on dark green */
.testimonial-card--on-green {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}
.testimonial-card--on-green .testimonial-text {
  color: rgba(255,255,255,0.88);
}
.testimonial-card--on-green .testimonial-name {
  color: rgba(255,255,255,0.55);
}

/* Galeria bottom text on dark green */
.galeria-bottom__text--on-green {
  color: rgba(255,255,255,0.82);
}
.galeria-bottom__text--on-green strong {
  color: #fff;
}


/* ═══════════════════════════════════════════════════════
   CHANGE 6: OFERTA SECTION ENHANCEMENTS
   - Floating "OFERTA ESPECIAL" badge
   - Sparkle/confetti CSS dots
   - Pulsing green glow ring around precio
   - Urgency strip
   ═══════════════════════════════════════════════════════ */

/* OFERTA ESPECIAL floating badge */
.oferta-badge {
  display: inline-block;
  padding: 6px 20px;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 18px rgba(34,197,94,0.35);
  animation: badge-float 3s ease-in-out infinite;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Sparkle dots */
.precio-bloque {
  position: relative;
}
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  pointer-events: none;
  z-index: 0;
}
.sparkle--1 {
  top: 12%;
  left: 8%;
  animation: sparkle-twinkle 2s ease-in-out infinite;
  opacity: 0.7;
}
.sparkle--2 {
  top: 25%;
  right: 10%;
  animation: sparkle-twinkle 2.5s 0.3s ease-in-out infinite;
  opacity: 0.5;
  width: 4px;
  height: 4px;
}
.sparkle--3 {
  bottom: 30%;
  left: 12%;
  animation: sparkle-twinkle 3s 0.6s ease-in-out infinite;
  opacity: 0.6;
  width: 5px;
  height: 5px;
}
.sparkle--4 {
  bottom: 15%;
  right: 6%;
  animation: sparkle-twinkle 2.2s 0.9s ease-in-out infinite;
  opacity: 0.4;
  width: 7px;
  height: 7px;
}
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%      { opacity: 1; transform: scale(1.3); }
}

/* Pulsing green glow ring around precio-numero */
.precio-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.20) 0%, rgba(34,197,94,0.06) 50%, transparent 70%);
  animation: precio-glow-ring 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.precio-real {
  position: relative;
}
@keyframes precio-glow-ring {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* Urgency strip */
.urgency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(34,197,94,0.12) 0%, rgba(34,197,94,0.06) 100%);
  border: 1px solid rgba(34,197,94,0.20);
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #15803D;
  letter-spacing: 0.02em;
}
.urgency-strip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: urgency-blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes urgency-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}


/* ═══════════════════════════════════════════════════════
   CHANGE 7: AUTORIDAD on section--soft
   Override any green-light specific styles to work on soft bg
   ═══════════════════════════════════════════════════════ */

/* Autoridad section on soft bg keeps normal dark text */
.section--soft .autoridad__text p,
.section--soft .autoridad-brands__label {
  color: var(--text-secondary, #4B5563);
}
.section--soft .autoridad__text strong {
  color: var(--text, #111827);
}


/* ═══════════════════════════════════════════════════════
   FPV FLOATING EQUIPMENT — Decorative SVG illustrations
   Floating drone gear elements throughout the page
   ═══════════════════════════════════════════════════════ */

/* ── BASE: Floating container ──────────────────────── */
.fpv-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* Sections need position context */
.hero { position: relative; }
.beneficios { position: relative; }
.para-quien { position: relative; }
.oferta { position: relative; }
.cta-final { position: relative; }
.cta-final__inner { position: relative; }

/* ── BASE: Individual floating element ─────────────── */
.fpv-float {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: fpv-fade-in 1s ease-out forwards;
  will-change: transform;
}

@keyframes fpv-fade-in {
  to { opacity: 1; }
}

/* ── FLOAT ANIMATION (gentle bobbing) ──────────────── */
@keyframes fpv-bob-1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-8px) rotate(1deg); }
  75%      { transform: translateY(6px) rotate(-1deg); }
}
@keyframes fpv-bob-2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(-1.5deg); }
  66%      { transform: translateY(5px) rotate(1.5deg); }
}
@keyframes fpv-bob-3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}
@keyframes fpv-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── HERO positions (dark bg — white/light elements) ── */
.fpv-floats--hero {
  color: rgba(255, 255, 255, 0.35);
}

.fpv-float--pos-1 {
  top: 8%;
  right: 4%;
  animation: fpv-fade-in 1s 0.5s ease-out forwards, fpv-bob-1 8s 1.5s ease-in-out infinite;
  opacity: 0;
}
.fpv-float--pos-2 {
  bottom: 12%;
  left: 2%;
  animation: fpv-fade-in 1s 0.8s ease-out forwards, fpv-bob-2 9s 1.8s ease-in-out infinite;
  opacity: 0;
}
.fpv-float--pos-3 {
  top: 15%;
  left: 5%;
  animation: fpv-fade-in 1s 0.3s ease-out forwards, fpv-spin-slow 20s 1.3s linear infinite;
  opacity: 0;
}
.fpv-float--pos-4 {
  bottom: 8%;
  right: 6%;
  animation: fpv-fade-in 1s 1s ease-out forwards, fpv-bob-3 7s 2s ease-in-out infinite;
  opacity: 0;
}
.fpv-float--pos-hero-5 {
  top: 45%;
  right: 2%;
  animation: fpv-fade-in 1s 1.2s ease-out forwards, fpv-bob-2 11s 2.2s ease-in-out infinite;
  opacity: 0;
}
.fpv-float--pos-hero-6 {
  top: 55%;
  left: 3%;
  animation: fpv-fade-in 1s 0.6s ease-out forwards, fpv-bob-3 8s 1.6s ease-in-out infinite;
  opacity: 0;
}
.fpv-float--pos-hero-7 {
  bottom: 5%;
  left: 15%;
  animation: fpv-fade-in 1s 1.4s ease-out forwards, fpv-bob-1 10s 2.4s ease-in-out infinite;
  opacity: 0;
}
.fpv-float--pos-hero-8 {
  top: 5%;
  left: 40%;
  animation: fpv-fade-in 1s 0.9s ease-out forwards, fpv-spin-slow 25s 1.9s linear infinite;
  opacity: 0;
}

/* ── BENEFITS positions (white bg — green-tinted) ──── */
.fpv-floats--benefits {
  color: rgba(34, 197, 94, 0.25);
}

.fpv-float--pos-5 {
  top: 20%;
  right: -1%;
  animation: fpv-fade-in 1s 0.6s ease-out forwards, fpv-bob-2 10s 1.6s ease-in-out infinite;
  opacity: 0;
}
.fpv-float--pos-6 {
  bottom: 25%;
  left: -1%;
  animation: fpv-fade-in 1s 0.4s ease-out forwards, fpv-spin-slow 18s 1.4s linear infinite;
  opacity: 0;
}

/* ── OFERTA positions (white bg — green-tinted) ────── */
.fpv-floats--oferta {
  color: rgba(34, 197, 94, 0.2);
}

.fpv-float--pos-7 {
  top: 15%;
  left: -2%;
  animation: fpv-fade-in 1s 0.5s ease-out forwards, fpv-bob-1 9s 1.5s ease-in-out infinite;
  opacity: 0;
}
.fpv-float--pos-8 {
  top: 30%;
  right: -1%;
  animation: fpv-fade-in 1s 0.7s ease-out forwards, fpv-bob-3 8s 1.7s ease-in-out infinite;
  opacity: 0;
}
.fpv-float--pos-9 {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  animation: fpv-fade-in 1s 0.9s ease-out forwards, fpv-bob-2 10s 1.9s ease-in-out infinite;
  opacity: 0;
}

/* ── CTA FINAL positions (dark bg — white/light) ───── */
.fpv-floats--cta {
  color: rgba(255, 255, 255, 0.25);
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.fpv-float--pos-10 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation: fpv-fade-in 1s 0.4s ease-out forwards, fpv-bob-1 7s 1.4s ease-in-out infinite;
  opacity: 0;
}
.fpv-float--pos-11 {
  bottom: 20%;
  left: 4%;
  animation: fpv-fade-in 1s 0.6s ease-out forwards, fpv-spin-slow 15s 1.6s linear infinite;
  opacity: 0;
}
.fpv-float--pos-12 {
  bottom: 15%;
  right: 4%;
  animation: fpv-fade-in 1s 0.8s ease-out forwards, fpv-spin-slow 22s 1.8s linear infinite;
  opacity: 0;
  transform: scaleX(-1);
}

/* ── PARA QUIEN positions (white bg — green-tinted) ── */
.fpv-floats--paraquien {
  color: rgba(34, 197, 94, 0.2);
  position: relative;
}

.fpv-float--pos-13 {
  position: absolute;
  top: -40px;
  right: -2%;
  animation: fpv-fade-in 1s 0.7s ease-out forwards, fpv-bob-3 9s 1.7s ease-in-out infinite;
  opacity: 0;
}


/* ═══════════════════════════════════════════════════════
   FPV GEAR STRIP — Subtle marquee of equipment icons
   ═══════════════════════════════════════════════════════ */

.fpv-gear-strip {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.04) 0%, rgba(34, 197, 94, 0.01) 100%);
  border-top: 1px solid rgba(34, 197, 94, 0.08);
  border-bottom: 1px solid rgba(34, 197, 94, 0.08);
  padding: 12px 0;
  color: rgba(34, 197, 94, 0.18);
  pointer-events: none;
  position: relative;
  z-index: 0;
}

/* Fade edges */
.fpv-gear-strip::before,
.fpv-gear-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.fpv-gear-strip::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.fpv-gear-strip::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.fpv-gear-strip__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: fpv-gear-scroll 30s linear infinite;
}

.fpv-gear-strip__icon {
  flex-shrink: 0;
  opacity: 0.7;
}

@keyframes fpv-gear-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── MOBILE: disable hover effects ──────────────────── */
@media (max-width: 767px) {
  .benefit-card { transform: none !important; }
  .char { opacity: 1 !important; transform: none !important; transition: none !important; }
  .char-wrap { overflow: visible; }
  .overline { opacity: 1 !important; transform: none !important; }
  .section-title, .section-subtitle, .cta-final__headline, .cta-final__body { text-wrap: balance; }
  .bono-ribbon { font-size: 0.55rem; padding: 3px 32px; right: -36px; top: 12px; }
  .mockup-dots span { display: none; }

  /* FPV Floats: hide on mobile, but show hero floats at half size */
  .fpv-floats { display: none; }
  .fpv-floats--hero { display: block; }
  .fpv-floats--hero .fpv-float { transform: scale(0.5); }
  .fpv-floats--hero .fpv-float--pos-hero-5,
  .fpv-floats--hero .fpv-float--pos-hero-6,
  .fpv-floats--hero .fpv-float--pos-hero-7,
  .fpv-floats--hero .fpv-float--pos-hero-8 { display: none; }
  .fpv-gear-strip__track { gap: 2rem; }
  .fpv-gear-strip__icon {
    width: 40px;
    height: auto;
  }
}

/* ── PREFERS-REDUCED-MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .char { opacity: 1 !important; transform: none !important; }
  .char-wrap { overflow: visible; }
  .headline-line--accent::before { animation: none !important; }
  .precio-numero { animation: none !important; }
  .garantia-badge svg { animation: none !important; }
  .mockup-glow { animation: none !important; }
  .mockup-dots span { animation: none !important; }
  .sparkle { animation: none !important; }
  .precio-glow { animation: none !important; }
  .oferta-badge { animation: none !important; }
  .bono-card--shine:hover::before { animation: none !important; }
  .fpv-float { animation: none !important; opacity: 0.5 !important; }
  .fpv-gear-strip__track { animation: none !important; }
}
