    :root {
      --azul: #003F8A;
      --azul-claro: #1E6DC8;
      --celeste: #74B9E8;
      --amarillo: #F5C518;
      --blanco: #FFFFFF;
      --negro: #0A0A0A;
      --gris-claro: #F2F4F7;
      --gris-medio: #C8D0DB;
      --texto: #1a1a2e;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      color: var(--texto);
      background: var(--blanco);
      overflow-x: hidden;
    }

    /* ─── TOPBAR ─── */
    .topbar {
      background: var(--azul);
      color: var(--blanco);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .06em;
      text-align: center;
      padding: 8px 16px;
      display: flex;
      justify-content: center;
      gap: 28px;
    }
    .topbar span { display: flex; align-items: center; gap: 6px; }

    /* ─── NAVBAR ─── */
    nav {
      background: var(--negro);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 48px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(0,0,0,.5);
    }
    .logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .logo-top {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: var(--blanco);
      letter-spacing: .06em;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .logo-top .sun { font-size: 24px; }
    .logo-bottom {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--celeste);
      letter-spacing: .25em;
      text-transform: uppercase;
    }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gris-medio);
      text-decoration: none;
      position: relative;
      padding-bottom: 4px;
      transition: color .3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--celeste);
      transition: width .3s;
    }
    .nav-links a:hover { color: var(--blanco); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: var(--celeste); }
    .nav-links a.active::after { width: 100%; }
    .nav-icons { display: flex; gap: 20px; align-items: center; }
    .nav-icons svg { width: 22px; height: 22px; stroke: var(--gris-medio); fill: none; cursor: pointer; transition: stroke .3s; }
    .nav-icons svg:hover { stroke: var(--blanco); }
    .cart-badge {
      position: relative;
    }
    .cart-badge span {
      position: absolute;
      top: -6px; right: -8px;
      background: var(--celeste);
      color: var(--negro);
      font-size: 10px;
      font-weight: 700;
      width: 16px; height: 16px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-align: center;
    }

    /* Imagen de fondo del hero */
    /* Para reemplazar: cambiá la URL de background-image */
    .hero-bg-img {
      position: absolute;
      inset: 0;
      background-image: url('https://cadenanoticias.com/assets/article/00143149/20221003_xgvUxNq4n5.jpg');
      background-size: cover;
      background-position: center center;
      z-index: 0;
    }

    /* Video de YouTube como fondo del hero */
    /* El iframe se estira para cubrir todo el hero (técnica 16:9 escalado) */
    .hero-video-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 1; /* encima de la imagen, debajo del overlay */
      pointer-events: none;
    }
    .hero-video {
      position: absolute;
      /* Centramos y escalamos el iframe para cubrir el contenedor */
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      /* Mínimo ancho/alto para cubrir sin dejar franjas negras */
      min-width: 177.78vh; /* 16/9 * 100vh */
      min-height: 56.25vw; /* 9/16 * 100vw */
      width: 100vw;
      height: 56.25vw;
      border: none;
    }

    /* Capa opaca sobre el video/imagen */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 10, 30, 0.89); /* ← cambiá el 0.62 para más/menos opacidad */
      z-index: 2;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(116,185,232,.12) 0%, transparent 65%);
      pointer-events: none;
    }
    /* diagonal stripe */
    .hero::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 55%;
      height: 100%;
      background: linear-gradient(to right, transparent, rgba(0,63,138,.35));
      clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .hero-content {
      padding: 80px 64px;
      position: relative;
      z-index: 4;
      animation: fadeSlideUp .9s ease both;
      max-width: 720px;
      width: 100%;
    }
    .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(116,185,232,.15);
      border: 1px solid rgba(116,185,232,.3);
      color: var(--celeste);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(64px, 8vw, 100px);
      line-height: .95;
      color: var(--blanco);
      letter-spacing: .03em;
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--celeste);
      -webkit-text-stroke: 1px var(--celeste);
    }
    .hero-sub {
      font-size: 17px;
      color: rgba(255,255,255,.7);
      line-height: 1.6;
      max-width: 400px;
      margin-bottom: 36px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
    .btn-primary {
      background: var(--azul-claro);
      color: var(--blanco);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 14px 32px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: background .3s, transform .2s, box-shadow .3s;
      box-shadow: 0 4px 20px rgba(30,109,200,.4);
    }
    .btn-primary:hover { background: var(--celeste); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,109,200,.5); }
    .btn-outline {
      background: transparent;
      color: var(--blanco);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 14px 32px;
      border: 2px solid rgba(255,255,255,.35);
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: border-color .3s, background .3s, transform .2s;
    }
    .btn-outline:hover { border-color: var(--blanco); background: rgba(255,255,255,.08); transform: translateY(-2px); }
    .hero-trust {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,.6);
      font-size: 13px;
      font-weight: 600;
    }
    .hero-trust svg { width: 32px; height: 32px; stroke: var(--celeste); fill: none; flex-shrink: 0; }
    .hero-img {
      position: absolute;
      right: 0; top: 0;
      width: 56%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
    }
    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    /* fake stadium image placeholder con gradiente celeste */
    .hero-img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #0d2e5e 0%, #1a5ba8 40%, #74b9e8 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 60px;
      position: relative;
      overflow: hidden;
    }
    .hero-img-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='2'/%3E%3C/svg%3E") repeat;
    }

    /* ─── FEATURES STRIP ─── */
    .features {
      background: var(--gris-claro);
      padding: 56px 48px;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .feature-card {
      background: var(--blanco);
      border-radius: 10px;
      padding: 28px 24px;
      text-align: center;
      border: 1px solid rgba(0,0,0,.06);
      transition: transform .3s, box-shadow .3s;
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,63,138,.1); }
    .feature-icon {
      width: 52px; height: 52px;
      margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center;
    }
    .feature-icon svg { width: 100%; height: 100%; stroke: var(--azul-claro); fill: none; }
    .feature-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--texto);
      margin-bottom: 8px;
    }
    .feature-card p { font-size: 13px; color: #666; line-height: 1.5; }

    /* ─── SECTION HEADING ─── */
    .section-heading {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-heading h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 56px);
      letter-spacing: .08em;
      color: var(--texto);
    }
    .heading-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .heading-line .bar {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, var(--azul-claro), var(--celeste));
      border-radius: 2px;
    }

    /* ─── USOS ─── */
    .usos {
      padding: 80px 48px;
      background: var(--blanco);
    }
    .usos-grid {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 12px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .uso-item {
      text-align: center;
      cursor: pointer;
    }
    .uso-icon {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: var(--gris-claro);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 10px;
      border: 2px solid transparent;
      transition: border-color .3s, background .3s, transform .3s;
    }
    .uso-icon svg { width: 44px; height: 44px; }
    .uso-item:hover .uso-icon {
      border-color: var(--azul-claro);
      background: rgba(30,109,200,.08);
      transform: translateY(-4px) scale(1.05);
    }
    .uso-item span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--texto);
    }

    /* ─── BANNER BENEFICIOS ─── */
    .beneficios-banner {
      background: linear-gradient(90deg, var(--negro) 0%, #0d1f3c 50%, var(--azul) 100%);
      padding: 40px 48px;
    }
    .beneficios-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .beneficio {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--blanco);
    }
    .beneficio svg { width: 36px; height: 36px; stroke: var(--celeste); fill: none; flex-shrink: 0; }
    .beneficio span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      line-height: 1.3;
    }

    /* ─── PRODUCTOS ─── */
    .productos {
      padding: 80px 48px;
      background: var(--gris-claro);
    }
    .productos-slider {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
    }
    .productos-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .product-card {
      background: var(--blanco);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,.06);
      transition: transform .3s, box-shadow .3s;
    }
    .product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,63,138,.12); }
    .product-img {
      aspect-ratio: 1;
      display: flex; align-items: center; justify-content: center;
      font-size: 80px;
      background: linear-gradient(135deg, #e8f0fb 0%, #c8d8f0 100%);
      position: relative;
      overflow: hidden;
    }
    .product-badge {
      position: absolute;
      top: 12px; right: 12px;
      background: var(--azul);
      color: var(--blanco);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      padding: 4px 10px;
      border-radius: 20px;
    }
    .product-info { padding: 18px; }
    .product-info h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .product-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      color: var(--azul);
      letter-spacing: .04em;
      margin-bottom: 14px;
    }
    .btn-comprar {
      width: 100%;
      background: var(--azul);
      color: var(--blanco);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 11px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background .3s, transform .2s;
    }
    .btn-comprar:hover { background: var(--azul-claro); transform: scale(1.02); }

    /* ─── LIFESTYLE ─── */
    .lifestyle {
      padding: 80px 48px;
      background: var(--negro);
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 64px;
      align-items: center;
      max-width: 100%;
    }
    .lifestyle-text {
      color: var(--blanco);
    }
    .lifestyle-text h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 5vw, 68px);
      line-height: .95;
      letter-spacing: .04em;
      margin-bottom: 32px;
    }
    .lifestyle-text h2 em {
      font-style: normal;
      color: var(--celeste);
    }
    .lifestyle-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .chip {
      background: rgba(116,185,232,.12);
      border: 1px solid rgba(116,185,232,.25);
      color: var(--celeste);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background .3s, border-color .3s;
      cursor: default;
    }
    .chip:hover { background: rgba(116,185,232,.25); border-color: var(--celeste); }
    .lifestyle-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .lifestyle-photo {
      border-radius: 10px;
      aspect-ratio: 1;
      display: flex; align-items: center; justify-content: center;
      font-size: 40px;
      overflow: hidden;
      position: relative;
      transition: transform .4s;
    }
    .lifestyle-photo:hover { transform: scale(1.04); }
    .lifestyle-photo:nth-child(1) { background: linear-gradient(135deg, #2c5364, #203a43, #0f2027); }
    .lifestyle-photo:nth-child(2) { background: linear-gradient(135deg, #0d3b6e, #1a5ba8); margin-top: 28px; }
    .lifestyle-photo:nth-child(3) { background: linear-gradient(135deg, #1a3a6e, #4a90e2); margin-top: -28px; }
    .lifestyle-photo:nth-child(4) { background: linear-gradient(135deg, #0a1628, #0d2e5e); }
    .lifestyle-photo .photo-label {
      position: absolute;
      bottom: 10px; left: 10px;
      background: rgba(0,0,0,.6);
      color: var(--blanco);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 4px;
    }

    /* ─── FOOTER BAR ─── */
    .footer-trust {
      background: var(--blanco);
      border-top: 1px solid rgba(0,0,0,.08);
      padding: 28px 48px;
    }
    .footer-trust-grid {
      display: grid;
      grid-template-columns: repeat(3, auto);
      gap: 12px;
      max-width: 1100px;
      margin: 0 auto;
      justify-content: center;
      align-items: center;
    }
    .trust-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .trust-item svg { width: 32px; height: 32px; stroke: var(--azul); fill: none; flex-shrink: 0; }
    .trust-item span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--texto);
      line-height: 1.3;
    }

    /* ─── FOOTER ─── */
    footer {
      background: #070c16;
      color: rgba(255,255,255,.5);
      text-align: center;
      padding: 24px 48px;
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    footer strong { color: var(--celeste); }
    .footer-wp {
      position: fixed;
      bottom: 24px; right: 24px;
      width: 52px; height: 52px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.5);
      cursor: pointer;
      z-index: 200;
      transition: transform .3s, box-shadow .3s;
      text-decoration: none;
    }
    .footer-wp:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,.6); }
    .footer-wp svg { width: 28px; height: 28px; fill: var(--blanco); }

    /* ─── ANIMACIONES ─── */
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ─── RESPONSIVE BÁSICO ─── */
    @media (max-width: 900px) {
      nav { padding: 14px 24px; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; min-height: 70vh; }
      .hero-content { padding: 60px 28px; }
      .hero-img { display: none; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .usos-grid { grid-template-columns: repeat(4, 1fr); }
      .beneficios-inner { grid-template-columns: 1fr; gap: 20px; }
      .productos-grid { grid-template-columns: repeat(2, 1fr); }
      .lifestyle { grid-template-columns: 1fr; padding: 60px 28px; }
      .footer-trust-grid { grid-template-columns: repeat(2, 1fr); }
      footer { flex-direction: column; gap: 8px; text-align: center; }
    }

    /* ─── CONTADORES ─── */
    .contenedor-contadores {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: var(--negro);
    }
    .box-contador {
      padding: 48px 40px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .box-contador.mundial {
      background: linear-gradient(135deg, #0d1f3c 0%, #003F8A 100%);
      border-right: 1px solid rgba(116,185,232,.15);
    }
    .box-contador.cuellitos {
      background: linear-gradient(135deg, #003F8A 0%, #1E6DC8 100%);
    }
    .contador-icono {
      font-size: 36px;
      line-height: 1;
      margin-bottom: 4px;
    }
    .box-contador .numero {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 7vw, 88px);
      color: var(--blanco);
      letter-spacing: .04em;
      line-height: 1;
    }
    .box-contador .numero.grande {
      color: var(--amarillo);
      text-shadow: 0 0 32px rgba(245,197,24,.35);
    }
    .box-contador .label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.65);
    }
    @media (max-width: 600px) {
      .contenedor-contadores { grid-template-columns: 1fr; }
      .box-contador.mundial { border-right: none; border-bottom: 1px solid rgba(116,185,232,.15); }
      .box-contador { padding: 36px 24px; }
    }

    /* ─── PRODUCTO ÚNICO CENTRADO ─── */
    .productos-single {
      display: flex !important;
      justify-content: center;
      grid-template-columns: none !important;
    }
    .product-card--featured {
      max-width: 480px;
      width: 100%;
      box-shadow: 0 24px 64px rgba(0,63,138,.16);
      border: 1px solid rgba(0,63,138,.12);
    }
    .product-img--featured {
      aspect-ratio: 4/3 !important;
      font-size: 120px !important;
      background: linear-gradient(135deg, #0d2e5e 0%, #1a5ba8 55%, #74B9E8 100%) !important;
    }
    .product-card--featured .product-info {
      padding: 28px 28px 32px;
    }
    .product-card--featured .product-info h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }
    .product-desc {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 18px;
    }
    .product-card--featured .product-price {
      font-size: 40px;
      margin-bottom: 20px;
    }
    .product-card--featured .btn-comprar {
      padding: 15px;
      font-size: 16px;
      letter-spacing: .14em;
    }

    /* ─── LIFESTYLE NUEVO ─── */
    .lifestyle {
      padding: 80px 48px 60px;
      background: var(--negro);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 48px;
    }
    .lifestyle-text {
      color: var(--blanco);
      text-align: center;
    }
    .lifestyle-text h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 5vw, 68px);
      line-height: .95;
      letter-spacing: .04em;
    }
    .lifestyle-text h2 em {
      font-style: normal;
      color: var(--celeste);
    }

    /* Slider */
    .lifestyle-slider-wrap {
      position: relative;
      width: 100%;
      max-width: 1100px;
    }
    .lifestyle-slider {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 4px;
    }
    .lifestyle-slider::-webkit-scrollbar { display: none; }
    .slide {
      flex: 0 0 calc((100% - 32px) / 3); /* 3 por vez */
      scroll-snap-align: start;
      border-radius: 14px;
      aspect-ratio: 9/10;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      transition: transform .3s;
    }
    .slide:hover { transform: scale(1.02); }
    .slide .slide-placeholder {
      font-size: 64px;
      opacity: .45;
    }
    .slide-video .slide-video-mock {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .play-btn {
      width: 52px; height: 52px;
      background: rgba(255,255,255,.18);
      border: 2px solid rgba(255,255,255,.5);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      color: white;
      cursor: pointer;
      transition: background .3s;
    }
    .slide-video:hover .play-btn { background: rgba(255,255,255,.32); }
    .slide-label {
      position: absolute;
      bottom: 12px; left: 12px;
      background: rgba(0,0,0,.55);
      color: var(--blanco);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
    }
    .slide-video .slide-label {
      right: 12px; left: auto;
      background: rgba(30,109,200,.75);
    }
    /* iframe de YouTube dentro del slide */
    .slide-yt {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 14px;
    }
    .slide-video { background: #0a0a0a; }

    /* Botones prev/next */
    .slider-btn {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      color: var(--blanco);
      width: 44px; height: 44px;
      border-radius: 50%;
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      z-index: 10;
      transition: background .3s, transform .2s;
      display: flex; align-items: center; justify-content: center;
    }
    .slider-btn:hover { background: rgba(255,255,255,.25); transform: translateY(-50%) scale(1.08); }
    .slider-prev { left: -22px; }
    .slider-next { right: -22px; }

    /* Dots */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
    .slider-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.25);
      border: none;
      cursor: pointer;
      transition: background .3s, transform .2s;
    }
    .slider-dot.active {
      background: var(--celeste);
      transform: scale(1.3);
    }

    /* Frase destacada */
    .lifestyle-frase {
      text-align: center;
      max-width: 700px;
    }
    .lifestyle-frase blockquote {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(22px, 3vw, 34px);
      letter-spacing: .06em;
      color: var(--celeste);
      line-height: 1.3;
      position: relative;
      padding: 0 24px;
    }
    .lifestyle-frase blockquote::before,
    .lifestyle-frase blockquote::after {
      content: '"';
      font-size: 1.4em;
      color: rgba(116,185,232,.35);
      vertical-align: -.15em;
    }

    @media (max-width: 900px) {
      .slide { flex: 0 0 calc((100% - 16px) / 2); }
      .slider-prev { left: -14px; }
      .slider-next { right: -14px; }
    }
    @media (max-width: 560px) {
      .slide { flex: 0 0 85%; }
      .lifestyle { padding: 60px 28px 48px; }
    }