section.banner-inicio .div-banner{
    height: 500px;
}
section.banner-inicio .div-banner img{
    object-fit: cover;

}

/* =========================
   BLOG CTA SECTION
========================= */

.blog-cta {
    width: 100%;
}

/* LADO IZQUIERDO */
.blog-cta-left {
    background-color: #0C26A3; /* Azul corporativo */
    min-height: 320px;
}

.blog-cta-left .content {
    max-width: 480px;
}

.blog-cta-left h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    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 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-blog-cta:hover {
    background: #e6e9f5;
    color: #0C26A3;
    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;
    }
}

.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: 30px;
    box-shadow: 2px 4px 15px 0 #E7E9F6;
    transition: all .3s ease;
    height: 100%;
}

.beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: 2px 4px 15px 0 #E7E9F6;
}

/* 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;
    }
}



/* ================================
   BIO SECTION
================================ */

/* IMAGE */
.bio-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.bio-main-img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* TITLE */
.bio-title {
    font-size: 35px;
    font-weight: 700;
    color: #0C26A3;
}

/* ITEMS */
.bio-item {
    gap: 10px;
}

.bio-item-icon {
    min-width: 55px;
    height: 55px;
    background: #0C26A3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-item-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.bio-item-text p {
    margin: 0;
    font-size: 13px;
    color: #0C26A3;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .bio-title {
        font-size: 26px;
    }

    .bio-item-text p {
        font-size: 13px;
    }
}

.breadcrumb-item+.breadcrumb-item::before{
    content: ">";
    color: #453D3B;
    padding-right: .3rem;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: .3rem;
}



/*INTERDA DETALLE PRODUCTOS SINGLE*/

.btn-peso {
   position: relative;
    border-radius: 20px;
    border: 1px solid #E7E9F6;
    background: #fff;
    padding: 15px 0 0 0;
    width: 135px;
    height: 140px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease;
}

/* CONTENIDO */
.btn-peso-inner{
    position: relative;
    z-index: 2;
    text-align: center;
}
/* contenedor para evitar overflow */
.btn-peso-img{
    border-radius: 10px;
}


/* IMAGEN */
.btn-peso-img img{
    max-height: 70px;
    object-fit: contain;
     transition: transform .35s ease;
}

.btn-peso-img img{
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.btn-peso:hover .btn-peso-img img{
    transform: scale(1.2);
}

/* TEXTO */
.btn-peso-text{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #0C26A3;
   width: 100%;
   padding: 10px;
   line-height: 1.2;
   height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   EFECTO CÍRCULO (hover)
========================= */

.btn-peso::before{
    content:"";
    position:absolute;
    width:40px;
    height:40px;
    background:#0C26A3;
    border-radius:50%;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%) scale(0);
    transition: transform .8s ease;
    z-index:1;
}

.btn-peso:hover::before{
    transform:translateX(-50%) scale(10);
}

/* TEXTO EN HOVER */
/* .btn-peso:hover .btn-peso-text{
    color:#fff;
} */

/* =========================
   ESTADO ACTIVO
========================= */

.btn-peso.active{
    background:#0C26A3;
    border-color:#0C26A3;
}

.btn-peso.active .btn-peso-text{
    color:#fff;
}

#producto-img {
    max-height: 500px;
    object-fit: contain;
    transition: opacity .3s ease;
}


.product-tabs .nav-tabs .nav-link{
    font-size:22px;
    font-weight:500;
    color:#453D3B;
    border:none;
    position:relative;
}

.product-tabs .nav-tabs .nav-link.active{
    color:#0C26A3;
}

.product-tabs .nav-tabs .nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0px;
    width:100%;
    height:3px;
    background:#0C26A3;
}


.certi-logo{
    max-height:100px;
}


.custom-table{
    overflow:hidden;
    box-shadow: 2px 4px 15px 0 #E7E9F6;
        border-radius: 25px;
}

.custom-table thead th {
    background: #0C26A3;
    color: white;
    border-radius: 25px 25px 0 0;
        text-align: center;
    font-size: 20px;
    font-weight: 500;
}

.custom-table th{
    border:none;
    padding:18px;
}

.custom-table td{
    padding:18px;
    border:1px solid #ddd;
     color: #453D3B;
     font-size: 18px;
    font-weight: 400;
    
}
.custom-table td:first-child{
    font-size: 20px;
    font-weight: 600;
   
}

/* .reco-icon{
    width:60px;
    height:60px;
    background:#0C26A3;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
} */

.reco-icon img{
    max-width:60px;
}




.donde-comprar{
    background:#F5F6FB;
}

.titulo-seccion{
    font-weight:600;
    color:#0C26A3;
        font-size: 37px;
}

.logo-item{
    padding:10px;
}

.logo-card{
    background:#e9ebf2;
    border-radius:18px;
        height: 130px;
    width: 130px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
}

.logo-card img{
        max-height: 70px;
    width: auto;
    object-fit: cover;
}

.logo-card:hover{
    transform:translateY(-4px);
}






section.migaspan_tt .breadcrumb a, 
section.migaspan_tt .breadcrumb li.breadcrumb-item {
    color: #453D3B;
    font-size: 14px;
}




.img-present {
    box-shadow: 2px 4px 15px 0 #E7E9F6;
    border-radius: 25px;
    position: relative;
     background-image: url('../img/fondo-hover.svg');
    background-repeat:no-repeat;
    background-position:bottom center;
       background-size: contain;
           padding: 20px;

        height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-present span.txt_stock {
    position: absolute;
    border: 1px solid #009540;
    border-radius: 25px;
    background-color: #E6F4EC;
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 400;
    color: #00682D; 
    right: 15px;
    top: 15px;
}

.info-product .h3.product_parent {
    font-size: 14px;
    color: #0C26A3;
    font-weight: 400;
}
.info-product h2 {
    font-size: 35px;
    font-weight: 600;
    color: #0C26A3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0px 20px;
}

.info-product .content p {
    font-size: 18px;
    font-weight: 400;
    color: #5B5E6C;
}

.info-product h3.txt_size {
    font-size: 20px;
    font-weight: 500;
    color: #453D3B;
}



.list-preset {
    gap: 15px;
}

p.product-tags b, p.product-id b {
    color: #0C26A3;
}
p.product-tags, p.product-id {
    font-size: 20px;
    color: #5B5E6C;
}
.btn-asesor a {
    border-radius: 50px;
    padding: 12px 30px;
    transition: all .25s ease;
    font-size: 15px;
    font-weight: 600;
    background-color: #0C26A3;
    color: white;
    width: 100%;
    text-align: center;
}
.btn-asesor a:hover{
    background-color: #071763;
    text-decoration: none;
}
ul#productTab {
    gap: 15px;
}

section.info_produ .tab-content{
    color: #5B5E6C;
}