/* ─── CSS VARIABLES ─── */
    :root {
      --magenta: #e8197a;
      --cyan: #00b4e0;
      --yellow: #ffe600;
      --black: #0a0a0a;
      --dark: #111111;
      --card-bg: #161616;
      --white: #ffffff;
      --gray: #888888;
      --font-display: 'Bebas Neue', sans-serif;
      --font-condensed: 'Bebas Neue', sans-serif;
      --font-body: 'Bebas Neue', sans-serif;
      --radius: 12px;
      --gutter: 16px;
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      line-height: 1.5;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ─── UNMUTE BUTTON ─── */
    #unmuteBtn {
      position: absolute;
      top: 80px;
      right: 16px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(0,0,0,.55);
      backdrop-filter: blur(10px);
      border: 1.5px solid rgba(255,255,255,.2);
      border-radius: 100px;
      padding: 8px 16px;
      color: #fff;
      font-family: var(--font-condensed);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s, border-color .2s, transform .15s;
      animation: fadeInBtn .6s ease .8s both;
    }
    #unmuteBtn:hover {
      background: rgba(232,25,122,.45);
      border-color: var(--magenta);
      transform: scale(1.04);
    }
    #unmuteBtn.is-on {
      background: rgba(232,25,122,.25);
      border-color: var(--magenta);
    }
    #unmuteIcon { font-size: 1rem; }
    @keyframes fadeInBtn {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }


    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: .5;
    }

    /* ─── HEADER ─── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px var(--gutter);
      background: rgba(10,10,10,.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .header-logo {
      height: 42px;
      width: auto;
    }
    nav { display: flex; gap: 18px; align-items: center; }
    nav a {
      font-family: var(--font-condensed);
      font-weight: 600;
      font-size: .8rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gray);
      transition: color .2s;
    }
    nav a:hover { color: var(--cyan); }
    .nav-cta {
      background: var(--magenta);
      color: #fff !important;
      padding: 7px 14px;
      border-radius: 6px;
      font-weight: 700 !important;
      font-size: .78rem !important;
      letter-spacing: .06em;
    }
    .nav-cta:hover { background: #c4146a !important; }
    .nav-login {
      color: var(--black) !important;
      background: var(--yellow);
      padding: 7px 14px;
      border-radius: 6px;
      font-weight: 700 !important;
      font-size: .78rem !important;
      letter-spacing: .06em;
    }
    .nav-login:hover {
      color: var(--black) !important;
      background: var(--cyan);
    }

    /* ─── HERO VIDEO SECTION ─── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-top: 62px;
    }
    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    /* Mobile: native 9:16 centered */
    .hero-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,10,10,.25) 0%,
        rgba(10,10,10,.10) 40%,
        rgba(10,10,10,.75) 80%,
        rgba(10,10,10,1) 100%
      );
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: var(--gutter);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      min-height: calc(100svh - 62px);
      padding-bottom: 48px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,230,0,.12);
      border: 1px solid rgba(255,230,0,.35);
      border-radius: 100px;
      padding: 5px 14px;
      font-family: var(--font-condensed);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 16px;
      backdrop-filter: blur(6px);
    }
    .hero-badge span { font-size: .9rem; }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(3.2rem, 14vw, 5.5rem);
      line-height: .9;
      letter-spacing: .01em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .hero h1 em { font-style: normal; color: var(--magenta); }
    .hero h1 strong { font-style: normal; color: var(--cyan); }
    .hero-sub {
      font-family: var(--font-condensed);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: .06em;
      color: rgba(255,255,255,.7);
      margin-bottom: 28px;
      text-transform: uppercase;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 8px;
      font-family: var(--font-condensed);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: transform .15s, box-shadow .15s;
    }
    .btn-primary:active { transform: scale(.97); }
    .btn-green {
      background: #25D366;
      color: #fff;
      box-shadow: 0 4px 24px rgba(37,211,102,.35);
    }
    .btn-green:hover { box-shadow: 0 6px 32px rgba(37,211,102,.55); transform: translateY(-2px); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,.25);
    }
    .btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
    .scroll-hint {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      animation: bounce 2s infinite;
      opacity: .6;
      font-size: 1.4rem;
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* Tablet: constrain video to 9:16 column */
    @media (min-width: 768px) and (max-width: 1023px) {
      .hero-video-wrap {
        display: flex;
        align-items: stretch;
        justify-content: center;
      }
      .hero-video-wrap::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, transparent 30%, var(--black) 80%);
        z-index: 1;
      }
      .hero-video-wrap video {
        width: auto;
        height: 100%;
        max-width: 56vh;
        object-fit: cover;
      }
    }

    /* Desktop ≥1024 px: video 16:9, full width */
    @media (min-width: 1024px) {
      .hero {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
      }
      .hero-video-wrap {
        position: absolute;
        inset: 0;
      }
      .hero-video-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover;        /* fills the 100vw × 100vh box maintaining 16:9 */
        object-position: center;
      }
      /* Stronger bottom gradient so text stays legible over wide shot */
      .hero-overlay {
        background: linear-gradient(
          to bottom,
          rgba(10,10,10,.15) 0%,
          rgba(10,10,10,.05) 35%,
          rgba(10,10,10,.70) 72%,
          rgba(10,10,10,1)   100%
        );
      }
      /* Keep hero at least 56.25 vw tall so the 16:9 frame is never cropped vertically */
      .hero-content {
        min-height: max(100svh, 56.25vw);
      }
    }

    /* ─── SECTION SHARED ─── */
    section { padding: 64px var(--gutter); }
    .section-tag {
      display: inline-block;
      font-family: var(--font-condensed);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 9vw, 4.2rem);
      line-height: .92;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .section-title em { font-style: normal; color: var(--magenta); }
    .section-title strong { font-style: normal; color: var(--cyan); }
    .section-subtitle {
      font-family: var(--font-condensed);
      font-size: 1rem;
      color: var(--gray);
      margin-bottom: 36px;
    }
    .max-w { max-width: 900px; margin: 0 auto; }

    /* ─── WHATSAPP SUBSCRIBE ─── */
    .wa-section {
      background: linear-gradient(135deg, rgba(37,211,102,.08) 0%, rgba(10,10,10,0) 60%);
      border-top: 1px solid rgba(37,211,102,.15);
      border-bottom: 1px solid rgba(37,211,102,.15);
    }
    .wa-card {
      background: rgba(37,211,102,.06);
      border: 1.5px solid rgba(37,211,102,.25);
      border-radius: 20px;
      padding: 36px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 18px;
    }
    .wa-icon { font-size: 3rem; }
    .wa-card h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 7vw, 3rem);
      line-height: 1;
      text-transform: uppercase;
    }
    .wa-card p {
      font-size: .95rem;
      color: rgba(255,255,255,.75);
      max-width: 420px;
      line-height: 1.6;
    }

    /* ─── MODAL ─── */
    .modal-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.8);
      backdrop-filter: blur(8px);
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .modal-backdrop.open { display: flex; }
    .modal {
      background: var(--dark);
      border: 1.5px solid rgba(37,211,102,.3);
      border-radius: 20px;
      padding: 32px 24px;
      width: 100%;
      max-width: 440px;
      position: relative;
      animation: slideUp .3s ease;
    }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .modal-close {
      position: absolute;
      top: 14px; right: 18px;
      background: none; border: none;
      color: var(--gray);
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
    }
    .modal-close:hover { color: var(--white); }
    .modal h3 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .modal p { font-size: .85rem; color: var(--gray); margin-bottom: 22px; }
    .form-group { margin-bottom: 14px; }
    .form-group label {
      display: block;
      font-family: var(--font-condensed);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 5px;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 12px 14px;
      background: rgba(255,255,255,.06);
      border: 1.5px solid rgba(255,255,255,.1);
      border-radius: 8px;
      color: var(--white);
      font-family: var(--font-body);
      font-size: .95rem;
      outline: none;
      transition: border-color .2s;
    }
    .form-group input:focus,
    .form-group select:focus { border-color: #25D366; }
    .form-group select option { background: #1a1a1a; }
    .btn-submit {
      width: 100%;
      padding: 15px;
      background: #25D366;
      border: none;
      border-radius: 8px;
      color: #fff;
      font-family: var(--font-condensed);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 6px;
      transition: background .2s, transform .15s;
    }
    .btn-submit:hover { background: #1da850; transform: translateY(-1px); }

    /* ─── SERVICES GRID ─── */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 8px;
    }
    @media (min-width: 600px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 900px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
    .service-card {
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--radius);
      padding: 20px 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      transition: border-color .25s, transform .25s, box-shadow .25s;
      cursor: default;
    }
    .service-card:hover {
      border-color: var(--magenta);
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(232,25,122,.18);
    }
    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      flex-shrink: 0;
    }
    .icon-m { background: rgba(232,25,122,.15); }
    .icon-c { background: rgba(0,180,224,.15); }
    .icon-y { background: rgba(255,230,0,.12); }
    .icon-g { background: rgba(37,211,102,.12); }
    .service-card h3 {
      font-family: var(--font-condensed);
      font-weight: 700;
      font-size: .88rem;
      letter-spacing: .04em;
      text-transform: uppercase;
      line-height: 1.2;
    }
    .service-card p {
      font-size: .75rem;
      color: var(--gray);
      line-height: 1.4;
    }

    /* ─── CLUB DE SOCIOS ─── */
    .club-section {
      background: linear-gradient(135deg, rgba(232,25,122,.07) 0%, rgba(0,180,224,.05) 100%);
      border-top: 1px solid rgba(255,255,255,.06);
      position: relative;
      overflow: hidden;
    }
    .club-section::before {
      content: 'PYG';
      position: absolute;
      font-family: var(--font-display);
      font-size: clamp(8rem, 30vw, 18rem);
      color: rgba(255,255,255,.025);
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      pointer-events: none;
      letter-spacing: .05em;
      white-space: nowrap;
    }
    .club-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 24px;
    }
    .club-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--magenta), var(--cyan));
      border-radius: 100px;
      padding: 8px 22px;
      font-family: var(--font-condensed);
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .club-perks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      width: 100%;
      max-width: 500px;
      text-align: left;
    }
    @media (min-width: 600px) { .club-perks { grid-template-columns: repeat(3, 1fr); } }
    .perk {
      background: rgba(255,255,255,.05);
      border-radius: 10px;
      padding: 14px 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .perk-icon { font-size: 1.4rem; }
    .perk-label {
      font-family: var(--font-condensed);
      font-size: .8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .04em;
    }
    .perk-desc { font-size: .72rem; color: var(--gray); line-height: 1.3; }
    .club-url {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 100px;
      padding: 10px 20px;
      font-family: var(--font-condensed);
      font-size: .85rem;
      color: var(--cyan);
      letter-spacing: .04em;
    }
    .club-url:hover { background: rgba(0,180,224,.1); }

    /* ─── STRIPE TICKER ─── */
    .ticker-wrap {
      overflow: hidden;
      background: var(--magenta);
      padding: 10px 0;
      white-space: nowrap;
    }
    .ticker-track {
      display: inline-block;
      animation: ticker 30s linear infinite;
    }
    .ticker-track span {
      font-family: var(--font-display);
      font-size: 1rem;
      letter-spacing: .05em;
      text-transform: uppercase;
      margin: 0 24px;
      color: rgba(255,255,255,.9);
    }
    .ticker-track span::before {
      content: '★ ';
      color: var(--yellow);
      margin-right: 4px;
    }
    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── SOCIAL / LINKS ─── */
    .links-section { text-align: center; }
    .links-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 28px;
    }
    @media (min-width: 600px) { .links-grid { grid-template-columns: repeat(3, 1fr); } }
    .link-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--radius);
      padding: 18px 12px;
      font-family: var(--font-condensed);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: border-color .2s, transform .2s;
    }
    .link-card:hover { border-color: var(--cyan); transform: translateY(-3px); color: var(--cyan); }
    .link-card .lk-icon { font-size: 1.8rem; }

    /* ─── FOOTER ─── */
    footer {
      background: #080808;
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 40px var(--gutter) 28px;
      text-align: center;
    }
    .footer-logo { height: 56px; margin: 0 auto 16px; }
    .footer-tagline {
      font-family: var(--font-condensed);
      font-size: .85rem;
      color: var(--gray);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-copy {
      font-size: .72rem;
      color: rgba(255,255,255,.25);
      letter-spacing: .04em;
    }
    .footer-keywords {
      font-size: .65rem;
      color: rgba(255,255,255,.08);
      line-height: 2;
      margin-top: 14px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ─── FAB WHATSAPP ─── */
    .fab-wa {
      position: fixed;
      bottom: 24px;
      right: 20px;
      z-index: 150;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      box-shadow: 0 4px 20px rgba(37,211,102,.5);
      transition: transform .2s, box-shadow .2s;
      animation: pulse-wa 3s ease-in-out infinite;
    }
    .fab-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.7); }
    @keyframes pulse-wa {
      0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
      50%      { box-shadow: 0 4px 36px rgba(37,211,102,.8); }
    }

    /* ─── PAINT STROKE DIVIDER ─── */
    .stroke-divider {
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, var(--magenta) 0%, var(--yellow) 50%, var(--cyan) 100%);
      border: none;
      margin: 0;
    }

    /* ─── SUCCESS STATE ─── */
    .success-msg {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      text-align: center;
      padding: 24px 0;
    }
    .success-msg.show { display: flex; }
    .success-icon { font-size: 3.5rem; }
    .success-msg h3 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      text-transform: uppercase;
    }
    .success-msg p { font-size: .9rem; color: var(--gray); }
