/* =========================================================
   HOME
   TARJETAS DESTACADAS
========================================================= */

.services{

    padding:4rem 0 5rem;

    background:#ffffff;

}

.services-wrapper{

    width:min(1200px,92%);

    margin:0 auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:2rem;

    align-items:stretch;

}

/* =========================================================
   TARJETAS HOME
========================================================= */

.service-card{

    display:flex;

    flex-direction:column;

    background:#ffffff;

    border:1px solid rgba(32,92,184,.15);

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:all .30s ease;

    height:100%;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

    border-color:rgba(32,92,184,.35);

}

/* =========================================================
   CABECERA
========================================================= */

.card-icon{

    width:72px;

    height:72px;

    margin:1.75rem auto 1rem;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#1b4fa8,#2d7ff9);

    color:#ffffff;

    font-size:2rem;

    box-shadow:0 8px 18px rgba(27,79,168,.25);

}

.service-card h3{

    margin:0;

    padding:0 1.5rem;

    text-align:center;

    font-size:1.45rem;

    font-weight:700;

    color:#153b83;

    line-height:1.25;

    min-height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

}

/* =========================================================
   IMAGEN DE LA TARJETA
========================================================= */

.service-card img{

    display:block;

    width:100%;

    height:240px;

    object-fit:cover;

    object-position:center;

    margin:1.25rem 0 0;

    border-top:1px solid rgba(32,92,184,.08);

    border-bottom:1px solid rgba(32,92,184,.08);

    transition:transform .35s ease;

}

.service-card:hover img{

    transform:scale(1.03);

}

/* =========================================================
   DESCRIPCIÓN
========================================================= */

.service-home-description{

    flex:1;

    margin:1.5rem 1.75rem;

    color:#4b5563;

    font-size:1rem;

    line-height:1.7;

    text-align:center;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:115px;

}

/* =========================================================
   FOOTER TARJETA
========================================================= */

.card-footer{

    margin-top:auto;

    padding:1.25rem 1.75rem 1.75rem;

    border-top:1px solid rgba(32,92,184,.10);

    text-align:center;

}

/* =========================================================
   ENLACE
========================================================= */

.service-more{

    display:inline-flex;

    align-items:center;

    gap:.55rem;

    color:#1b4fa8;

    font-weight:600;

    font-size:.96rem;

    text-decoration:none;

    transition:all .30s ease;

}

.service-more i{

    transition:transform .30s ease;

}

.service-card:hover .service-more{

    color:#2d7ff9;

}

.service-card:hover .service-more i{

    transform:translateX(6px);

}

/* =========================================================
   RESPONSIVE
========================================================= */

/* =========================================================
   TABLETS
========================================================= */

@media (max-width: 992px){

    .services-wrapper{

        grid-template-columns:repeat(2,1fr);

        gap:1.75rem;

    }

}

/* =========================================================
   MÓVILES
========================================================= */

@media (max-width: 768px){

    .services{

        padding:3rem 0;

    }

    .services-wrapper{

        grid-template-columns:1fr;

        gap:1.5rem;

    }

    .service-card{

        max-width:560px;

        margin:0 auto;

    }

    .service-card h3{

        font-size:1.30rem;

        min-height:auto;

    }

    .service-card img{

        height:220px;

    }

    .service-home-description{

        margin:1.25rem 1.50rem;

        min-height:auto;

        font-size:.98rem;

        line-height:1.6;

    }

    .card-footer{

        padding:1rem 1.5rem 1.5rem;

    }

}

/* =========================================================
   MÓVILES PEQUEÑOS
========================================================= */

@media (max-width:480px){

    .service-card img{

        height:200px;

    }

    .card-icon{

        width:64px;

        height:64px;

        font-size:1.75rem;

    }

    .service-card h3{

        font-size:1.15rem;

        padding:0 1.25rem;

    }

}