/* ============================================
   CAPACITACIÓN: MANEJO Y OPERACIÓN DE JLG – EVH SRL
   Estilo moderno, limpio y corporativo
============================================ */

/* HERO SUPERIOR */
.hero-cap {
    width: 100%;
    height: auto; /* se adapta al contenido */
    aspect-ratio: 1920 / 450; /* mantiene proporción horizontal */
    background-image: url('../assets/img/capacitaciones/jlg.jpg');
    background-size: contain; /* muestra toda la imagen sin recorte */
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

/* CONTENIDO PRINCIPAL */
.cap-content {
    background: #fafafa;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.cap-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #b30000;
    margin-bottom: 10px;
}

.cap-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* LISTAS */
.cap-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.cap-content ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

/* BOTÓN DE INSCRIPCIÓN */
.btn-inscribir {
    display: inline-block;
    background: #b30000;
    color: #fff !important;
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.25s ease;
    margin-top: 20px;
}

.btn-inscribir:hover {
    background: #8a0000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-cap {
        aspect-ratio: 16 / 9; /* mantiene proporción en pantallas pequeñas */
        background-size: contain;
        background-position: center;
    }

    .cap-content {
        padding: 20px;
    }

    .cap-content h3 {
        font-size: 22px;
    }
}