    :root {
      --primary: #00d67a;
      --dark: #0f0f0f;
      --card: #1a1a1a;
      --text: #ccc;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--dark);
      color: #fff;
      line-height: 1.7;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    html {
      scroll-behavior: smooth;
    }

    /* NAVEGACIÓN FIJA */
    /* NAVEGACIÓN FIJA */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: transparent;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      z-index: 999;
      padding: 10px 20px;
      transition: all 0.3s ease;
    }

    .nav .container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo img {
      height: 50px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 18px;
      list-style: none;
    }

    .nav-menu>li>a {
      color: #fff;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
      white-space: nowrap;
    }

    .nav-menu>li>a:hover {
      color: #00d67a;
    }

    .nav-menu>li>a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -6px;
      left: 0;
      background: #00d67a;
      transition: width 0.3s;
    }

    .nav-menu>li>a:hover::after {
      width: 100%;
    }

    /* DROPDOWN Empieza YA */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
      background: var(--primary);
      color: #000;
      box-shadow: 0 4px 12px rgba(0, 214, 122, 0.25);
    }

    .nav-dropdown-toggle:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0, 214, 122, 0.4);
    }

    .nav-dropdown-caret {
      font-size: 0.75rem;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: #111;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      list-style: none;
      padding: 6px 0;
      margin: 0;
      min-width: 220px;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
      display: none;
      z-index: 1000;
    }

    .nav-dropdown.open .nav-dropdown-menu {
      display: block;
    }

    .nav-dropdown-menu li a {
      display: block;
      padding: 8px 14px;
      font-size: 0.9rem;
      color: #eee;
    }

    .nav-dropdown-menu li a:hover {
      background: #1b1b1b;
      color: var(--primary);
    }

    /* BotÃ³n hamburguesa para mÃ³vil */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.8rem;
      cursor: pointer;
    }

    /* Selector idioma */
    .nav-lang select {
      background: #111;
      color: #fff;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 4px 10px;
      font-size: 0.85rem;
      cursor: pointer;
    }

/* SELECTOR DE IDIOMA CON DROPDOWN */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #fff;
  transition: all 0.3s ease;
}

.lang-current:hover {
  border-color: var(--primary);
  background: #1a1a1a;
}

.lang-code {
  font-weight: 600;
}

.lang-caret {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.lang-switcher.open .lang-list {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}
.lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 120px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.lang-switcher.open .lang-caret {
  transform: rotate(180deg);
}

.lang-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-list li:hover {
  background: #1a1a1a;
  color: var(--primary);
}

.flag {
  width: 20px;
  height: 15px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.flag[data-flag="es"] { background-image: url('https://flagcdn.com/w20/es.png'); }
.flag[data-flag="en"] { background-image: url('https://flagcdn.com/w20/gb.png'); }
.flag[data-flag="pt"] { background-image: url('https://flagcdn.com/w20/pt.png'); }
.flag[data-flag="fr"] { background-image: url('https://flagcdn.com/w20/fr.png'); }
.flag[data-flag="it"] { background-image: url('https://flagcdn.com/w20/it.png'); }
.flag[data-flag="de"] { background-image: url('https://flagcdn.com/w20/de.png'); }
.flag[data-flag="ru"] { background-image: url('https://flagcdn.com/w20/ru.png'); }
.flag[data-flag="zh"] { background-image: url('https://flagcdn.com/w20/cn.png'); }
.flag[data-flag="ja"] { background-image: url('https://flagcdn.com/w20/jp.png'); }
.flag[data-flag="hi"] { background-image: url('https://flagcdn.com/w20/in.png'); }
.flag[data-flag="el"] { background-image: url('https://flagcdn.com/w20/gr.png'); }
.flag[data-flag="ro"] { background-image: url('https://flagcdn.com/w20/ro.png'); }
.flag[data-flag="th"] { background-image: url('https://flagcdn.com/w20/th.png'); }
.flag[data-flag="vi"] { background-image: url('https://flagcdn.com/w20/vn.png'); }
    /* Responsive mÃ³vil */
    @media (max-width: 768px) {
      .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0f0f0f;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 30px 24px;
        gap: 16px;
        transition: left 0.4s ease;
      }

      .nav-menu.active {
        left: 0;
      }

      .nav-toggle {
        display: block;
      }

      .nav-dropdown {
        width: 100%;
      }

      .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        margin-top: 8px;
        width: 100%;
      }

      .nav-dropdown-menu li a {
        padding: 8px 10px;
      }
    }

    /* Zona sponsors en la barra de navegaciÃ³n */
    .nav-sponsor-toggle {
      background: linear-gradient(135deg, #00ff9a, #00c4ff);
      color: #050810;
      font-weight: 600;
      padding: 0.6rem 1.3rem;
      border-radius: 999px;
      border: none;
      display: flex;
      align-items: center;
      gap: 0.35rem;
      box-shadow: 0 0 14px rgba(0, 255, 154, 0.45);
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    }

    .nav-sponsor-toggle .nav-dropdown-caret {
      font-size: 0.8rem;
    }

    .nav-sponsor-toggle:hover {
      transform: translateY(-1px) scale(1.02);
      box-shadow: 0 0 18px rgba(0, 255, 154, 0.65);
      filter: brightness(1.05);
    }

    .nav-sponsor-menu {
      min-width: 230px;
    }

    .nav-sponsor-menu a {
      font-weight: 500;
    }

/* ============================================
   ITEM ESPECIAL MÁGICO - "CREA TU LANDING" 
   ============================================ */

.nav-sponsor-special {
  position: relative;
  margin: 4px;
  border-radius: 8px;
  overflow: hidden;
}

.nav-sponsor-special::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    #00d67a,
    #00ffcc,
    #7affb4,
    #00d67a
  );
  background-size: 300% 300%;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: navBorderGlow 3s linear infinite;
  z-index: -1;
}

