/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #16213e 100%);
    overflow-x: hidden;
    position: relative;
    /* SOLUCIÓN PARA CACHÉ: Forzar recarga de estilos */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    font-size: 1.4rem;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #FF6B6B);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #16213e 100%);
    overflow: hidden;
}

/* IMAGEN DE FONDO ARREGLADA - SE VE COMPLETA EN TODOS LOS DISPOSITIVOS */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background: url('imagenesbonosolidario/imagenparafondo.jpg') center center/contain no-repeat;
    opacity: 0.5;
    z-index: 0;
}

/* Para pantallas muy anchas, usar cover para llenar mejor */
@media (min-width: 1400px) {
    .hero-background {
        background-size: cover;
        background-position: center center;
    }
}

/* Para móviles, asegurar que se vea completa */
@media (max-width: 768px) {
    .hero-background {
        background-size: contain;
        background-position: center 11%; /* Cambia este valor para ajustar la altura */
        opacity: 0.5;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #FFD700, transparent),
        radial-gradient(2px 2px at 40px 70px, #FF6B6B, transparent),
        radial-gradient(1px 1px at 90px 40px, #4ECDC4, transparent),
        radial-gradient(1px 1px at 130px 80px, #45B7D1, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

@keyframes sparkle {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-200px) translateX(-200px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* 🎯 CONTADOR RESPONSIVO - MÁS GRANDE EN PANTALLAS GRANDES, PEQUEÑO EN MÓVILES 🎯 */
.countdown-container {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(224, 56, 56, 0.95), rgba(255, 0, 0, 0.95));
    padding: 1.2rem 2rem; /* Más grande por defecto para pantallas grandes */
    border-radius: 25px;
    width: min(90%, 450px); /* Más grande para pantallas grandes */
    height: auto;
    margin: 0 auto 2rem;
    position: relative;
    border: 4px solid rgba(255, 215, 0, 0.8);
    box-shadow: 
        0 12px 35px rgba(255, 0, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.4),
        inset 0 3px 15px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(1); /* Tamaño normal para pantallas grandes */
    /* SOLUCIÓN PARA CACHÉ: Forzar actualización */
    will-change: transform;
    backface-visibility: hidden;
}

/* Segundo resplandor exterior */
.countdown-container::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, transparent 70%);
    border-radius: 35px;
    z-index: -2;
    animation: outer-pulse 3s ease-in-out infinite;
}

@keyframes outer-pulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.9; 
        transform: scale(1.1); 
    }
}

.countdown-container h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: clamp(1rem, 2.5vw, 1.4rem); /* Más grande para pantallas grandes */
    font-weight: 800;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(255, 215, 0, 0.8);
    animation: text-glow 2s ease-in-out infinite alternate;
}

@keyframes text-glow {
    0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 215, 0, 0.8); }
    100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 215, 0, 1); }
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* Gap más grande para pantallas grandes */
    margin-bottom: 0.6rem;
}

.time-unit {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(30, 30, 30, 0.9));
    padding: 0.8rem 1rem; /* Padding más grande para pantallas grandes */
    border-radius: 15px;
    border: 3px solid #FFD700;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.5),
        inset 0 3px 8px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.6);
    min-width: 65px; /* Más grande para pantallas grandes */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo en las unidades de tiempo */
.time-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: unit-shine 3s infinite;
}

@keyframes unit-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.time-unit:hover {
    transform: scale(1.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.6),
        inset 0 3px 10px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.9);
}

.time-unit span {
    display: block;
    font-size: clamp(1.4rem, 3.5vw, 1.8rem); /* Más grande para pantallas grandes */
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 1),
        0 0 40px rgba(255, 215, 0, 0.8);
    line-height: 1;
    position: relative;
    z-index: 1;
    animation: number-pulse 2s ease-in-out infinite;
}

@keyframes number-pulse {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 215, 0, 0.8);
    }
    50% { 
        transform: scale(1.05); 
        text-shadow: 0 0 25px rgba(255, 215, 0, 1), 0 0 50px rgba(255, 215, 0, 1);
    }
}

