/* =========================================================
   SECCIÓN HERO (INICIO)
   ========================================================= */
   
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    color: #fff;
    padding: 0 20px;
    overflow: hidden;
}

/* Estilos para el video de fondo */
#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra toda el área */
    z-index: -1; /* Coloca el video por detrás del contenido */
}

/* Oscurece la imagen de fondo con un overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 2.5rem;
    z-index: 1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    z-index: 1;
    margin-bottom: 30px;
}

.hero button {
    background-color: #032a54;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 1;
    border-radius: 4px;
    transition: background-color 0.3s;
    max-width: 240px;
    font-family: 'Poppins', sans-serif;
}

.hero button:hover {
    background-color: #ffcc00;
    color: #ffffff; 
    transform: scale(1.05); /* Efecto de ligero aumento */
    box-shadow: 0px 4px 8px rgba(0, 123, 255, 0.4); /* Sombra azul */
}

.highlightInicio {
    color: #c6bc00; 
}

/* =========================================================
   HERO SECTION MEJORADA
   ========================================================= */
   .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    transition: transform 0.3s ease;
}

.hero-logo {
    max-width: 200px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.hero.visible .hero-logo {
    opacity: 1;
    transform: translateX(0);
}

