:root {
    --primary: #1a237e;
    --secondary: #00bcd4;
    --accent: #fec61a;
    --dark: #0d1238;
    --light: #f5f7ff;
    --gradient: linear-gradient(135deg, #1a237e 0%, #0d1238 50%, #00bcd4 100%);
    --gradient-reverse: linear-gradient(135deg, #00bcd4 0%, #0d1238 50%, #1a237e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a, #06b6d4);
    color: white;
}



h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pantalla de carga */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    transform: rotate(45deg);
    margin-bottom: 20px;
    animation: loadingFloat 2s infinite ease-in-out;
}

.loading-logo i {
    transform: rotate(-45deg);
}

@keyframes loadingFloat {

    0%,
    100% {
        transform: rotate(45deg) translateY(0) scale(1);
    }

    50% {
        transform: rotate(45deg) translateY(-15px) scale(1.05);
    }
}

.loading-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
    text-align: center;
}

.loading-bar {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out forwards;
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}


nav a.active {
    color: var(--secondary) !important;
    font-weight: 600 !important;
    position: relative !important;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 1px;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}


/* Header con partículas */
header {
    background: transparent !important;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat linear infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 20%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation-duration: 12s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 2px;
    height: 2px;
    top: 80%;
    left: 40%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    width: 3px;
    height: 3px;
    top: 30%;
    left: 60%;
    animation-duration: 25s;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 70%;
    animation-duration: 14s;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    top: 50%;
    left: 80%;
    animation-duration: 22s;
    animation-delay: 2s;
}

.particle:nth-child(8) {
    width: 2px;
    height: 2px;
    top: 90%;
    left: 90%;
    animation-duration: 16s;
    animation-delay: 6s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100px) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s ease 0.5s forwards;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.logo-text h1 {
    font-size: 24px;
    /* Mantén el tamaño que ya tenías */
    background: linear-gradient(45deg,
            #ffffff 0%,
            var(--secondary) 30%,
            #ffffff 50%,
            var(--accent) 70%,
            #ffffff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shineText 8s linear infinite;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    line-height: 1;
    /* Ajusta según necesites */
}

/* Opcional: También puedes añadir el efecto de resplandor */
.logo-text h1::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            var(--secondary) 0%,
            var(--accent) 50%,
            var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(10px);
    opacity: 0.3;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}



.logo-text p {
    font-size: 12px;
    color: #aaa;
    font-style: italic;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s ease 0.7s forwards;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s ease 0.7s forwards;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--gradient);
    isolation: isolate;
}

/* Fondo animado con gradiente dinámico */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 87, 34, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(26, 35, 126, 0.3) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite alternate;
    z-index: -1;
}

@keyframes gradientShift {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}


/* Partículas en el hero */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    pointer-events: none;
}

/* Efecto de estrellas parpadeantes */
@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Olas animadas en la parte inferior */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%230d1238'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    animation: waveMove 15s linear infinite;
}

.wave:nth-child(2) {
    animation-delay: 0.5s;
    opacity: 0.7;
    background-position-y: 10px;
}

.wave:nth-child(3) {
    animation-delay: 1s;
    opacity: 0.5;
    background-position-y: 20px;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   SECCION DEL HERO
   ============================================ */
/* Contenido del hero con efectos */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 10px;
    margin-top: 15px;
    /* Agrega esto para bajar todo el contenido */
}

/* Logo en el hero con efectos */
.hero-content img {
    width: 380px;
    margin-bottom: 30px;
    margin-top: 10px;
    /* Agrega esto para bajarlo */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: floatLogo 6s ease-in-out infinite;
    transition: all 0.5s ease;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
        filter: drop-shadow(0 20px 30px rgba(0, 188, 212, 0.4));
    }
}

.hero-content img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 25px rgba(255, 196, 34, 0.5));
    animation-play-state: paused;
}

/* Título con efecto de texto brillante */
.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg,
            #ffffff 0%,
            var(--secondary) 30%,
            #ffffff 50%,
            var(--accent) 70%,
            #ffffff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shineText 8s linear infinite, fadeInUp 1s ease 1.2s both;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