.nav-sponsor-special a {
  position: relative;
  display: block;
  padding: 10px 16px !important;
  background: linear-gradient(
    135deg,
    rgba(0, 214, 122, 0.15),
    rgba(0, 255, 204, 0.1)
  ) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 6px;
  transition: all 0.3s ease !important;
  box-shadow: 
    0 0 15px rgba(0, 214, 122, 0.3),
    inset 0 0 10px rgba(0, 214, 122, 0.1);
  animation: navItemPulse 2s ease-in-out infinite;
}

.nav-sponsor-special a::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  animation: navShine 4s linear infinite;
}

.nav-sponsor-special a:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 214, 122, 0.25),
    rgba(0, 255, 204, 0.18)
  ) !important;
  color: #00ffcc !important;
  transform: translateX(3px) scale(1.02);
  box-shadow: 
    0 0 25px rgba(0, 214, 122, 0.5),
    inset 0 0 15px rgba(0, 214, 122, 0.2);
}

/* Animaciones para el item del nav */
@keyframes navBorderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes navItemPulse {
  0%, 100% {
    box-shadow: 
      0 0 15px rgba(0, 214, 122, 0.3),
      inset 0 0 10px rgba(0, 214, 122, 0.1);
  }
  50% {
    box-shadow: 
      0 0 25px rgba(0, 214, 122, 0.5),
      inset 0 0 15px rgba(0, 214, 122, 0.2);
  }
}

@keyframes navShine {
  0% {
    left: -100%;
  }
  20%, 100% {
    left: 200%;
  }
}

    /* Opcional: pequeÃ±o badge glow en mÃ³vil cuando el menÃº estÃ© abierto */
    .nav-sponsor-dropdown.open .nav-sponsor-toggle {
      box-shadow: 0 0 22px rgba(0, 255, 154, 0.85);
    }

    /* LOGO HEADER */
    .logo-header {
      text-align: center;
      padding: 20px 20px 0;
      position: sticky;
      top: 0;
      background: var(--dark);
      z-index: 100;
      animation: fadeInDown 1s ease-out;
    }

    .logo-header img {
      height: 80px;
      width: auto;
      filter: brightness(1.1);
    }

    @media (max-width: 480px) {
      .logo-header img {
        height: 50px;
      }
    }

    /* REUNIONES EN DIRECTO â€“ LINK Y TOOLTIP */
    .nav-live-wrapper {
      position: relative;
    }

    #nav-live {
      font-weight: 600;
      position: relative;
    }



/* Esperando directo: ROJO parpadeando */
#nav-live.live-wait {
  color: #ff6b6b;
  text-shadow: 0 0 4px rgba(255, 107, 107, 0.4);
  animation: pulseRed 1.5s ease-in-out infinite;
}

/* En directo: VERDE parpadeando */
#nav-live.live-on {
  color: #00ff6a;
  text-shadow:
    0 0 6px rgba(0, 255, 106, 0.8),
    0 0 14px rgba(0, 255, 106, 0.6);
  animation: pulseGreen 1.5s ease-in-out infinite;
}

/* Animación rojo parpadeante */
@keyframes pulseRed {
  0%, 100% {
    opacity: 0.7;
    text-shadow: 0 0 4px rgba(255, 107, 107, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255, 107, 107, 0.9);
    transform: scale(1.05);
  }
}

/* Animación verde parpadeante */
@keyframes pulseGreen {
  0%, 100% {
    opacity: 0.7;
    text-shadow: 0 0 4px rgba(0, 255, 106, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 12px rgba(0, 255, 106, 0.9),
      0 0 20px rgba(0, 255, 106, 0.7);
    transform: scale(1.05);
  }
}

    /* Tooltip OFFLINE / ONLINE */
    .live-status-badge {
      position: absolute;
      left: 50%;
      top: calc(100% + 8px);
      transform: translateX(-50%) translateY(6px) scale(0.96);
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(0, 0, 0, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #ccc;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
      z-index: 1200;
    }

    /* Solo se muestra al hacer hover en el li */
    .nav-live-wrapper:hover .live-status-badge {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(1);
    }

    /* Estilos segÃºn estado */
    .live-status-badge.offline {
      background: rgba(40, 40, 40, 0.95);
      border-color: rgba(255, 255, 255, 0.2);
      color: #ff6b6b;
    }

    .live-status-badge.online {
      background: rgba(255, 23, 68, 0.15);
      border-color: rgba(255, 23, 68, 0.8);
      color: #ff1744;
    }

    /* Pulsos suaves */
    @keyframes pulseRedSoft {
      0% {
        opacity: 0.6;
        text-shadow: 0 0 2px rgba(255, 107, 107, 0.2);
        transform: scale(1);
      }

      50% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(255, 107, 107, 0.7);
        transform: scale(1.03);
      }

      100% {
        opacity: 0.6;
        text-shadow: 0 0 2px rgba(255, 107, 107, 0.2);
        transform: scale(1);
      }
    }

    @keyframes pulseRedStrong {
      0% {
        opacity: 0.7;
        text-shadow: 0 0 4px rgba(255, 23, 68, 0.4);
        transform: scale(1);
      }

      50% {
        opacity: 1;
        text-shadow:
          0 0 10px rgba(255, 23, 68, 0.9),
          0 0 20px rgba(255, 23, 68, 0.7);
        transform: scale(1.05);
      }

      100% {
        opacity: 0.7;
        text-shadow: 0 0 4px rgba(255, 23, 68, 0.4);
        transform: scale(1);
      }
    }

    /* REUNIONES EN DIRECTO â€“ ESTADO EN NAV */
    #nav-live {
      font-weight: 600;
      position: relative;
    }

    /* Esperando directo: rojo suave con brillo lento */
    #nav-live.live-wait {
      color: #ff6b6b;
      /* rojo suave */
      text-shadow: 0 0 4px rgba(255, 107, 107, 0.4);
      animation: pulseRedSoft 2.4s ease-in-out infinite;
    }

    /* En directo: rojo intenso, pulso mÃ¡s marcado */
    #nav-live.live-on {
      color: #ff1744;
      /* rojo fuerte */
      text-shadow:
        0 0 6px rgba(255, 23, 68, 0.8),
        0 0 14px rgba(255, 23, 68, 0.6);
      animation: pulseRedStrong 1.4s ease-in-out infinite;
    }

    /* AnimaciÃ³n suave: â€œrespiraâ€ */
    @keyframes pulseRedSoft {
      0% {
        opacity: 0.6;
        text-shadow: 0 0 2px rgba(255, 107, 107, 0.2);
        transform: scale(1);
      }

      50% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(255, 107, 107, 0.7);
        transform: scale(1.03);
      }

      100% {
        opacity: 0.6;
        text-shadow: 0 0 2px rgba(255, 107, 107, 0.2);
        transform: scale(1);
      }
    }

    /* AnimaciÃ³n mÃ¡s fuerte cuando estÃ¡ en directo */
    @keyframes pulseRedStrong {
      0% {
        opacity: 0.7;
        text-shadow: 0 0 4px rgba(255, 23, 68, 0.4);
        transform: scale(1);
      }

      50% {
        opacity: 1;
        text-shadow:
          0 0 10px rgba(255, 23, 68, 0.9),
          0 0 20px rgba(255, 23, 68, 0.7);
        transform: scale(1.05);
      }

      100% {
        opacity: 0.7;
        text-shadow: 0 0 4px rgba(255, 23, 68, 0.4);
        transform: scale(1);
      }
    }



    /* HERO */
  .hero {
    position: relative;
    min-height: 90vh;
    margin-top: -60px; /* Sube hasta el nav */
    padding-top: 100px; /* Compensa */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 80px;
    overflow: hidden;
    background: #0f0f0f;
  }

