/* style.css */

/* Estilos generales */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Sección principal */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Video de fondo */
#background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Capa oscura */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Contenido */
.content {
    position: relative;
    z-index: 2;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.content p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Botón */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover {
    background: #cc0000;
}

/* Responsivo */
@media (max-width: 768px) {
    .content h1 {
        font-size: 36px;
    }
    
    .content p {
        font-size: 16px;
    }
    
    .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}