.time-separator {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem); /* Más grande para pantallas grandes */
    font-weight: 900;
    color: #FFD700;
    animation: mega-blink 1.2s infinite;
    text-shadow: 0 0 25px rgba(255, 215, 0, 1);
}

@keyframes mega-blink {
    0%, 40% { 
        opacity: 1; 
        transform: scale(1);
        text-shadow: 0 0 25px rgba(255, 215, 0, 1);
    }
    50%, 90% { 
        opacity: 0.3; 
        transform: scale(0.9);
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
        text-shadow: 0 0 25px rgba(255, 215, 0, 1);
    }
}

.time-unit label {
    font-size: clamp(0.6rem, 1.5vw, 0.9rem); /* Más grande para pantallas grandes */
    color: #ffffff;
    margin-top: 0.2rem;
    display: block;
    font-weight: 700;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.countdown-text {
    color: #FFD700;
    font-weight: 900;
    font-size: clamp(0.8rem, 1.8vw, 1.1rem); /* Más grande para pantallas grandes */
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 215, 0, 1);
    margin: 0;
    animation: countdown-text-glow 2s ease-in-out infinite alternate;
}

@keyframes countdown-text-glow {
    0% { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 215, 0, 1);
        transform: scale(1);
    }
    100% { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 1);
        transform: scale(1.02);
    }
}

.pulse-button-container {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.4) 0%, transparent 70%);
    border-radius: 50px;
    animation: button-pulse 3s ease-in-out infinite;
}

@keyframes button-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* BOTÓN PRINCIPAL DE WHATSAPP - COMPLETAMENTE RESPONSIVO */
.pulse-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    animation: mega-pulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.6);
    text-align: center;
    white-space: nowrap;
    max-width: 90%;
    width: auto;
    margin: 0 auto;
}

@keyframes mega-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
    }
}

.pulse-whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.8);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    grid-column: 1 / -1;           /* Ocupar las dos columnas del grid */
    display: flex;
    flex-direction: column;
    align-items: center;           /* Centra horizontalmente el contenido */
    text-align: center;            /* Centra el texto */
}

.hero-title {
    font-size: 2.2rem;             /* Título más pequeño */
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;           /* Más pequeño en pantallas grandes */
    }
}

.title-line {
    display: inline;               /* Mostrar en una sola línea */
    animation: none;
    opacity: 1;
}

/* Efectos de colores y animaciones */