/* Video de fondo del hero */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay oscuro sobre el video CON DIFUMINADO */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.2) 0%,
    rgba(15, 15, 15, 0.6) 50%,
    rgba(15, 15, 15, 0.3) 75%,
    rgba(15, 15, 15, 0.1) 90%,
    rgba(15, 15, 15, 0) 100%
  );
  z-index: 1;
}

/* Difuminado extra en la parte inferior del hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px; /* Más alto */
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0) 0%,
    rgba(15, 15, 15, 0.1) 20%,
    rgba(15, 15, 15, 0.3) 40%,
    rgba(15, 15, 15, 0.6) 70%,
    rgba(15, 15, 15, 0.95) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Contenido del hero por encima del video */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
}

    .hero h1 {
      font-size: clamp(2.2rem, 8vw, 3.2rem);
      margin: 20px 0 16px;
      font-weight: 700;
      animation: fadeInUp 1s ease-out 0.3s both;
    }

    .hero h1 strong {
      color: var(--primary);
    }

    .hero p {
      font-size: clamp(1.1rem, 4vw, 1.4rem);
      max-width: 90%;
      margin: 0 auto 32px;
      color: var(--text);
      animation: fadeInUp 1s ease-out 0.5s both;
    }

    .hero-video-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 30px auto;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
      animation: fadeInUp 1s ease-out 0.7s both;
    }

    .hero-video-container::before {
      content: '';
      display: block;
      padding-top: 56.25%;
    }

    .hero-video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    @media (max-width: 768px) {
      .hero-video-container {
        margin: 24px auto;
        border-radius: 12px;
      }
    }

    .cta {
      background: var(--primary);
      color: #000;
      padding: 14px 32px;
      border: none;
      border-radius: 50px;
      font-size: clamp(1rem, 3.5vw, 1.1rem);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      min-height: 48px;
      box-shadow: 0 4px 15px rgba(0, 214, 122, 0.3);
      animation: fadeInUp 1s ease-out 0.9s both;
    }

    .cta:hover,
    .cta:active {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 214, 122, 0.5);
    }

    .section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .no-line::after {
      display: none !important;
    }

    .section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .section h2 {
      text-align: center;
      font-size: clamp(1.8rem, 6vw, 2.4rem);
      margin-bottom: 50px;
      position: relative;
    }

    .section h2::after {
      content: '';
      width: 60px;
      height: 4px;
      background: var(--primary);
      display: block;
      margin: 16px auto 0;
      border-radius: 2px;
    }

    /* SECCIÃ“N CREA TU LANDING */
    .section-landing-partner {
      position: relative;
    }

    .section-landing-partner .lp-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 38px 26px 34px;
      border-radius: 24px;
      background:
        radial-gradient(circle at top left, rgba(0, 214, 122, 0.18), transparent 60%),
        radial-gradient(circle at bottom right, rgba(0, 214, 122, 0.14), transparent 60%),
        #090909;
      border: 1px solid rgba(0, 214, 122, 0.28);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
    }

    .lp-copy {
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }

/* BADGE MÁGICO - CREA TU LANDING - CON ESPECIFICIDAD ALTA */
.section-landing-partner .lp-badge,
.lp-copy .lp-badge {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, 
    rgba(0, 214, 122, 0.2), 
    rgba(0, 255, 200, 0.15)) !important;
  border: 2px solid transparent !important;
  background-clip: padding-box;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  font-weight: 700 !important;
  margin-bottom: 18px;
  cursor: default;
  overflow: hidden;
  box-shadow: 
    0 0 20px rgba(0, 214, 122, 0.4),
    0 0 40px rgba(0, 214, 122, 0.2),
    inset 0 0 20px rgba(0, 214, 122, 0.1) !important;
  animation: magicGlow 3s ease-in-out infinite !important;
}