@keyframes shineText {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

/* Efecto de resplandor detrás del título */
.hero-content h2::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            var(--secondary) 0%,
            var(--accent) 50%,
            var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        filter: blur(10px);
    }

    50% {
        opacity: 0.7;
        filter: blur(20px);
    }
}

/* Texto descriptivo con efecto */
.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 1.4s both;
    line-height: 1.6;
    position: relative;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.5s ease;
}

.hero-content p:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.2);
    border-color: rgba(0, 188, 212, 0.3);
}

/* Botón CTA mejorado */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease 1.6s both, buttonGlow 2s ease-in-out infinite alternate;
    box-shadow:
        0 15px 35px rgba(255, 87, 34, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

@keyframes buttonGlow {
    0% {
        box-shadow:
            0 15px 35px rgba(255, 87, 34, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow:
            0 20px 45px rgba(0, 188, 212, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            0 0 30px rgba(0, 188, 212, 0.3);
    }
}

/* Efecto de onda al hacer hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Icono en el botón */
.cta-button i {
    font-size: 1.4rem;
    animation: arrowBounce 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.cta-button:hover i {
    transform: translateX(10px) rotate(-10deg);
    animation: none;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    box-shadow:
        0 25px 50px rgba(0, 188, 212, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 87, 34, 0.4);
    letter-spacing: 1px;
}

/* Efecto de texto flotante */
.hero-floating-text {
    position: absolute;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    animation: floatUp 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Animaciones faltantes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Deshabilitar animaciones de carga */
.loading-screen {
    display: none !important;
}

/* header, .hero, section, footer {
    opacity: 1 !important;
    animation: none !important;
}

.benefit-card, .device-item, .plan-card, .download-category,
.contact-info, .faq-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
} */






/* ============================================
   SECCION DE BENEFICIOS
   ============================================ */
.benefits-section {
    padding: 80px 0;
    background-color: rgba(13, 18, 56, 0.7);
    opacity: 0;
    animation: fadeIn 1s ease 1.8s forwards;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 188, 212, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animated {
    animation: benefitFloat 8s infinite ease-in-out, fadeInUp 0.8s ease forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.2s, 2s;
}

.benefit-card:nth-child(2) {
    animation-delay: 1s, 2.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 2s, 2.4s;
}

.benefit-card:nth-child(4) {
    animation-delay: 3s, 2.6s;
}

@keyframes benefitFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.25);
    border-color: var(--secondary);
}

.benefit-icon {
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--secondary);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
}

.benefit-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
  SECCION DE CATALOGO
   ============================================ */

.odisseo-world {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(26, 35, 126, 0.8), rgba(13, 18, 56, 0.95));
    position: relative;
    overflow: hidden;
}

/* Efectos de fondo */
.odisseo-world::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSphere 20s infinite alternate;
}

.odisseo-world::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSphere 15s infinite alternate-reverse;
}

@keyframes floatSphere {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

/* Header */
.world-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.world-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.3);
}

.world-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.world-header p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid principal */
.world-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Tarjetas */
.world-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.world-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 30px 50px rgba(0, 188, 212, 0.2);
}

/* Tarjeta especial para deportes (ocupa 2 columnas) */
.card-sports {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.4), rgba(0, 188, 212, 0.2));
}

.card-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-pattern {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 10px, transparent 10px, transparent 20px);
    transform: rotate(10deg);
}

/* Iconos */
.card-icon {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.world-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.world-card h3 span {
    color: var(--secondary);
    font-weight: 300;
    display: block;
    font-size: 1.2rem;
}

/* Estadísticas para deportes */
.card-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

/* Ligas */
.card-leagues {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.league-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.league-tag:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.05);
}

.league-tag.more {
    background: rgba(255, 87, 34, 0.2);
    border-color: var(--accent);
}

/* Características para entretenimiento */
.card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.feature i {
    color: var(--secondary);
    font-size: 1rem;
}

/* Indicador en vivo */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Canales */
.channels-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.channel {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #ddd;
}

