/* RESET GENERAL */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html, body { 
    width: 100%; 
    height: 100%; 
    overflow-x: hidden; /* Evita scroll horizontal innecesario */
    background-color: #000; 
    font-family: 'Arial', sans-serif;
}

/* SECCIÓN CONTENEDORA */
.expansion-section-full {
    position: relative; /* Cambiado de fixed a relative si es parte de un scroll, o mantené fixed si es splash */
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

/* VIDEO OPTIMIZADO */
.expansion-video-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Centra y cubre el área automáticamente sin transform */
    z-index: 1;
    background-color: #000; /* Fondo negro mientras carga */ /* Si podés oscurecer el video original, borrá esta línea */
    will-change: transform; /* Ayuda al navegador a preparar la aceleración de hardware */
}

/* OVERLAY DE GRADIENTE */
.expansion-overlay-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none; /* Permite hacer clic a través del overlay si hace falta */
}

/* CONTENIDO WEB */
.expansion-content-full {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 10;
    width: 80%; 
}

.badge {
    background: #DF4124;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.reveal-text {
    font-size: 6vw; 
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.sub-reveal {
    font-size: 2vw;
    font-weight: 300;
    color: #DF4124;
    margin: 8px 0 20px 0;
    text-transform: uppercase;
}

.expansion-line {
    width: 70px;
    height: 4px;
    background: #DF4124;
    margin-bottom: 25px;
}

.expansion-content-full p {
    font-size: 1.1rem;
    max-width: 450px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* BOTÓN WHATSAPP OPTIMIZADO */
.btn-preventa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    /* Usamos scale en vez de box-shadow para mejor rendimiento en móviles */
    animation: pulse-soft 2s infinite ease-in-out;
}

@keyframes pulse-soft {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); }
    100% { transform: scale(1); }
}

/* AJUSTE PARA MÓVILES */
@media (max-width: 768px) {
    .expansion-content-full {
        left: 0;
        width: 100%;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reveal-text {
        font-size: 10vw; /* Ajustado para legibilidad */
        white-space: normal;
        word-wrap: break-word;
    }

    .sub-reveal {
        font-size: 1.1rem;
        margin: 5px 0 15px 0;
    }

    .expansion-line {
        margin: 0 auto 15px;
    }

    .expansion-content-full p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}