/* BANNER */
.apren-banner {
    background-image: url('/images/capacitaciones/FEC-WEB-FONDO-CAPACITACION-ESPECIAL.png'); /* Cambia por tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apren-banner-overlay {
    background: rgba(30, 36, 82, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apren-banner-titulo {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    font-family: MiFuenteDos, sans-serif;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    text-align: center;
    margin: 0 0 2rem 0;
    line-height: 1.1;
}

/* BOTÓN BANNER - Fondo blanco, letras azules */
.apren-btn-banner {
    background: #fff;
    color: #1E2452;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: MiFuente, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.apren-btn-banner:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.apren-btn-banner i {
    font-size: 1.3rem;
}

/* SECCIÓN CUADERNILLOS */
.apren-cuadernillos {
    background: #fff;
    padding: 4rem 0 5rem;
}

.apren-subtitulo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    font-family: MiFuenteDos, sans-serif;
    text-align: center;
    margin-bottom: 3rem;
}

/* BOTONES CUADERNILLOS - Mismo estilo que el del banner */
.apren-btn-cuad {
    background: #fff;
    color: #1E2452;
    border: 1px solid #1E2452;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: MiFuente, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.apren-btn-cuad:hover {
    background: #1E2452;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 36, 82, 0.3);
}

.apren-btn-cuad i {
    font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .apren-banner-titulo {
        font-size: 3.5rem;
    }

    .apren-btn-banner {
        padding: 0.9rem 2.5rem;
        font-size: 1.1rem;
    }

    .apren-subtitulo {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .apren-banner {
        height: 40vh;
        min-height: 350px;
    }

    .apren-banner-titulo {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .apren-btn-banner {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .apren-subtitulo {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .apren-btn-cuad {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}