.channel-count {
    color: var(--secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Cultura items */
.culture-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.culture-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.culture-item i {
    color: var(--accent);
}

/* Infantil */
.kids-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.kid-badge {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.kid-friendly {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    margin-top: 15px;
}

/* Adultos */
.card-adult {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(0, 0, 0, 0.3));
    border-color: rgba(255, 87, 34, 0.3);
}

.adult-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.adult-text {
    color: #aaa;
    font-size: 0.9rem;
    margin: 15px 0;
}

.adult-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.adult-feature {
    background: rgba(255, 87, 34, 0.2);
    border: 1px solid rgba(255, 87, 34, 0.3);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Barra de estadísticas */
.world-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 30px 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.world-stats .stat-item {
    text-align: center;
}

.world-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    line-height: 1;
}

.world-stats .stat-label {
    color: #aaa;
    font-size: 0.9rem;
}



/* ============================================
   SECCION DE DISPOSITIVOS COMPATIBLES
   ============================================ */
.devices-section {
    padding: 80px 0;
    background-color: rgba(13, 18, 56, 0.9);
    opacity: 0;
    animation: fadeIn 1s ease 2.8s forwards;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.device-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.device-item.animated {
    animation: deviceFloat 6s infinite ease-in-out, fadeInUp 0.8s ease forwards;
}

.device-item:nth-child(1) {
    animation-delay: 0s, 3s;
}

.device-item:nth-child(2) {
    animation-delay: 0.5s, 3.1s;
}

.device-item:nth-child(3) {
    animation-delay: 1s, 3.2s;
}

.device-item:nth-child(4) {
    animation-delay: 1.5s, 3.3s;
}

.device-item:nth-child(5) {
    animation-delay: 2s, 3.4s;
}

.device-item:nth-child(6) {
    animation-delay: 2.5s, 3.5s;
}

@keyframes deviceFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }

    75% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

.device-item:hover {
    transform: translateY(-12px) scale(1.03) rotate(2deg);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.25);
}

.device-item:hover .device-icon {
    transform: scale(1.1) rotate(8deg);
}

.device-icon {
    font-size: 45px;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: all 0.5s ease;
    display: inline-block;
}

.device-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.device-item p {
    color: #ccc;
    font-size: 0.9rem;
}

/* ============================================
   SECCION DE PLANES
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: #ccc;
    margin-top: 15px;
    font-size: 1rem;
}

.currency-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.currency-label {
    font-weight: 600;
    color: var(--light);
    font-size: 1.1rem;
}

.currency-buttons {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50px;
}

.currency-btn {
    background: transparent;
    border: none;
    color: var(--light);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.currency-btn.active {
    background: var(--secondary);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.currency-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}


.plans-section {
    padding: 80px 0;
    background-color: rgba(13, 18, 56, 0.7);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    perspective: 1000px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    animation: cardFloat 6s infinite ease-in-out;
    display: flex;
    flex-direction: column;
    height: auto;
}

.plan-card:nth-child(2) {
    animation-delay: 2s;
}

.plan-card:nth-child(3) {
    animation-delay: 4s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0) rotateY(0);
    }

    50% {
        transform: translateY(-15px) rotateY(5deg);
    }
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.25);
}

.plan-card.featured {
    background: linear-gradient(145deg, rgba(26, 35, 126, 0.8), rgba(0, 188, 212, 0.8));
    transform: scale(1.03);
}

.plan-card.featured:hover {
    transform: translateY(-15px) scale(1.08);
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 6px 35px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 12px;
}

.plan-icon {
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: white;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-price span {
    font-size: 1.1rem;
    color: #aaa;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
    font-size: 0.9rem;
    text-align: left;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.plan-features li i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 0.9rem;
    min-width: 20px;
}

.plan-button {
    background: linear-gradient(to right, var(--secondary), var(--accent));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, var(--accent), var(--secondary));
}

.price-amount {
    font-size: 2.5rem;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #aaa;
    margin-top: 5px;
    font-weight: 400;
}


.plan-footer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-footer small {
    color: #aaa;
    font-size: 0.8rem;
}

.payment-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.payment-note p {
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-note i {
    color: var(--secondary);
}


.payment-modal {
    max-width: 550px;
}

.payment-modal .modal-header p {
    color: #aaa;
    margin-top: 8px;
    font-size: 0.95rem;
}

.selected-plan-price {
    background: linear-gradient(145deg, rgba(0, 188, 212, 0.2), rgba(26, 35, 126, 0.2));
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.price-label {
    font-size: 1rem;
    color: #ddd;
}

.selected-plan-price .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--secondary);
    transform: translateX(5px);
}

.payment-option.active {
    border-color: var(--secondary);
    background: rgba(0, 188, 212, 0.1);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.2);
}

.payment-option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    position: relative;
}

.payment-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.payment-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.payment-info {
    flex: 1;
}

.payment-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: white;
}

.payment-info p {
    font-size: 0.85rem;
    color: #aaa;
}

.payment-option-header > i {
    color: #666;
    transition: all 0.3s ease;
}

.payment-option:hover .payment-option-header > i {
    color: var(--secondary);
    transform: translateX(5px);
}

.payment-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid transparent;
}

.payment-option.active .payment-details {
    max-height: 400px;
    border-top-color: rgba(0, 188, 212, 0.2);
}

.payment-details-content {
    padding: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-option.active .payment-details-content {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para los botones de pago */
.payment-redirect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin: 15px auto 0;
    transition: all 0.3s ease;
    width: auto;
    min-width: 220px;
    max-width: 100%;
    border: none;
    cursor: pointer;
}

