

/*====================================
            SERVICIOS
====================================*/

.services-overview{

    padding:120px 0;

    background:#ffffff;

}
/*====================================
        HEADER SERVICIOS
====================================*/

.services-header{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    margin-bottom:50px;

}

.services-icon{

    margin-bottom:20px;

}

.services-icon i{

    font-size:60px;

    color:#0056D6;

}

.services-title{

    text-align:center;

    max-width:850px;

}

.services-title span{

    display:block;

    color:#0056D6;

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.services-title h2{

    font-size:52px;

    font-weight:800;

    color:#0B1F3A;

    line-height:1.2;

}
/*====================================
        DESCRIPCIÓN
====================================*/

.services-description{

    max-width:850px;

    margin:0 auto 80px;

    text-align:center;

}

.services-description p{

    font-size:17px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}

nav ul li a.pdf-link{

    color:#E53935;

    font-weight:700;

}

/*====================================
            SECTORES
====================================*/


.service-detail{

    padding:10px;
}

.detail-header{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:30px;

    padding-bottom:20px;

    border-bottom:1px solid #e5e5e5;
}

.detail-header i{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#0056D6;

    color:white;

    font-size:40px;
}

.detail-header span{

    color:#0056D6;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;
}

.detail-header h2{

    font-size:42px;

    color:#0B1F3A;

    margin-top:5px;
}

.detail-intro{

    font-size:17px;

    line-height:1.9;

    color:#555;

    margin-bottom:35px;
}

.detail-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

    margin-bottom:40px;
}

.detail-card{

    background:#f8fbff;

    padding:25px;

    border-radius:15px;

    border-left:4px solid #0056D6;
}

.detail-card h3{

    color:#0B1F3A;

    margin-bottom:15px;
}

.detail-card ul{

    list-style:none;
}

.detail-card li{

    margin-bottom:10px;

    color:#555;
}

.detail-card li::before{

    content:"✓ ";

    color:#0056D6;

    font-weight:bold;
}

.gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.gallery-item{

    text-align:center;

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:18px;

    transition:.4s;

}

.gallery-item img:hover{

    transform:scale(1.05);

}

.gallery-item h4{

    margin-top:12px;

    color:#0B1F3A;
}

.close-modal{

    position:absolute;

    top:20px;
    right:25px;

    font-size:32px;

    font-weight:700;

    color:#666;

    cursor:pointer;

    transition:.3s;

}

.close-modal:hover{

    color:#0056D6;
    transform:rotate(90deg);

}



.modal{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.8);

    z-index:99999;

    overflow-y:auto;

}

.modal-content{

    background:#fff;

    width:90%;

    max-width:1200px;

    margin:40px auto;

    padding:40px;

    border-radius:20px;

    position:relative;

}







.service-card{

    cursor:pointer;

}

.service-card:hover{

    transform:translateY(-8px);

}

.sectors-grid{

    display:grid;

    grid-template-columns:repeat(6, 160px);

    justify-content:center;

    gap:15px;

    margin-bottom:60px;

}

.sector-item{

    background:#ffffff;

    border-radius:15px;

    padding:20px 10px;

    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,.06);

    transition:.3s;

    min-height:120px;

}

.sector-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 35px rgba(0,0,0,.12);

}

.sector-item i{

    font-size:45px;

    color:#0056D6;

    margin-bottom:18px;

}

.sector-item h3{

    font-size:18px;

    font-weight:600;

    color:#0B1F3A;

}

/*====================================
        MISIÓN Y VISIÓN
====================================*/
.mission-vision{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

    max-width:1200px;

    margin:auto;

}

.mv-card{

    min-height:180px;

    padding:20px 25px;

}
.mv-card:hover{

    transform:translateY(-6px);

}

.mv-card i{

    font-size:40px;

    color:#0056D6;

    margin-bottom:15px;

}

.mv-card h3{

    font-size:26px;

    color:#0B1F3A;

    margin-bottom:12px;

    font-weight:700;

}

.mv-card p{

    font-size:15px;

    line-height:1.7;

    color:#555;

}

/*====================================
        ANIMACIONES
====================================*/

.sector-item,
.mv-card{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*====================================
            RESPONSIVE
====================================*/

@media(max-width:1200px){

    .sectors-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:992px){

    .services-header{

        flex-direction:column;

        text-align:center;

    }

    .services-title{

        text-align:center;

    }

    .services-title h2{

        font-size:34px;

        max-width:100%;

    }

    .sectors-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .mission-vision{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .services-title h2{

        font-size:28px;

    }

    .services-description p{

        font-size:16px;

    }

    .sectors-grid{

        grid-template-columns:1fr;

    }

}

/*====================================
        TITULO SERVICIOS
====================================*/

.services-list .section-title{

    text-align:center;

    max-width:900px;

    margin:0 auto 60px;

}

.services-list .section-title span{

    display:inline-block;

    color:#0056D6;

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;

    position:relative;

}

.services-list .section-title span::after{

    content:"";

    display:block;

    width:60px;

    height:3px;

    background:#0056D6;

    margin:10px auto 0;

    border-radius:50px;

}

.services-list .section-title h2{

    font-size:48px;

    font-weight:800;

    color:#0B1F3A;

    line-height:1.2;

    margin-bottom:20px;

}

.services-list .section-title p{

    font-size:18px;

    color:#666;

    line-height:1.8;

    max-width:750px;

    margin:0 auto;

}

@media(max-width:768px){

    .services-list .section-title h2{

        font-size:34px;

    }

    .services-list .section-title p{

        font-size:16px;

    }

}
/*====================================
        SERVICIOS LISTA
====================================*/

.services-list{

    padding:100px 0;

    background:#f7f9fc;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));

    gap:25px;

    margin-top:50px;

}

/* TARJETA */

.service-card{

    background:#ffffff;

    border-radius:20px;

    padding:30px 25px;

    min-height:260px;

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    border-top:4px solid #0056D6;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

/* EFECTO DECORATIVO */

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        #0056D6,
        #33A1FF
    );

}

/* ICONO */

.service-card i{

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #0056D6,
        #1E88FF
    );

    color:white;

    font-size:30px;

    margin-bottom:20px;

    box-shadow:0 10px 20px rgba(0,86,214,.25);

}

/* TITULO */

.service-card h3{

    font-size:22px;

    font-weight:700;

    color:#0B1F3A;

    text-align:center;

    line-height:1.3;

    margin-bottom:12px;

    min-height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

}

/* DESCRIPCION */

.service-card p{

    font-size:15px;

    line-height:1.7;

    color:#666;

    text-align:center;

    max-width:280px;

    margin:0 auto;

}

/* RESPONSIVE */

@media(max-width:1200px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        min-height:230px;

    }

}