.highlight-mega {
    background: linear-gradient(45deg, #FFD700, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: rainbow-text 3s ease-in-out infinite;
}

.highlight-number {
    color: #FF6B6B;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    animation: glow-red 2s ease-in-out infinite alternate;
}

.highlight-win {
    color: #4ECDC4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.8);
    animation: glow-cyan 2s ease-in-out infinite alternate;
}

@keyframes rainbow-text {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

@keyframes glow-red {
    0% { text-shadow: 0 0 20px rgba(255, 107, 107, 0.8); }
    100% { text-shadow: 0 0 30px rgba(255, 107, 107, 1), 0 0 40px rgba(255, 107, 107, 0.8); }
}

@keyframes glow-cyan {
    0% { text-shadow: 0 0 20px rgba(78, 205, 196, 0.8); }
    100% { text-shadow: 0 0 30px rgba(78, 205, 196, 1), 0 0 40px rgba(78, 205, 196, 0.8); }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #E0E0E0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.qr-section {
    margin: 1rem 0;
}

.qr-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.qr-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #4ECDC4, #FF6B6B);
    border-radius: 22px;
    z-index: -1;
    animation: qr-glow 4s ease-in-out infinite;
}

@keyframes qr-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.qr-container img {
    width: 280px;
    height: 280px;
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-container p {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.qr-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 80%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.hero-image {
    position: relative;
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #FFD700, #FF6B6B, #4ECDC4, #45B7D1);
    border-radius: 30px;
    z-index: -1;
    animation: image-glow 4s ease-in-out infinite;
}

@keyframes image-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.winner-badge {
    background: linear-gradient(135deg, #FFD700, #FF6B6B);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 10%, rgba(255, 217, 0, 0) 50%, transparent 70%);
    z-index: 1;
    animation: image-shine 3s ease-in-out infinite; /*image time*/
}

@keyframes image-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.image-frame img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #4ECDC4, #45B7D1);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.section-title.centered {
    text-align: center;
}

.title-icon {
    color: #FFD700;
    margin: 0 10px;
    animation: icon-spin 3s ease-in-out infinite;
}

@keyframes icon-spin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.about-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #E0E0E0;
    font-weight: 500;
    line-height: 1.8;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #E0E0E0;
    font-weight: 600;
}

/* Videos Section */
.videos {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #FF6B6B;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.video-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.video-item:hover::before {
    transform: translateX(100%);
}

.video-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.video-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.video-frame video {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

/* SOLUCIÓN: Ocultar overlay cuando el video tiene controles nativos */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Permitir que los clics pasen al video */
}

/* Solo mostrar overlay en videos SIN controles nativos */
.video-frame:not(:has(video[controls])):hover .video-overlay {
    opacity: 1;
    pointer-events: auto;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.video-item h3 {
    color: #4ECDC4;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(69, 183, 209, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.benefit-item:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.benefit-icon {
    position: relative;
    margin-bottom: 2rem;
}

.benefit-icon i {
    font-size: 4rem;
    color: #4ECDC4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: icon-glow 3s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.benefit-item p {
    color: #E0E0E0;
    font-weight: 500;
    line-height: 1.7;
}

/* BOTÓN CTA SECUNDARIO - COMPLETAMENTE RESPONSIVO */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    white-space: nowrap;
    max-width: 90%;
    width: auto;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.mega-cta {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.pulse-mega {
    animation: mega-pulse 3s ease-in-out infinite;
}

.cta-center {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Social Media Section */
.social-media {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2, #0d5dbf);
    color: #ffffff;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
}

.social-link.instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4);
    color: #ffffff;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.social-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-link:hover .social-glow {
    transform: translateX(100%);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000, #1a1a2e);
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-section p,
.footer-section a {
    color: #E0E0E0;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4ECDC4;
    text-shadow: 0 0 5px rgba(78, 205, 196, 0.5);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(135deg, #FFD700, #FF6B6B);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #B0B0B0;
    font-weight: 500;
}

/* BOTÓN FLOTANTE DE WHATSAPP - COMPLETAMENTE RESPONSIVO */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: mega-float 4s ease-in-out infinite;
    border: 3px solid rgba(255, 215, 0, 0.6);
    overflow: hidden;
}

@keyframes mega-float {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }
    50% { 
        transform: translateY(-15px) scale(1.05); 
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.8);
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
}

.float-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #FFD700, #4ECDC4, #FF6B6B);
    border-radius: 50%;
    z-index: -1;
    animation: float-glow 3s ease-in-out infinite;
}

@keyframes float-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.1); }
}

/* Testimonios Page Styles */
.testimonios-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #16213e 100%);
    text-align: center;
    position: relative;
}

.testimonios-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.testimonios-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #FFD700, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    animation: rainbow-text 3s ease-in-out infinite;
}

.testimonios-hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #E0E0E0;
    font-weight: 600;
}