.payment-redirect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
}

.payment-redirect-btn i {
    font-size: 1.2rem;
}

/* Estilos para Clip */
.card-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    font-size: 40px;
    color: #ddd;
    width: 100%;
}

.card-icons i {
    transition: all 0.3s ease;
}

.card-icons i:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

/* Estilos para transferencia */
.bank-details {
    text-align: left;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.bank-details p {
    margin-bottom: 8px;
    color: #ddd;
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
}

.bank-details p strong {
    min-width: 100px;
    color: var(--secondary);
}

.copy-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
    flex-wrap: wrap;
}

.copy-btn {
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 160px;
}

.copy-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.copy-btn.large {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.copy-btn i {
    font-size: 1.1rem;
}

/* Nota de seguridad */
.payment-security-note {
    margin-top: 25px;
    padding: 15px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
    flex-wrap: wrap;
    text-align: center;
}

.payment-security-note i {
    color: var(--secondary);
    font-size: 1.1rem;
}


/* ============================================
   SECCION DE DESCARGAS
   ============================================ */
.download-section {
    padding: 80px 0;
    background: var(--gradient-reverse);
}

.download-container {
    max-width: 900px;
    margin: 0 auto;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.download-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: downloadFloat 5s infinite ease-in-out;
}

.download-category:nth-child(2) {
    animation-delay: 1s;
}

.download-category:nth-child(3) {
    animation-delay: 2s;
}

@keyframes downloadFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.download-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.download-category h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-category h3 i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.download-links {
    list-style: none;
}

.download-links li {
    margin-bottom: 12px;
}

.download-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.download-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.download-links a i {
    color: var(--secondary);
    font-size: 1.1rem;
}



/* ============================================
   MODALES DE INSTRUCCIONES
   ============================================ */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: linear-gradient(145deg, #1a1f3a, #0d1238);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 188, 212, 0.2),
        0 0 30px rgba(0, 188, 212, 0.2);
    animation: slideInUp 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal::-webkit-scrollbar {
    width: 8px;
}

.modal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    background: rgba(255, 87, 34, 0.3);
    transform: rotate(90deg);
    border-color: var(--accent);
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 188, 212, 0.1);
}

.modal-header h3 {
    font-size: 1.6rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h3 i {
    color: var(--secondary);
    font-size: 2rem;
}

.modal-body {
    padding: 30px;
}

.instructions-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.instructions-step:last-child {
    margin-bottom: 0;
}

.instructions-step::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 45px;
    bottom: -25px;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
}

