/*=========================================================
CATÁLOGO
=========================================================*/

.catalog{

    padding:100px 0;

    background:#F8FAFD;

}

/*=========================================================*/

.catalog-header{

    max-width:900px;

    margin:0 auto 70px;

}

/*=========================================================
BADGE DEL CATÁLOGO
=========================================================*/

.section-badge{

    display:inline-block;

    color:#0F5BFF;

    font-size:16px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:4px;

    position:relative;

    padding-bottom:14px;

    margin-bottom:18px;

}

.section-badge::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:70px;

    height:3px;

    background:#0F5BFF;

    border-radius:20px;

}

/*=========================================================*/

.catalog-header .section-title{

    margin-top:18px;

    margin-bottom:22px;

    font-size:48px;

    font-weight:800;

    color:#082A63;

    line-height:1.2;

}

/*=========================================================*/

.catalog-header .section-subtitle{

    max-width:850px;

    margin:0 auto;

    font-size:22px;

    line-height:1.8;

    color:#5B6475;

}

/*=========================================================*/

.catalog-slider{

    min-height:220px;

    border:2px dashed #D9E3F5;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#FFFFFF;

}

/*=========================================================
CARRUSEL PREMIUM
=========================================================*/

.catalog-wrapper{

    position:relative;

    width:100%;

    margin-top:60px;

    padding:0 70px;

}

.catalogSwiper{

    width:100%;

    overflow:hidden;

}

.catalogSwiper .swiper-wrapper{

    align-items:stretch;

}

.catalogSwiper .swiper-slide{

    height:auto;

}
/*=========================================================
TARJETAS
=========================================================*/

.catalog-card{

    position:relative;

    background:#FFFFFF;

    border-radius:20px;

    overflow:hidden;

    height:100%;

    border:1px solid #E7ECF3;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:all .35s ease;

    cursor:pointer;

}

.catalog-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

    border-color:#0F5BFF;


}
.catalog-card img{

    width:100%;

    height:230px;

    object-fit:contain;

    padding:35px;

    transition:.40s;

    background:#FFFFFF;

}

.catalog-card:hover img{

    transform:scale(1.08);

}

.catalog-info{

    padding:10px 25px 30px;

    text-align:center;


}

.catalog-info h3{

    font-size:28px;

    font-weight:700;

    color:#0A2558;

    margin-bottom:12px;

}

.catalog-info p{

    font-size:16px;

    color:#6B7280;

    line-height:1.7;

    min-height:65px;

}
/*=========================================================
FLECHAS
=========================================================*/

.catalog-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#FFFFFF;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

    z-index:20;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.30s;

}

.catalog-arrow:hover{

    background:#0F5BFF;

    color:#FFFFFF;

}

.catalog-prev{

    left:0;

}

.catalog-next{

    right:0;

}

.catalog-arrow i{

    font-size:24px;

}

.catalog-button{

    opacity:0;

    transform:translateY(15px);

    transition:.35s;

    margin-top:20px;

}

.catalog-card:hover .catalog-button{

    opacity:1;

    transform:translateY(0);

}

.catalog-button{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:#0F5BFF;

    color:#FFFFFF;

    font-weight:600;

    font-size:15px;

}

.catalog-button i{

    transition:.30s;

}

.catalog-card:hover .catalog-button i{

    transform:translateX(5px);

}