.recent-winners {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.winner-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.winner-card:hover::before {
    transform: translateX(100%);
}

.winner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.winner-image {
    margin-bottom: 2rem;
    position: relative;
}

.winner-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4ECDC4;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.winner-content h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.winner-location {
    color: #4ECDC4;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(78, 205, 196, 0.5);
}

.winner-testimonial {
    color: #E0E0E0;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
}

.winner-amount {
    background: linear-gradient(45deg, #FFD700, #FF6B6B);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 800;
    display: inline-block;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: amount-glow 2s ease-in-out infinite alternate;
}

@keyframes amount-glow {
    0% { box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6); }
}

.video-testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.video-testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.video-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.video-testimonial:hover::before {
    transform: translateX(100%);
}

.video-testimonial:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.video-testimonial video {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-testimonial h3 {
    color: #4ECDC4;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.video-testimonial p {
    color: #E0E0E0;
    font-size: 1rem;
    font-weight: 500;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #0d5dbf 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Terms Page Styles */
.terms-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #16213e 100%);
    text-align: center;
    position: relative;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.terms-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #FFD700, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.terms-hero p {
    font-size: 1.4rem;
    color: #E0E0E0;
    font-weight: 600;
}

.terms-content {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.terms-text h2 {
    color: #FFD700;
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    border-bottom: 3px solid #4ECDC4;
    padding-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text p {
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.terms-text ul {
    color: #E0E0E0;
    margin: 1.5rem 0 1.5rem 2rem;
}

.terms-text li {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.terms-update {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(78, 205, 196, 0.2));
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border-left: 5px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.terms-update p {
    color: #FFD700;
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* 📱 RESPONSIVE DESIGN MEJORADO - CONTADOR GRANDE EN PANTALLAS GRANDES, PEQUEÑO EN MÓVILES 📱 */

/* PANTALLAS GRANDES (1200px+) - CONTADOR MÁS GRANDE */
@media (min-width: 1200px) {
    .countdown-container {
        width: min(85%, 500px); /* Aún más grande en pantallas muy grandes */
        padding: 1.5rem 2.5rem;
        transform: scale(1.1); /* Más grande */
    }

    .countdown-container h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .countdown {
        gap: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .time-unit {
        padding: 1rem 1.5rem;
        min-width: 80px;
        border-radius: 18px;
    }

    .time-unit span {
        font-size: 2.2rem;
    }

    .time-separator {
        font-size: 2.2rem;
    }

    .time-unit label {
        font-size: 1rem;
        margin-top: 0.3rem;
    }

    .countdown-text {
        font-size: 1.3rem;
    }
}

/* TABLET (768px - 1199px) - CONTADOR MEDIANO */
@media (max-width: 10000px) and (min-width: 769px) {
    .countdown-container {
        width: min(85%, 380px);
        padding: 1rem 1.5rem;
        transform: scale(1); /* Tamaño normal */
    }

    .countdown-container h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .countdown {
        gap: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .time-unit {
        padding: 0.6rem 0.8rem;
        min-width: 55px;
    }

    .time-unit span {
        font-size: 1.4rem;
    }

    .time-separator {
        font-size: 1.4rem;
    }

    .time-unit label {
        font-size: 0.7rem;
    }

    .countdown-text {
        font-size: 0.9rem;
    }
}

/* MÓVILES (768px y menos) - CONTADOR PEQUEÑO COMO ESTABA */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 10, 46, 0.95));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 3rem 0;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    /* 🎯 CONTADOR PEQUEÑO PARA TABLET 🎯 */
    .countdown-container {
        width: min(85%, 250px);  /* Pequeño en tablet */
        padding: 0.5rem 0.8rem;
        transform: scale(0.85);  /* Más pequeño */
    }

    .countdown-container h3 {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }

    .countdown {
        gap: 0.4rem;
        margin-bottom: 0.2rem;
    }

    .time-unit {
        padding: 0.2rem 0.4rem;
        min-width: 35px;
    }

    .time-unit span {
        font-size: 0.85rem;
    }

    .time-separator {
        font-size: 0.85rem;
    }

    .time-unit label {
        font-size: 0.4rem;
    }

    .countdown-text {
        font-size: 0.6rem;
    }

    /* BOTÓN PRINCIPAL RESPONSIVO PARA TABLET */
    .pulse-whatsapp-btn {
        font-size: 1rem;
        padding: 1.2rem 2rem;
        gap: 12px;
        max-width: 95%;
        margin: 0 auto;
    }

    /* BOTÓN CTA RESPONSIVO PARA TABLET */
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        gap: 12px;
        max-width: 95%;
        margin: 0 auto;
    }

    .qr-container img {
        width: 200px;
        height: 200px;
    }

    .winners-grid {
        grid-template-columns: 1fr;
    }

    .video-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .terms-text {
        padding: 2rem;
    }

    /* BOTÓN FLOTANTE RESPONSIVO PARA TABLET */
    .floating-whatsapp {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    /* 🎯 CONTADOR MUY PEQUEÑO PARA MÓVIL 🎯 */
    .countdown-container {
        width: min(90%, 220px);  /* Más pequeño para móvil */
        padding: 0.4rem 0.6rem;
        margin: 0 auto 1.5rem;
        transform: scale(0.8);  /* Aún más pequeño */
    }

    .countdown-container h3 {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
    }

    .countdown {
        gap: 0.3rem;
        margin-bottom: 0.15rem;
    }

    .time-unit {
        padding: 0.15rem 0.35rem;
        border-radius: 8px;
        min-width: 32px;
    }

    .time-unit span {
        font-size: 0.75rem;
    }

    .time-separator {
        font-size: 0.75rem;
    }

    .time-unit label {
        font-size: 0.35rem;
        margin-top: 0.05rem;
    }

    .countdown-text {
        font-size: 0.55rem;
    }

    /* BOTÓN PRINCIPAL COMPLETAMENTE RESPONSIVO PARA MÓVIL */
    .pulse-whatsapp-btn {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        gap: 10px;
        max-width: 95%;
        margin: 0 auto;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    /* BOTÓN CTA COMPLETAMENTE RESPONSIVO PARA MÓVIL */
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        gap: 10px;
        max-width: 95%;
        margin: 0 auto;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .benefit-item,
    .video-item,
    .winner-card,
    .video-testimonial {
        padding: 2rem 1.5rem;
    }

    /* BOTÓN FLOTANTE COMPLETAMENTE RESPONSIVO PARA MÓVIL */
    .floating-whatsapp {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: 10px;
        right: 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonios-hero h1,
    .terms-hero h1,
    .cta-section h2 {
        font-size: 2.2rem;
    }

    .qr-container img {
        width: 180px;
        height: 180px;
    }

    .qr-container {
        padding: 1.5rem;
        max-width: 95%;
        margin: 0 auto;
    }
}

/* 🎯 EXTRA RESPONSIVE PARA PANTALLAS MUY PEQUEÑAS - CONTADOR COMPACTO 🎯 */
@media (max-width: 360px) {
    /* CONTADOR ULTRA COMPACTO */
    .countdown-container {
        width: min(95%, 200px);  /* Súper compacto */
        padding: 0.3rem 0.5rem;
        transform: scale(0.75);  /* Muy pequeño */
    }

    .countdown-container h3 {
        font-size: 0.6rem;
    }

    .countdown {
        gap: 0.25rem;
    }

    .time-unit {
        padding: 0.1rem 0.3rem;
        min-width: 28px;
    }

    .time-unit span {
        font-size: 0.7rem;
    }

    .time-separator {
        font-size: 0.7rem;
    }

    .time-unit label {
        font-size: 0.3rem;
    }

    .countdown-text {
        font-size: 0.5rem;
    }

    .pulse-whatsapp-btn {
        font-size: 0.8rem;
        padding: 0.9rem 1.2rem;
        gap: 8px;
        max-width: 98%;
    }

    .cta-button {
        padding: 0.9rem 1.2rem;
        font-size: 0.8rem;
        gap: 8px;
        max-width: 98%;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .qr-container {
        max-width: 98%;
        padding: 1rem;
    }

    .qr-container img {
        width: 160px;
        height: 160px;
    }
}

/* SOLUCIÓN ADICIONAL PARA CACHÉ: Forzar recarga de elementos críticos */
.countdown-container,
.pulse-whatsapp-btn,
.cta-button {
    /* Forzar actualización del navegador */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
}

/* Forzar recarga de animaciones */
@keyframes force-update {
    0% { opacity: 0.999; }
    100% { opacity: 1; }
}

body {
    animation: force-update 0.1s ease-in-out;
}