/* ---- SECCIÓN INICIO ---- */
.hero {
    height: 70vh; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:whitesmoke;
    padding: 0 5%;
    overflow: hidden;
}

/* Fondo de video */
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

/* Capa de superposición oscura */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Oscurece el video */
    z-index: 0;
}

/* Contenido sobre el video */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 2.5rem;
    margin: 10px 0;
}

/* 🔹 SECCIÓN DE INTRODUCCIÓN */
.intro {
    text-align: left;
    padding: 2rem;
    margin-left: 5%;
}

.intro h2 {
    font-size: 3rem;
    color: green;
    font-weight: 600;
    margin-bottom: 2%;
    margin-top: 20px;
}

.intro p {
    font-size: 1.5rem;
    max-width: 1400px;
}

.intro blockquote {
    font-style: italic;
    font-size: 150%;
    color: #555;
    margin-top: 5%;
}

.intro blockquote span {
    display: block;
    font-size: 1.2rem;  /* Reducido de 1.4rem */
    color: #333;
    font-weight: bold;
    margin-top: 5px;
}