/* Borde animado degradado */
.section-landing-partner .lp-badge::before,
.lp-copy .lp-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(
    45deg,
    #00d67a,
    #00ffcc,
    #00d67a,
    #7affb4,
    #00d67a
  );
  background-size: 300% 300%;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}

/* Estrellita mágica animada */
.section-landing-partner .lp-badge::after,
.lp-copy .lp-badge::after {
  content: "✨";
  font-size: 1.1rem;
  animation: starPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

/* Animación de brillo mágico */
@keyframes magicGlow {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(0, 214, 122, 0.4),
      0 0 40px rgba(0, 214, 122, 0.2),
      inset 0 0 20px rgba(0, 214, 122, 0.1);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(0, 214, 122, 0.6),
      0 0 60px rgba(0, 214, 122, 0.4),
      inset 0 0 30px rgba(0, 214, 122, 0.2);
  }
}

/* Animación de borde rotante */
@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Animación de estrellita pulsante */
@keyframes starPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3) rotate(180deg);
    opacity: 1;
  }
}

    .section-landing-partner h2 {
      font-size: clamp(1.9rem, 4vw, 2.4rem);
      margin-bottom: 12px;
    }

    .section-landing-partner h2::after {
      display: none;
    }

    .section-landing-partner p {
      color: #d0fbe7;
      font-size: 0.98rem;
      max-width: 650px;
      margin: 0 auto 22px;
    }

/* BOTÓN PRINCIPAL MÁGICO */
.lp-btn {
  position: relative;
  margin-top: 10px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  overflow: hidden;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #00d67a, #00ffaa);
  box-shadow: 
    0 8px 24px rgba(0, 214, 122, 0.4),
    0 0 40px rgba(0, 214, 122, 0.2);
}

/* BOTÓN PRINCIPAL MÁGICO - CON ESPECIFICIDAD ALTA */
.section-landing-partner .cta.lp-btn,
.lp-btn.btn-crear-landing {
  position: relative;
  margin-top: 10px !important;
  padding: 16px 40px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  overflow: hidden;
  transition: all 0.4s ease !important;
  background: linear-gradient(135deg, #00d67a, #00ffaa) !important;
  box-shadow: 
    0 8px 24px rgba(0, 214, 122, 0.4),
    0 0 40px rgba(0, 214, 122, 0.2) !important;
  border-radius: 50px !important;
  color: #000 !important;
  animation: none !important;
}

.section-landing-partner .cta.lp-btn::before,
.lp-btn.btn-crear-landing::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: btnShine 3s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.section-landing-partner .cta.lp-btn:hover,
.lp-btn.btn-crear-landing:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 
    0 12px 32px rgba(0, 214, 122, 0.6),
    0 0 60px rgba(0, 214, 122, 0.4) !important;
}

.section-landing-partner .cta.lp-btn:active,
.lp-btn.btn-crear-landing:active {
  transform: translateY(-2px) scale(1.01) !important;
}

