/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Sección principal con video de fondo */
.hero {
    width: 100%;
    min-height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

/* Video de fondo */
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Estilo del título */
.titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 100px;
    font-weight: bold;
    color: rgb(252, 252, 252);
}

/* Estilo del subtítulo */
.subtitulo {
    font-size: 35px;
    margin-top: 10px;
    text-shadow: 2px 2px 10px rgb(50, 255, 232),
                 -2px -2px 10px rgb(50, 255, 232);
}

/* Botón "Entrar" */
.btn-entrar {
    margin-top: 100px;
    padding: 18px 45px;
    font-size: 24px;
    font-weight: bold;
    color: rgb(6, 6, 6);
    background: linear-gradient(90deg, rgb(50, 255, 232), rgb(50, 255, 232));
    border: none;
    border-radius: 35px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-entrar:hover {
    transform: scale(1.15);
    box-shadow: 0 0 80px rgba(15, 229, 245, 0.959);
}

/* Estilos responsive mejorados */
@media (max-width: 1024px) {
    .titulo {
        font-size: 75px;
    }
    .subtitulo {
        font-size: 26px;
        text-align: center;
        max-width: 90%;
    }
    .btn-entrar {
        font-size: 22px;
        padding: 16px 40px;
    }
    .hero video {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .titulo {
        font-size: 55px;
    }
    .subtitulo {
        font-size: 22px;
        max-width: 85%;
    }
    .btn-entrar {
        font-size: 20px;
        padding: 14px 35px;
        margin-top: 50px;
    }
    .hero video {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .titulo {
        font-size: 40px;
    }
    .subtitulo {
        font-size: 18px;
        max-width: 80%;
    }
    .btn-entrar {
        font-size: 16px;
        padding: 12px 25px;
        margin-top: 40px;
    }
    .hero video {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 360px) {
    .titulo {
        font-size: 35px;
    }
    .subtitulo {
        font-size: 16px;
        max-width: 75%;
    }
    .btn-entrar {
        font-size: 14px;
        padding: 10px 20px;
        margin-top: 30px;
    }
    .hero video {
        width: 100%;
        height: auto;
    }
}










