/* --- Estilos Globales (Para asemejar la imagen) --- */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Fuente similar a la de la imagen */
    font-family: "Montserrat", Arial, sans-serif!important;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

/* --- Contenedor Principal del Hero --- */
.opera-hero {
    position: relative;
    width: 100%;
    /* Altura completa de la pantalla (ajustable) */
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center; /* Centrado vertical */
    justify-content: center; /* Centrado horizontal */
}

.hero-wrap-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* --- Estilo del Video de Fondo --- */
.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Asegura que el video cubra todo el contenedor sin deformarse */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2; /* Detrás de todo */
    transform: translate(-50%, -50%);
    object-fit: cover; /* Recorta el video para llenar el espacio */
}

/* --- Capa Oscura (Overlay) --- */
/* Esta capa es crucial para que el texto blanco sea legible */
.capa2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fondo negro con 60% de opacidad (ajústalo si el video es muy claro) */
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1; /* Entre el video y el texto */
}

/* --- Contenedor del Texto --- */
.hero-content {
    position: relative;
    z-index: 2; /* Por encima del video y el overlay */
    color: white;
    text-align: center; /* Centrado de texto */
    max-width: 600px; /* Ancho máximo para mejor lectura */
    padding: 0 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* --- Estilos de Texto Específicos --- */
.main-title {
    font-size: 2.5rem; /* Tamaño grande como en la imagen */
    letter-spacing: 2px; /* Espaciado entre letras */
    margin-bottom: 10px;
    margin-top: 0;
}

.subtitle {
    font-size: 1.2rem; /* Tamaño mediano */
    font-weight: 400;
    color: #e0e0e0; /* Gris muy claro */
    padding: 1rem;
    line-height: 1.4;
}


/* --- Estilo del Botón (boton-2) --- */
.btn-link {
    text-decoration: none; /* Quita el subrayado del enlace */
}
.btn-link:hover {
    text-decoration: underline; }

.boton-2 {
    background-color: #a31d24; /* Rojo oscuro (burdeos) de la imagen */
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-uppercase: uppercase;
    border-radius: 50px; /* Bordes muy redondeados */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3); /* Sombra suave */
}

/* Efectos al pasar el ratón por encima del botón */
.boton-2:hover {
    background-color: #c4262f; /* Un rojo un poco más claro */
    transform: translateY(-2px); /* Pequeño salto hacia arriba */
}

.boton-2:active {
    transform: translateY(1px); /* Efecto de pulsado */
}



/* Responsive: Ajustes para móviles */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1.1rem;
    }
    .boton-2 {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}
