@charset "UTF-8";
/* Hoja de Estilos Principal - Video Interactivo */

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

body {
    min-height: 100vh;
    font-family: 'Poppins', 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f203f 0%, #1d3a6f 30%, #2971af 65%, #0d1f34 100%);
    color: #f4f7fb;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: none;
}

@keyframes cameraMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 180% 120%; }
    100% { background-position: 0% 0%; }
}

@keyframes blueParticles {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.02) translate(-2%, 2%); }
    100% { transform: scale(1) translate(0, 0); }
}

@keyframes subtleShimmer {
    0% { transform: translate(0, 0); opacity: 0.35; }
    50% { transform: translate(-1.2%, -0.8%); opacity: 0.45; }
    100% { transform: translate(0, 0); opacity: 0.35; }
}

h1 {
    color: #fefefe;
    text-align: center;
    font-family: 'Poppins', 'Inter', 'Arial', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 16px 0 8px;
    font-weight: 900;
    letter-spacing: 0.14rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
    position: relative;
}


@keyframes floatBG {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 3%) scale(1.02); }
    100% { transform: translate(0, 0) scale(1); }
}

h1 {
    color: #fff;
    text-align: center;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 16px 0 8px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

p {
    color: #d8e4f0;
    text-align: center;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.contenedor-video {
    position: relative;
    width: min(98%, 1080px);
    margin: 20px auto 30px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45), inset 0 0 1px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.contenedor-video:hover {
    transform: translateY(-3px);
}

#videoPrincipal {
    width: 100%;
    max-height: 70vh;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
    display: block;
    background: #000;
}

#botoncito_si,
#botoncito_no {
    position: absolute;
    width: 200px;
    min-width: 140px;
    height: 65px;
    display: none;
    opacity: 0.0;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a00;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.35);
}

#botoncito_si,
#botoncito_no {
    top: 67%;
}

#botoncito_si.pos-left,
#botoncito_no.pos-left {
    left: 21%;
}

#botoncito_si.pos-right,
#botoncito_no.pos-right {
    left: 61%;
}

#botoncito_si {
    background: linear-gradient(120deg, #44d9a9 0%, #0dc2ff 100%);
}

#botoncito_no {
    background: linear-gradient(120deg, #ff7a75 0%, #ffb242 100%);
}

#botoncito_si:hover,
#botoncito_no:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

#botoncito_si:active,
#botoncito_no:active {
    transform: translateY(0) scale(0.98);
}

@media screen and (max-width: 768px) {
    .contenedor-video {
        padding: 14px;
    }

    #botoncito_si,
    #botoncito_no {
        width: 42%;
        height: 45px;
        font-size: 0.92rem;
    }

    h1 { font-size: clamp(1.7rem, 9vw, 2.4rem); }
}