@keyframes btnShine {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

    .lp-note {
      margin-top: 14px;
      font-size: 0.82rem;
      color: #9aa9a0;
    }

    @media (max-width: 768px) {
      .section-landing-partner .lp-inner {
        padding: 30px 18px 26px;
      }
    }

    /* GRID CARDS */
    .grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
      }
    }

    .card {
      background: var(--card);
      padding: 24px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.4s ease;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 16px;
    }

    .card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: var(--primary);
    }

    .card p {
      font-size: 0.95rem;
      color: #ddd;
    }

    ol {
      max-width: 100%;
      padding: 0 20px;
      counter-reset: step;
      list-style: none;
    }

    ol li {
      font-size: 1.05rem;
      margin-bottom: 20px;
      padding-left: 50px;
      position: relative;
      counter-increment: step;
    }

    ol li::before {
      content: counter(step);
      position: absolute;
      left: 0;
      top: 0;
      background: var(--primary);
      color: #000;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1rem;
    }

    .testimonial {
      background: var(--card);
      padding: 24px;
      border-radius: 16px;
      margin: 16px auto;
      max-width: 90%;
      font-style: italic;
      position: relative;
      font-size: 0.95rem;
    }

    .testimonial::before {
      content: '\201C';
      font-size: 4rem;
      color: var(--primary);
      position: absolute;
      top: -10px;
      left: 16px;
      opacity: 0.3;
    }

    .testimonial p {
      margin-bottom: 12px;
      color: #ddd;
    }

    .testimonial strong {
      color: var(--primary);
      font-weight: 600;
    }

    .faq {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq details {
      background: var(--card);
      margin: 12px 0;
      padding: 16px;
      border-radius: 12px;
    }

    .faq summary {
      font-weight: 600;
      font-size: 1rem;
      color: var(--primary);
      cursor: pointer;
    }

    .video-section {
      padding: 80px 20px;
      text-align: center;
      background: #111;
    }

    .video-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: 0 auto 30px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .video-container::before {
      content: '';
      display: block;
      padding-top: 56.25%;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .video-section h3 {
      font-size: 1.6rem;
      margin-bottom: 16px;
      color: var(--primary);
    }

    .video-section p {
      max-width: 90%;
      margin: 0 auto 24px;
      font-size: 1rem;
      color: #ddd;
    }

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00d67a, #00ff8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}


    /* CTA FINAL */
    .cta-final {
      position: relative;
      padding: 90px 20px 110px;
      background:
        radial-gradient(circle at top left, rgba(0, 214, 122, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 214, 122, 0.12), transparent 55%),
        #050505;
      overflow: hidden;
    }

    .cta-final::before,
    .cta-final::after {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 214, 122, 0.18), transparent 60%);
      filter: blur(8px);
      opacity: 0.8;
      pointer-events: none;
      animation: cta-orbit 18s linear infinite;
    }

    .cta-final::before {
      top: -120px;
      left: -80px;
    }

    .cta-final::after {
      bottom: -160px;
      right: -80px;
      animation-direction: reverse;
    }

    @keyframes cta-orbit {
      0% {
        transform: translate3d(0, 0, 0);
      }

      50% {
        transform: translate3d(40px, -20px, 0);
      }

      100% {
        transform: translate3d(0, 0, 0);
      }
    }

    .cta-final-inner {
      position: relative;
      max-width: 960px;
      margin: 0 auto;
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 65%),
        #090909;
      border-radius: 28px;
      border: 1px solid rgba(0, 214, 122, 0.35);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75);
      padding: 32px 26px 26px;
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 32px;
    }

    .cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(0, 214, 122, 0.14);
      border: 1px solid rgba(0, 214, 122, 0.4);
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #9ffad2;
      margin-bottom: 10px;
    }

    .cta-pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #00d67a;
      box-shadow: 0 0 10px rgba(0, 214, 122, 0.9);
    }

    .cta-copy h2 {
      font-size: clamp(2rem, 4vw, 2.6rem);
      margin-bottom: 12px;
    }

    .cta-sub {
      font-size: 0.98rem;
      color: #ccc;
      max-width: 480px;
      margin-bottom: 22px;
    }

    .cta-main {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding-inline: 34px;
      font-size: 1.05rem;
      border-radius: 999px;
      cursor: pointer;
      background: linear-gradient(135deg, #00d67a, #4df1a6);
      color: #000;
      box-shadow: 0 10px 30px rgba(0, 214, 122, 0.5);
      animation: cta-pulse 2.8s ease-in-out infinite;
    }

    .cta-main-icon {
      font-size: 1.2rem;
      transition: transform 0.25s ease;
    }

    .cta-main:hover .cta-main-icon {
      transform: translateX(4px);
    }

    @keyframes cta-pulse {

      0%,
      100% {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 214, 122, 0.45);
      }

      50% {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(0, 214, 122, 0.7);
      }
    }

    .cta-bullets {
      list-style: none;
      margin-top: 20px;
      padding: 0;
      display: grid;
      gap: 6px;
      font-size: 0.9rem;
      color: #a8ffdd;
    }

        .cta-bullets li::before {
        content: '\2713';
        color: #00d67a;
        margin-right: 6px;
        }

    .cta-contact {
      background: radial-gradient(circle at top, rgba(0, 214, 122, 0.18), transparent 70%),
        #050505;
      border-radius: 20px;
      padding: 18px 18px 16px;
      border: 1px solid rgba(0, 214, 122, 0.28);
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.65);
      font-size: 0.9rem;
    }

    .cta-contact-title {
      color: #e6fff6;
      margin-bottom: 8px;
    }

    .cta-contact-user a {
      color: #00d67a;
      text-decoration: none;
    }

    .cta-contact-user a:hover {
      text-decoration: underline;
    }

    .cta-whatsapp {
      margin-top: 10px;
      width: 100%;
      background: #25d366;
      color: #000;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding-inline: 18px;
      border-radius: 999px;
      font-size: 0.92rem;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
    }

    .cta-whatsapp-icon {
      font-size: 1.1rem;
    }

    .cta-whatsapp-note {
      margin-top: 6px;
      font-size: 0.78rem;
      color: #999;
    }

    @media (max-width: 768px) {
      .cta-final-inner {
        grid-template-columns: 1fr;
        padding: 26px 20px 22px;
        gap: 22px;
      }

      .cta-copy h2 {
        font-size: 1.7rem;
      }

      .cta-bullets {
        grid-template-columns: 1fr;
      }
    }

    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: var(--primary);
      color: #000;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 100;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    footer {
      text-align: center;
      padding: 40px 20px;
      background: #000;
      color: #666;
      font-size: 0.85rem;
    }

    footer a {
      color: #999;
      margin: 0 8px;
      display: inline-block;
    }

    .nav-lang select {
      background: #111;
      color: #fff;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 4px 10px;
      font-size: 0.85rem;
      cursor: pointer;
      font-family: "Segoe UI Emoji", "Apple Color Emoji",
        "Noto Color Emoji", "Poppins", sans-serif;
    }

    .lang-switcher {
      position: relative;
    }

    .lang-current {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: #000;
      color: #fff;
      font-size: 0.85rem;
      cursor: pointer;
    }

    .lang-caret {
      font-size: 0.7rem;
      opacity: 0.7;
    }

    .lang-list {
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      background: #111;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      list-style: none;
      margin: 0;
      padding: 6px 0;
      min-width: 120px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1200;
    }

