.tipoServicio {
    font-family: Oswald-Light;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}

.seccionPrincipal {
    min-height: 90vh;
    padding: 10px;
}

.contenedorColaborador {
    justify-content: center;
    grid-template-columns: repeat(2, 400px);
    gap: 15px;
    width: 50vw;
    padding: 10px;
    background-color: #FAFBFD;
    display: flex;
    align-items: center;
    margin: 20px;
    border: 1px solid silver;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 17px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    min-height: 450px;
}

.tarjetaDetallesColaborador p {
    font-size: 14px;
}

.tarjetaContenedorImagen img {
    max-width: 100%;
    display: flex;
    border: 1px solid silver;
    transition: filter ease-in-out 2s;
}

.tarjetaContenedorImagen img:hover {
    filter: saturate(150%);
}

.tarjetaContenedorImagen {
    width: 30VW;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid silver;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.tarjetaContenedorImagen:hover {
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 1);
}

.tarjetaDetallesColaborador {
    display: block;
    margin: auto;
    margin-left: 10px;
    letter-spacing: 0.5px;
    font-family: Oswald-Light;
    font-weight: normal;
    font-size: 18px;
    font-family: Oswald-Light;
}

.tarjetaDetallesColaborador p,
.tarjetaDetallesColaborador h4 {
    font-family: Oswald-Light;
    text-align: center;
}

.tituloDetalles {
    align-items: center;
    text-align: center;
    color: gray;
}

.lineaDivisora {
    padding: 0;
    margin: 5px;
    margin-bottom: 0;
}

.tarjetaServicios h4 a {
    color: #191919;
    transition: color 2s;
}

.tarjetaServicios h4 a:hover {
    color: blue;
}

.contenedorLineaDivisora {
    margin-left: 150px;
    margin-right: 150px;
}


/* RESPONSIVE */

@media (max-width: 1280px) {
    .contenedorColaborador {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        flex-direction: column;
        width: 80vw;
        margin-top: 30px;
    }
    .tarjetaContenedorImagen {
        width: 50VW;
    }
    .tarjetaContenedorImagen img {
        background-color: none;
        border: 0;
        width: 100vw;
    }
    .tarjetaDetallesColaborador {
        margin: auto;
    }
}