/* ================= DISEÑO DE PORTADA EXACTO (Captura 1) ================= */

.eita-hero-wrapper {
    padding: 20px 0;
}

.eita-hero-box {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px; 
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    padding: 50px 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.eita-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Degradado oscuro a la izquierda para resaltar el texto blanco */
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.eita-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Empuja el título arriba y subtítulo abajo */
    width: 100%;
    min-height: 400px; 
}

.eita-hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3.8rem;
    line-height: 1.1;
    color: #ffffff !important;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.eita-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
    max-width: 500px;
}

/* Banner Azul Intermedio */
.eita-banner-wrapper {
    padding: 10px 0 20px 0;
}

.eita-banner-box {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 15px 20px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(62, 64, 150, 0.2);
}

.eita-banner-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: #ffffff !important;
    margin: 0 0 2px 0;
}

.eita-banner-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

/* Título de la sección del calendario */
.eita-calendar-wrapper-section {
    padding: 20px 0 60px 0;
}

.eita-section-title-alt {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: #7f8c8d; 
    margin-bottom: 30px;
    margin-top: 0;
}

/* Adaptación para Teléfonos Móviles */
@media (max-width: 767px) {
    .eita-hero-box {
        padding: 30px 20px;
        min-height: 400px;
    }
    .eita-hero-content {
        min-height: 340px;
    }
    .eita-hero-title {
        font-size: 2.4rem;
    }
    .eita-hero-subtitle br {
        display: none; 
    }
    .eita-banner-title {
        font-size: 1.4rem;
    }
}