.lang-switcher.open .lang-list {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

    .lang-list li {
      padding: 6px 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      cursor: pointer;
    }

    .lang-list li:hover {
      background: #1b1b1b;
      color: var(--primary);
    }

    .flag {
      display: inline-block;
      width: 20px;
      height: 14px;
      border-radius: 2px;
      background-size: cover;
      background-position: center;
    }

    .flag[data-flag="es"] {
      background-image: url("https://flagcdn.com/w20/es.png");
    }

    .flag[data-flag="en"] {
      background-image: url("https://flagcdn.com/w20/gb.png");
    }

    .flag[data-flag="pt"] {
      background-image: url("https://flagcdn.com/w20/pt.png");
    }

    .flag[data-flag="fr"] {
      background-image: url("https://flagcdn.com/w20/fr.png");
    }

    .flag[data-flag="it"] {
      background-image: url("https://flagcdn.com/w20/it.png");
    }

    /* NUEVOS IDIOMAS */
    .flag[data-flag="de"] {
      background-image: url("https://flagcdn.com/w20/de.png");
    }

    /* Alemania */
    .flag[data-flag="ru"] {
      background-image: url("https://flagcdn.com/w20/ru.png");
    }

    /* Rusia */
    .flag[data-flag="zh"] {
      background-image: url("https://flagcdn.com/w20/cn.png");
    }

    /* China â€“ lo mapeamos a zh */
    .flag[data-flag="ja"] {
      background-image: url("https://flagcdn.com/w20/jp.png");
    }

    .flag[data-flag="hi"] {
      background-image: url("https://flagcdn.com/w20/in.png");
    }

    .flag[data-flag="el"] {
      background-image: url("https://flagcdn.com/w20/gr.png");
    }

    .flag[data-flag="ro"] {
      background-image: url("https://flagcdn.com/w20/ro.png");
    }

    .flag[data-flag="th"] {
      background-image: url("https://flagcdn.com/w20/th.png");
    }

    .flag[data-flag="vi"] {
      background-image: url("https://flagcdn.com/w20/vn.png");
    }


    @media (max-width: 768px) {
      .nav-lang {
        width: 100%;
      }

      .lang-current {
        width: 100%;
        justify-content: space-between;
      }

      .lang-list {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 6px;
      }
    }

    /* REUNIONES EN DIRECTO */
    .live-section {
      background: radial-gradient(circle at top left, rgba(0, 214, 122, 0.15), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 214, 122, 0.12), transparent 55%),
        #111;
      border-radius: 24px;
      border: 1px solid rgba(0, 214, 122, 0.25);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
      max-width: 1100px;
      margin: 0 auto;
    }

    .live-header {
      text-align: center;
      margin-bottom: 30px;
    }

    /* Pill de estado de las reuniones */
    .live-tag {
      display: none;
      align-items: center;
      justify-content: center;
      padding: 4px 14px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 12px;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

/* ========== VISOR PDF PREMIUM ========== */
.section-dark {
    background: radial-gradient(circle at top, #1a1a1a 0%, #0a0a0a 50%, #000 100%);
    padding: 80px 0;
}

.pdf-viewer-container {
    max-width: 1000px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pdf-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 12px;
}

.pdf-controls-left,
.pdf-controls-center,
.pdf-controls-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e5e5;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdf-btn:hover {
    background: rgba(0, 214, 122, 0.15);
    border-color: #00d67a;
    color: #00d67a;
    transform: translateY(-1px);
}

.pdf-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.pdf-btn-primary {
    background: linear-gradient(135deg, #00d67a, #00a86b);
    border-color: #00d67a;
    color: #000;
    font-weight: 600;
}

.pdf-btn-primary:hover {
    background: linear-gradient(135deg, #00ff8f, #00d67a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 214, 122, 0.4);
}

.pdf-page-info,
#pdf-zoom-level {
    font-size: 0.9rem;
    color: #e5e5e5;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

.pdf-viewport {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 20px;
    overflow: auto;
}

#pdf-canvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.pdf-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.95);
    gap: 16px;
}

.pdf-loading.hidden {
    display: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 214, 122, 0.1);
    border-top-color: #00d67a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .pdf-controls {
        flex-direction: column;
    }
    
    .pdf-viewport {
        min-height: 400px;
        padding: 10px;
    }
}

    /* EN DIRECTO */
    .live-tag.live-on {
      background: rgba(255, 0, 0, 0.18);
      color: #ff6b6b;
    }

    /* Fuera de horario */
    .live-tag.live-off {
      background: rgba(255, 255, 255, 0.06);
      color: #dddddd;
    }

    .live-header h2 {
      font-size: clamp(1.9rem, 5vw, 2.4rem);
      margin-bottom: 8px;
    }

    .live-header h2::after {
      display: none;
    }

    .live-header p {
      max-width: 640px;
      margin: 0 auto;
      color: #ddd;
      font-size: 0.98rem;
    }

    .live-days {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin: 20px 0 30px;
    }

    .day-pill,
    .topic-pill {
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.85rem;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(0, 0, 0, 0.35);
      color: #ccc;
    }

    .day-pill {
      border-color: rgba(0, 214, 122, 0.5);
      color: var(--primary);
      font-weight: 600;
    }

    .meeting-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-bottom: 30px;
    }

    .meeting-card {
      background: rgba(0, 0, 0, 0.45);
      border-radius: 16px;
      padding: 18px 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      text-align: center;
    }

    .meeting-card h3 {
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .meeting-card .hour {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .meeting-card .tz {
      font-size: 0.85rem;
      color: #aaa;
    }

    .zoom-block {
      text-align: center;
      margin-top: 10px;
    }

    .zoom-btn {
      margin-bottom: 16px;
    }

    .zoom-details {
      font-size: 0.9rem;
      color: #ccc;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 14px;
      padding: 14px 16px;
      display: inline-block;
      text-align: left;
      border: 1px dashed rgba(255, 255, 255, 0.25);
    }

    .zoom-details p {
      margin: 4px 0;
    }

    .flag-country {
      display: inline-block;
      width: 22px;
      height: 16px;
      border-radius: 2px;
      background-size: cover;
      background-position: center;
      margin-right: 6px;
      vertical-align: middle;
    }

    .flag-es {
      background-image: url("https://flagcdn.com/w20/es.png");
    }

    .flag-co {
      background-image: url("https://flagcdn.com/w20/co.png");
    }

    .flag-ve {
      background-image: url("https://flagcdn.com/w20/ve.png");
    }

    @media (max-width: 900px) {
      .meeting-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-lang select {
        font-size: 1rem;
      }
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 30px 16px 60px;
        min-height: 70vh;
      }

      .section,
      .video-section {
        padding: 60px 16px;
      }

      .card img {
        height: 140px;
      }

      .testimonial {
        padding: 20px;
        font-size: 0.9rem;
      }

      .video-section h3 {
        font-size: 1.4rem;
      }
    }

    @media (min-width: 769px) {
      .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
      }
    }

    /* CONTENEDOR TARJETA VERDE AFILIADOS  */
    .enaria-affiliados-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 24px;
      padding: 48px 40px 56px;
    }

    .enaria-affiliados-card p {
      margin: 0;
      max-width: 640px;
    }

    .enaria-affiliados-card .btn-crear-landing {
      margin-top: 8px;
      position: static;
      transform: none;
    }

    /* ============================================
   POPUP DE COOKIES
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(0, 214, 122, 0.3);
  padding: 20px;
  z-index: 10000;
  animation: slideUp 0.4s ease-out;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.cookie-text p {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary, #00d67a);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.cookie-text a:hover {
  color: #00ff8f;
  border-bottom-color: #00ff8f;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00d67a 0%, #00b366 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 214, 122, 0.3);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #00ff8f 0%, #00d67a 100%);
  box-shadow: 0 6px 16px rgba(0, 214, 122, 0.4);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #aaa;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 16px;
  }

  .cookie-content {
    gap: 16px;
  }

  .cookie-icon {
    font-size: 2rem;
  }

  .cookie-text h3 {
    font-size: 1rem;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    padding: 12px 16px;
  }
}


/* ========================================
   SECCIÓN VIDEO TUTORIALS SLIDER
   ======================================== */
