/* Contenedor de fondo */
.background-services {
    position: relative;
    width: 100%;
    height: 55vh; /* Ajuste de altura */
    overflow: hidden;
}

.fondo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sección de título superpuesta */
.section-tittle-info {
    position: absolute;
    margin-top: -15px; /* Lo sube sobre la imagen */
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 900px;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
}

/* Estilos del título */
.tittle-info {
    font-size: 24px;
    font-weight: bold;
    color: #14348a;
}


.section-servicios1 {
    margin-top: 90px;
    display: flex;
    justify-content: center;
}


.section-servicios {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.contenedor-servicios {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    background-color: #f8f8f8;
    padding: 50px;
    border-radius: 5px;
}

.imagen-servicio img {
    width: 350px; /* Ajusta el tamaño de la imagen */
    border-radius: 10px;
}

.info-servicio {
    max-width: 500px;
}

.titulo-servicio {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.caracteristicas-servicio p {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.caracteristicas-servicio i {
    color: #14348a; /* Color del icono */
    font-size: 18px;
}






.info-servicios{
    flex: 1;
   
    
}

.info-servicios i{
    float: left;
}

.tittle-servicios{
    text-align: center;
    font-size: 65px;
    margin-top: 20px;
    color: rgb(11, 11, 90);

}

.description-servicios{
    font-size: 50px;
    margin-top: 10px;
    text-align: center;
}







@media (max-width: 940px) {


    .background-services{
        
        height: 50%;
    }
    
   .fondo{
    height: 55vw;

   }


    .contenedor-servicios {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px;
        width: 100%;
    }

    .tittle-info{
       
        font-size: 15px;
    }

    .section-tittle-info{
        padding: 8px;
    }

    
}

@media (max-width: 1366px) {


    .background-services{
        
        height: 50%;
    }
    
   .fondo{
    height: 55vw;

   }


    .contenedor-servicios {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px;
        width: 100%;
    }

    .tittle-info{
       
        font-size: 15px;
    }

    .section-tittle-info{
        padding: 8px;
    }

    
}







