/* ===================================================================
 *  certificaciones.css
 *  Estilos específicos y únicos para la página de Certificaciones.
 * =================================================================== */

/* --- Estilos Generales de Sección --- */
.section-padding { padding-top: 100px; padding-bottom: 100px; }
.section-title { font-size: 2.8rem; margin-bottom: 1rem; font-weight: 700; }
.subtitle { display: block; color: #011954; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; letter-spacing: 1px; }

/* --- Cabecera de Página --- */
#page-header { position: relative; height: 50vh; min-height: 350px; background-image: url('../imagenes/cabecera.jpg'); background-size: cover; background-position: center center; display: flex; align-items: center; justify-content: center; text-align: center; }
#page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.5); }
#page-header .page-title { position: relative; color: white; font-weight: 500; font-size: 3.5rem; }

/* --- Sección de Tarjetas de Certificados --- */
.certificate-card { background-color: #fff; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.07); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.certificate-card:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.certificate-image-wrapper { position: relative; width: 100%; padding-top: 85%; overflow: hidden; background-color: #f8f9fa; }
.certificate-image-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.certificate-content { padding: 25px; text-align: center; border-top: 1px solid #e9ecef; }
.certificate-content h3 { font-size: 1.4rem; font-weight: 700; color: #011954; margin-bottom: 5px; }
.certificate-content p { color: #6c757d; font-size: 1rem; margin-bottom: 20px; }
.btn-outline-primary { border-color: #011954; color: #011954; font-weight: 700; }
.btn-outline-primary:hover { background-color: #011954; color: #fff; }

/* --- NUEVA SECCIÓN CTA FINAL --- */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../imagenes/slide-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(1, 25, 84, 0.85); /* Overlay azul oscuro corporativo */
}
.final-cta-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.final-cta-box .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background-color: #011954; /* Color rojo de tu marca */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.final-cta-box h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
}
.final-cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
.final-cta-box .btn-light {
    font-weight: 700;
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
}