.section-video-tutorials {
  position: relative;
  overflow: hidden;
}

.video-slider-container {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Tabs de navegación */
.video-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.video-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.video-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #00ff8f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.video-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 214, 122, 0.3);
  transform: translateY(-2px);
}

.video-tab.active {
  background: linear-gradient(135deg, rgba(0, 214, 122, 0.15), rgba(0, 255, 143, 0.1));
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 214, 122, 0.25);
}

.video-tab.active::before {
  transform: scaleX(1);
}

.tab-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  transition: all 0.3s ease;
}

.video-tab.active .tab-number {
  background: linear-gradient(135deg, var(--primary), #00ff8f);
  color: #000;
}

.tab-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ccc;
  text-align: center;
  transition: color 0.3s ease;
}

.video-tab.active .tab-title {
  color: var(--primary);
}

/* Contenido del video */
.video-content-wrapper {
  position: relative;
  min-height: 500px;
}

.video-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.video-info {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 214, 122, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 214, 122, 0.2);
}

.video-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.video-info p {
  color: #ccc;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.video-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 214, 122, 0.2);
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Indicadores */
.video-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.indicator {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.indicator.active {
  background: linear-gradient(90deg, var(--primary), #00ff8f);
  width: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .video-tabs {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .video-tab {
    flex-direction: row;
    padding: 1rem;
    text-align: left;
  }
  
  .tab-number {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .tab-title {
    text-align: left;
    font-size: 0.9rem;
  }
  
  .video-slider-container {
    padding: 1.5rem 1rem;
  }
  
  .video-content-wrapper {
    min-height: 400px;
  }
  
  .video-info {
    padding: 1rem;
  }
  
  .video-info h3 {
    font-size: 1.2rem;
  }
  
  .video-info p {
    font-size: 0.9rem;
  }
}



/* ==================== SECCIÓN ALTERNATIVA REUNIONES ==================== */
.live-section-alt {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  padding: 60px 20px;
}

/* Video de fondo */
.live-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: none; /* Oculto en móvil por defecto */
}

.live-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 214, 122, 0.3));
  z-index: 1;
}

/* Contenido sobre el video */
.live-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Horarios a la izquierda (solo desktop) */
.meeting-grid-left {
  display: none; /* Oculto en móvil */
}

/* Botón y detalles centrados */
.zoom-block-center {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

.zoom-block-center .live-days {
  margin-bottom: 30px;
}

.zoom-block-center .zoom-btn {
  margin: 20px 0;
}

.zoom-block-center .zoom-details {
  margin-top: 30px;
  text-align: left;
  background: rgba(0, 214, 122, 0.1);
  padding: 20px;
  border-radius: 12px;
}

/* ==================== SECCIÓN ALTERNATIVA REUNIONES ==================== */
.live-section-alt {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important; /* Forzar transparencia */
}

/* Video de fondo ocupando todo */
.live-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none; /* El video no debe interceptar clics */
}

.live-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay oscuro opcional */
.live-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Un poco más oscuro para contraste */
  z-index: 1;
  pointer-events: none;
}

/* Botón centrado sobre el video */
.live-content-simple {
  position: relative;
  z-index: 10; /* Muy alto para estar encima de todo */
  text-align: center;
}

.zoom-btn-hero {
  font-size: 1.3rem;
  padding: 20px 50px;
  box-shadow: 0 10px 40px rgba(0, 214, 122, 0.5);
  animation: pulse 2s infinite;
  position: relative;
  z-index: 10;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(0, 214, 122, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 60px rgba(0, 214, 122, 0.8);
  }
}

/* Responsive: en desktop más grande */
@media (min-width: 992px) {
  .live-section-alt {
    min-height: 700px;
  }
  
  .zoom-btn-hero {
    font-size: 1.5rem;
    padding: 25px 60px;
  }
}

/* Video de reuniones - Posicionamiento responsive */
#reuniones-alt video {
  object-position: center 55%; /* Desktop: centrado */
}

/* En móvil: mostrar más de la derecha */
@media (max-width: 768px) {
  #reuniones-alt video {
    object-position: 74% 55%; /* Móvil: recorta izquierda, muestra derecha */
  }
}

/* ============================================
   MODAL DE VIDEO SUPER INTERACTIVO
============================================ */

/* Botón trigger */
.video-trigger-btn {
  position: relative;
  margin-top: 2rem;
  padding: 18px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 1;
}

.video-trigger-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transition: left 0.5s ease;
  z-index: -1;
}

.video-trigger-btn:hover:before {
  left: 0;
}

.video-trigger-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 60px rgba(102, 126, 234, 0.6);
}

