 section.banner-inicio .div-banner{
    height: 500px;
}
section.banner-inicio .div-banner img{
    object-fit: cover;

}

.section-contect h2{
    color: #0C26A3;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.section-contect p{
    color: #453D3B;
    font-size: 18px;
font-weight: 400;
line-height: normal;
padding: 0 8%;
}



/* ============================
   BENEFICIOS SECTION
============================ */


/* CARD */
.beneficio-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 0 30px !important;
    transition: all .3s ease;
    height: 100%;
}

.beneficio-card:hover {
    transform: translateY(-4px);
}

/* ICONO */
.beneficio-icon {
    min-width: 70px;
    height: 70px;
    background: #0C26A3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.beneficio-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* TEXTO */
.beneficio-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0C26A3;
    margin-bottom: 8px;
}

.beneficio-content p {
    font-size: 15px;
    color: #0C26A3;
    margin: 0;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 767px) {

    .beneficio-card {
        padding: 25px;
    }

    .beneficio-icon {
        width: 60px;
        height: 60px;
    }

    .beneficio-content h4 {
        font-size: 16px;
    }
}



/* =========================
   BLOG CTA SECTION
========================= */

.blog-cta {
    width: 100%;
}

/* LADO IZQUIERDO */
.blog-cta-left {
    background-color: #0C26A3; /* Azul corporativo */
    min-height: 320px;
}


.blog-cta-left h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
}
.blog-cta-left p, .blog-cta-left ul{
       color: #fff;
        
}
/* BOTÓN */
.btn-blog-cta {
    display: inline-block;
    background: #fff;
    color: #0C26A3;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.btn-blog-cta i{
    line-height: 0;
    font-size: 20px;
}
.div-btns {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 13px;
}

.btn-blog-cta:hover {
    background: #071763;
    color: #fff;
    text-decoration: none;
}

/* LADO DERECHO */
.blog-cta-right {
    position: relative;
    min-height: 320px;
}

.blog-cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 767px) {

    .blog-cta-left {
        padding: 60px 20px;
        text-align: center;
    }

    .blog-cta-left h2 {
        font-size: 28px;
    }

    .blog-cta-right {
        min-height: 250px;
    }
}

.blog-cta .row{
    border-radius: 20px;
    overflow: hidden;
}