.instructions-step:last-child::before {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.step-note {
    background: rgba(0, 188, 212, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 15px;
    border-radius: 0 10px 10px 0;
    margin-top: 10px;
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
}

.url-highlight {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 87, 34, 0.3);
    margin-left: 8px;
}

.tutorial-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tutorial-section h4 {
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tutorial-section h4 i {
    color: var(--secondary);
}

.tutorial-section p {
    color: #ccc;
    margin-bottom: 15px;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-thumbnail:hover .play-button {
    background: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer p {
    color: #ccc;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.support-link i {
    font-size: 1.2rem;
}

/* Animaciones */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   SECCION DE CONTACTO
   ============================================ */
.contact-section {
    padding: 80px 0;
    background-color: rgba(13, 18, 56, 0.9);
    opacity: 0;
    animation: fadeIn 1s ease 5.6s forwards;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 25px;
    border: 1px solid rgba(0, 188, 212, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.contact-info.animated {
    animation: fadeInUp 0.8s ease 6s forwards;
}

.contact-info:nth-child(2) {
    animation-delay: 6.2s;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

.contact-item {
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
}

.contact-item i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    color: var(--secondary);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.contact-item p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.hours-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.hours-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.hours-item p {
    font-size: 0.9rem;
}

.demo-cta {
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
}

.demo-cta h4 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.demo-cta p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ============================================
   SECCION DE FAQ
   ============================================ */
.faq-section {
    background-color: rgba(13, 18, 56, 0.7);
    padding: 80px 0;
    opacity: 0;
    animation: fadeIn 1s ease 6.4s forwards;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.animated {
    animation: fadeInUp 0.8s ease 6.8s forwards;
}

.faq-item:nth-child(2) {
    animation-delay: 7s;
}

.faq-item:nth-child(3) {
    animation-delay: 7.2s;
}

.faq-question {
    padding: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 18px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ============================================
   SECCION DE FOOTHER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #0a0e2a 0%, #020414 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 188, 212, 0.2);
}

/* Efecto de fondo */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--accent), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Top footer grid */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Columnas */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 2px;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 120px;
    height: auto;
}

.footer-logo-text h3 {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.footer-logo-text p {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.2);
    color: #ddd;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge i {
    color: var(--secondary);
    font-size: 0.7rem;
}

/* Enlaces rápidos */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Horarios */
.schedule-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    margin-bottom: 5px;
}

.schedule-day i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.schedule-time {
    color: #aaa;
    font-size: 0.9rem;
    padding-left: 25px;
}

/* Contacto teléfono */
.contact-phone {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(255, 87, 34, 0.1));
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-phone i {
    font-size: 24px;
    color: var(--secondary);
}

.contact-phone div {
    display: flex;
    flex-direction: column;
}

.contact-phone span {
    font-size: 0.8rem;
    color: #aaa;
}

.contact-phone strong {
    color: white;
    font-size: 1.1rem;
}

/* Redes sociales */
.social-text {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.social-link:hover::before {
    transform: scale(2);
    opacity: 0;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Colores específicos para cada red */
.social-link.tiktok {
    background: #000000;
    color: #ffffff;
    border: 1px solid #333;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
    color: white;
}

.social-link.youtube {
    background: #ff0000;
    color: white;
}

/* Contacto footer */
.footer-contact {
    margin-top: 10px;
}

.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-whatsapp,
.contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-whatsapp i {
    color: #25D366;
    font-size: 1.1rem;
}

.contact-email i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.contact-whatsapp:hover,
.contact-email:hover {
    color: white;
    transform: translateX(5px);
}

/* Apps section */
.footer-apps {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.apps-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.apps-title i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 12px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.app-btn i {
    font-size: 24px;
    color: var(--secondary);
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-text small {
    font-size: 0.7rem;
    color: #aaa;
}

.app-btn-text strong {
    color: white;
    font-size: 0.95rem;
}

.app-btn:hover {
    background: rgba(0, 188, 212, 0.1);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

/* Bottom footer */
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.9rem;
}

.copyright i {
    color: var(--secondary);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

.separator {
    color: #333;
    font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE DESIGN - BREAKPOINTS
   ============================================ */

/* Breakpoint 1024px (Desktop pequeño / Tablet horizontal) */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }

    /* Header */
    .logo-text h1 {
        font-size: 22px;
    }

    .logo-text p {
        font-size: 11px;
    }



    /* Hero */
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }

    /* Beneficios - 3 columnas */
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 15px;
    }

    .benefit-icon {
        font-size: 40px;
        height: 55px;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

     .world-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-sports {
        grid-column: span 2;
    }

    /* Dispositivos - 3 columnas (igual) */
    .devices-grid {
        gap: 20px;
    }

    .device-item {
        padding: 20px 12px;
    }

    .device-icon {
        font-size: 40px;
    }

    /* Planes - 3 columnas (igual) */
    .plans-container {
        gap: 20px;
    }

    .plan-card {
        padding: 25px 15px;
    }

    .plan-name {
        font-size: 1.6rem;
    }

    .plan-price {
        font-size: 2.2rem;
    }

    .plan-features li {
        font-size: 0.9rem;
    }

    /* Descargas - 3 columnas (igual) */
    .download-grid {
        gap: 20px;
    }

    .download-category {
        padding: 20px 15px;
    }

    .download-category h3 {
        font-size: 1.2rem;
    }

    /* Contacto */
    .contact-container {
        gap: 25px;
    }

    .contact-info {
        padding: 25px 20px;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    /* Sección Títulos */
    .section-title h2 {
        font-size: 2rem;
    }

    /*SECCION DE FOOTHER*/
     .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Breakpoint 768px (Tablet vertical) */

@media (max-width: 768px) {




    header {
        overflow: visible !important;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }



    /* Botón hamburguesa */
     .mobile-menu-btn {
        display: block;
        font-size: 28px; /* Un poco más grande */
        color: var(--secondary); /* Usamos el color secundario para que resalte */
        cursor: pointer;
        z-index: 500; /* Por encima del overlay y del header, pero por debajo del menú cuando esté activo */
        position: relative;
        transition: color 0.3s ease;
    }
    .mobile-menu-btn.active {
        color: white; /* Cambia de color cuando el menú está abierto */
    }

    /* OVERLAY */
    .menu-overlay {
        position: fixed;
        inset: 0;
       background: transparent !important;
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 9998;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* MENÚ DESDE ARRIBA */
    #navMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 50vh;
        padding-top: 100px;
        /* espacio para header */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        list-style: none;

        /* Fondo transparente usando tus colores */
        background: rgba(13, 18, 56, 0.75);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        border-bottom: 1px solid rgba(0, 188, 212, 0.2);

        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);

        z-index: 9999;
    }

    #navMenu.active {
        transform: translateY(0);
    }

    #navMenu li {
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s ease;
    }

    #navMenu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    #navMenu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    #navMenu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    #navMenu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    #navMenu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    #navMenu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    #navMenu.active li:nth-child(6) {
        transition-delay: 0.6s;
    }



    /* Links */
    #navMenu li a {
        color: var(--light);
        font-size: 1.35rem;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 1px;
        transition: 0.3s ease;
        position: relative;
    }

    #navMenu li a::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 50%;
        width: 0%;
        height: 2px;
        background: linear-gradient(to right, var(--secondary), var(--accent));
        transition: 0.3s ease;
        transform: translateX(-50%);
    }

    #navMenu li a:hover {
        color: var(--secondary);
    }

    #navMenu li a:hover::after {
        width: 100%;
    }

    /* Botón destacado */
    #navMenu li a.menu-btn {
        margin-top: 10px;
        background: linear-gradient(90deg, #00bcd4, #00e5ff);
        color: #0f2027;
        padding: 14px 42px;
        border-radius: 40px;
        font-weight: 600;
        box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
    }

    #navMenu li {
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s ease;
    }

    #navMenu.active li {
        opacity: 1;
        transform: translateY(0);
    }


    /* Hero */
    .hero {
        min-height: 500px;
        padding-top: 80px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 15px;
        margin: 0 auto 30px;
    }

    .hero-content img {
        width: 300px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .hero-waves {
        display: none;
    }

    .hero-floating-text {
        display: none;
    }


    .world-grid {
        grid-template-columns: 1fr;
    }
    
    .card-sports {
        grid-column: span 1;
    }
    
    .world-header h2 {
        font-size: 2rem;
    }
    
    .world-stats {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 30px;
        padding: 20px;
    }
    
    .world-card h3 {
        font-size: 1.5rem;
    }
    
    .card-features {
        grid-template-columns: 1fr;
    }

    /* Beneficios - 2 columnas */
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .benefit-card {
        padding: 20px 12px;
        border-radius: 10px;
    }

    .benefit-card.animated {
        animation: none;
        animation: fadeInUp 0.8s ease forwards;
    }

    .benefit-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
    }

    .benefit-icon {
        font-size: 35px;
        height: 45px;
        margin-bottom: 10px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Dispositivos - 2 columnas */
    .devices-section {
        padding: 60px 0;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .device-item {
        padding: 18px 10px;
    }

    .device-item.animated {
        animation: none;
        animation: fadeInUp 0.8s ease forwards;
    }

    .device-item:hover {
        transform: translateY(-8px) scale(1.02) rotate(2deg);
    }

    .device-icon {
        font-size: 35px;
    }

    .device-item h3 {
        font-size: 1.1rem;
    }

    .device-item p {
        font-size: 0.85rem;
    }

    /* Planes - 1 columna */
    .plans-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin: 0 auto;
    }

    .plan-card {
        padding: 20px 15px;
        min-height: auto;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .plan-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .currency-selector {
        flex-direction: column;
        gap: 10px;
    }

    .currency-buttons {
        width: 100%;
        max-width: 300px;
    }

    .currency-btn {
        flex: 1;
        justify-content: center;
    }

        .selected-plan-price {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
   .payment-redirect-btn {
        padding: 12px 20px;
        min-width: 180px;
        font-size: 0.95rem;
        width: 100%; /* En móvil ocupa todo el ancho */
    }
    
    .payment-redirect-btn i {
        font-size: 1rem;
    }
    
    .card-icons {
        font-size: 35px;
        gap: 20px;
    }
    
    .copy-btn {
        width: 100%;
        min-width: auto;
    }
    
    .selected-plan-price {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .selected-plan-price .price-amount {
        font-size: 1.5rem;
    }
    
    .payment-option-header {
        padding: 12px 15px;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .payment-info h4 {
        font-size: 1rem;
    }
    
    .payment-info p {
        font-size: 0.8rem;
    }
    
    .bank-details p {
        flex-direction: column;
        gap: 5px;
    }
    
    .bank-details p strong {
        min-width: auto;
    }
   

    /* Descargas - 1 columna */
    .download-section {
        padding: 60px 0;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .download-category {
        padding: 20px;
    }

    .download-category h3 {
        font-size: 1.3rem;
    }

    .modal-header {
        padding: 20px 20px 15px;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 20px;
    }

    .instructions-step {
        gap: 15px;
        margin-bottom: 25px;
    }

    .instructions-step::before {
        left: 18px;
        top: 40px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step-note {
        padding: 12px;
        font-size: 0.9rem;
    }

    .modal-footer {
        padding: 15px 20px 20px;
    }

    .modal-footer p {
        flex-direction: column;
        gap: 8px;
    }

    .support-link {
        width: 100%;
        justify-content: center;
    }

    /* Contacto - 1 columna */
    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-info {
        padding: 25px 20px;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    /* Sección Títulos */
    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.8rem;
        padding-bottom: 10px;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    /*sección de foother*/

      .footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-apps {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .app-buttons {
        justify-content: center;
        width: 100%;
    }

    .app-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}


/* Breakpoint 480px (Móvil) */
@media (max-width: 480px) {
    
    
    .world-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .container {

        padding: 0 10px;
    }

    /* Header */
    header {
        padding: 10px 0;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 9px;
    }

    .mobile-menu-btn {
        font-size: 20px;
    }

    /* Hero */
    .hero {
        min-height: 450px;
        padding-top: 60px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        padding: 12px;
    }

    .hero-content img {
        width: 230px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-waves {
        height: 80px;
    }

    .hero-counter {
        font-size: 0.8rem;
        padding: 8px 15px;
        bottom: 20px;
    }

    /* Beneficios - 1 columna */
    .benefits-section {
        padding: 50px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-card {
        padding: 20px 15px;
        border-radius: 10px;
        margin-bottom: 5px;
    }

    .benefit-icon {
        font-size: 35px;
        height: 45px;
    }

    .benefit-card h3 {
        font-size: .90rem;
    }

    .benefit-card p {
        font-size: 0.55rem;
        max-width: 90%;
        margin: 0 auto;
    }

    /* Dispositivos - 1 columna */
    .devices-section {
        padding: 50px 0;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .device-item {
        padding: 20px 15px;
    }

    .device-icon {
        font-size: 40px;
    }

    /* Planes */
    .plans-container {
        max-width: 320px;
        gap: 15px;
    }

    .plan-card {
        padding: 18px 12px;
        border-radius: 12px;
    }

    .plan-name {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .plan-price {
        margin-bottom: 15px;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .price-period {
        font-size: 0.9rem;
    }

    .plan-features {
        margin-bottom: 20px;
    }

    .plan-features li {
        font-size: 0.8rem;
        padding: 5px 0;
    }

    .plan-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .plan-badge {
        top: 10px;
        right: -35px;
        padding: 5px 30px;
        font-size: 11px;
    }

    .plan-icon {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .payment-note {
        padding: 15px;
        margin-top: 30px;
    }

    .payment-note p {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

      .payment-redirect-btn {
        padding: 10px 15px;
        min-width: 150px;
        font-size: 0.9rem;
    }
    
    .card-icons {
        font-size: 30px;
        gap: 15px;
    }
    
    .payment-details-content {
        padding: 15px;
    }
    
    .payment-security-note {
        font-size: 0.85rem;
        padding: 12px;
    }



    /* Descargas */
    .download-section {
        padding: 50px 0;
    }

    .download-grid {
        max-width: 280px;
        gap: 15px;
    }

    .download-category {
        padding: 18px 15px;
    }

    .download-category h3 {
        font-size: 1.2rem;
        flex-wrap: wrap;
    }

    .download-links a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .modal {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 15px 15px 10px;
    }

    .modal-header h3 {
        font-size: 1.2rem;
        gap: 8px;
    }

    .modal-header h3 i {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 15px;
    }

    .instructions-step {
        gap: 12px;
        margin-bottom: 20px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .url-highlight {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        font-size: 0.9rem;
    }

    .play-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .video-thumbnail img {
        height: 150px;
    }

    /* Contacto */
    .contact-section {
        padding: 50px 0;
    }

    .contact-container {
        max-width: 280px;
        gap: 20px;
    }

    .contact-info {
        padding: 20px 15px;
    }

    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 20px;
        padding-left: 30px;
    }

    .contact-item i {
        font-size: 20px;
    }

    .demo-cta {
        padding: 15px;
    }

    .demo-cta button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-section {
        padding: 50px 0;
    }

    .faq-container {
        padding: 0 10px;
    }

    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.85rem;
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }

    /* Footer */
    footer {
        padding: 30px 0 10px;
    }

    .footer-logo {
        font-size: 1.6rem;
    }

    footer p {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 12px;
        padding-top: 10px;
    }

    /* Sección Títulos */
    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.6rem;
        padding-bottom: 8px;
    }

    .section-title p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

     .app-buttons {
        flex-direction: column;
    }

    .app-btn {
        min-width: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo-text {
        text-align: center;
    }
}

@media (max-width: 360px) {
    .plans-container {
        max-width: 280px;
    }

    .plan-card {
        padding: 15px 10px;
    }

    .plan-name {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 1.6rem;
    }

    .plan-features li {
        font-size: 0.75rem;
    }

    .plan-button {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .currency-buttons {
        flex-direction: column;
        background: none;
        gap: 8px;
    }

    .currency-btn {
        background: rgba(255, 255, 255, 0.1);
        width: 100%;
    }


}