.video-icon {
  font-size: 1.5rem;
  animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.video-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  z-index: 10001;
  animation: modalSlideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.video-modal-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 214, 122, 0.5);
}

.video-modal-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  line-height: 1;
}

.video-modal-close:hover {
  background: #ff4757;
  border-color: #ff4757;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 71, 87, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .video-trigger-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .video-modal-content {
    width: 95%;
  }
  
  .video-modal-close {
    top: -40px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* ============================================
   SECCIÓN VIDEO SHOWCASE PARA AFILIADOS
   ============================================ */

.affiliate-video-showcase {
  margin-top: 50px;
  padding: 0;
}

.affiliate-video-header {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease;
}

.affiliate-video-spark {
  display: inline-block;
  font-size: 2rem;
  animation: pulse 2s ease infinite;
}

.affiliate-video-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #00d67a, #00ffa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 10px 0;
  line-height: 1.2;
}

.affiliate-video-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.affiliate-video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.affiliate-video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 214, 122, 0.3), transparent 70%);
  filter: blur(60px);
  opacity: 0.6;
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.affiliate-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  background: linear-gradient(135deg, rgba(0, 214, 122, 0.1), rgba(0, 255, 163, 0.05));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 214, 122, 0.3),
    0 0 0 1px rgba(0, 214, 122, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.affiliate-video-container:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 214, 122, 0.4),
    0 0 0 1px rgba(0, 214, 122, 0.4);
}

.affiliate-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.affiliate-video-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  padding: 20px;
  background: rgba(0, 214, 122, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 214, 122, 0.1);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 214, 122, 0.1);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(0, 214, 122, 0.2);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 1.3rem;
}

.stat-text {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  color: #00d67a;
}

/* Animaciones */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}

/* RESPONSIVE PARA MÓVIL */
@media (max-width: 768px) {
  .affiliate-video-showcase {
    margin-top: 30px;
    padding: 0 10px;
  }

  .affiliate-video-wrapper {
    padding: 10px;
  }

  .affiliate-video-container {
    border-radius: 15px;
    margin-top: 20px;
  }

  .affiliate-video-stats {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .stat-item {
    width: 100%;
    justify-content: center;
  }

  .affiliate-video-glow {
    filter: blur(40px);
  }
}

/* ============================================
   BOTÓN TRIGGER MODAL AFILIADOS
   ============================================ */

.affiliate-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  margin-top: 25px;
  background: linear-gradient(135deg, #00d67a, #00ffa3);
  color: #0a0f1a;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 214, 122, 0.3);
  position: relative;
  overflow: hidden;
}

.affiliate-trigger-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.affiliate-trigger-btn:hover::before {
  left: 100%;
}

.affiliate-trigger-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 214, 122, 0.5);
}

.btn-icon {
  font-size: 1.4rem;
  animation: pulse 2s ease infinite;
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.affiliate-trigger-btn:hover .btn-arrow {
  transform: translateX(5px);
}


/* ============================================
   BOTÓN TRIGGER MODAL AFILIADOS
   ============================================ */

.affiliate-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  margin-top: 25px;
  background: linear-gradient(135deg, #00d67a, #00ffa3);
  color: #0a0f1a;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 214, 122, 0.3);
  position: relative;
  overflow: hidden;
}

.affiliate-trigger-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.affiliate-trigger-btn:hover::before {
  left: 100%;
}

.affiliate-trigger-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 214, 122, 0.5);
}

.btn-icon {
  font-size: 1.4rem;
  animation: pulse 2s ease infinite;
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.affiliate-trigger-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.affiliate-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.affiliate-modal.active {
  display: flex;
}

.affiliate-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.affiliate-modal-content {
  position: relative;
  width: 80%;
  max-width: 700px;
  max-height: none;
  background: #0f1419;
  border-radius: 16px;
  padding: 18px 15px;
  z-index: 100000;
  animation: modalSlideIn 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 
              0 0 0 1px rgba(255, 255, 255, 0.05);
}

.affiliate-modal .affiliate-video-spark {
  font-size: 1rem;
}

.affiliate-modal .affiliate-video-title {
  font-size: 1.1rem;
  margin: 2px 0;
  line-height: 1.2;
}

.affiliate-modal .affiliate-video-subtitle {
  font-size: 0.8rem;
  margin: 2px 0 10px 0;
}

.affiliate-modal .affiliate-video-wrapper {
  padding: 5px;
}

.affiliate-modal .affiliate-video-stats {
  display: flex;
  justify-content: center;
  align-items: center;
}

.affiliate-modal .lp-btn {
  margin: 0;
  width: auto;
  display: inline-block;
}

.affiliate-modal .stat-item {
  padding: 5px 10px;
  font-size: 0.75rem;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.affiliate-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100001;
}

.affiliate-modal-close:hover {
  background: rgba(255, 77, 87, 0.8);
  transform: rotate(90deg);
}

/* Responsive móvil */
@media (max-width: 768px) {
  .affiliate-modal-content {
    width: 90%;
    top: 60px;
    max-height: 80vh;
    padding: 30px 10px 15px 10px;
  }
  
  .affiliate-modal .affiliate-video-spark {
    font-size: 0.95rem;
  }
  
  .affiliate-modal .affiliate-video-title {
    font-size: 0.9rem;
  }
  
  .affiliate-modal .affiliate-video-subtitle {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
  
  .affiliate-modal .affiliate-video-wrapper {
    padding: 3px;
  }
  
  .affiliate-modal .affiliate-video-stats {
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
    padding: 6px;
  }

  .affiliate-modal .stat-item {
    width: 100%;
    justify-content: center;
    font-size: 0.65rem;
    padding: 4px 8px;
  }
  
  .affiliate-trigger-btn {
    width: 100%;
    justify-content: center;
  }
  
  .affiliate-modal-close {
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
  }
}