:root {
    --blanco        : #ffffff;
    --azul2         : #29A2D1;
    --verdeClaro    : #5FBC2E;
    --verdeClaroRgba: #F0FAEA;
}

/* Servicios pagina principal */
.seccion-servicios {
    background-color: var(--verdeClaroRgba);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 8rem;
    gap: 3rem;
    position: relative;
}

/* General */
.tarjetas {
    display: grid;
    gap: 3rem;
}

@media screen and (min-width: 1500px) {
    .tarjetas {
        display: flex;
        justify-content: center;
        row-gap: 3.5rem;
        padding: 1rem 0 0;
    }
}

.tarjeta {
    background-color: var(--blanco);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.20);
    width: 19%;
}

.tarjeta h3 {
    font-size: 18px;
    font-family: 'Roboto Bold';
    color: var(--azul2);
    text-align: center;
}

.tarjeta .parrafo-leyenda {
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Roboto Bold';
    color: var(--verdeClaro);
}

.imagen-ind {
    margin: 1rem 0;
}

.imagen-ind .img-servicio-mov {
    width: 100%;
    border-radius: 1rem;
}

@media (max-width: 1499px) {
    .imagen-ind .img-servicio-mov {
        width: 100%;
    }

    .tarjeta {
        width: 100%;
    }

    .tarjetas {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        width: 85%;
    }
}

@media screen and (max-width: 580px) {
    .imagen-ind .img-servicio-mov {
        width: 100%;
    }
}

.tarjeta p {
    line-height: 1.5;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 380px) {
    .tarjetas {
        padding: 0;
    }

    .tarjeta {
        width: 100%;
    }

    .imagen-ind .img-servicio-mov{
        width: 100%;
    }

    .tarjeta p {
        width: 100%;
    }
}

@media (max-width: 300px) {
    .imagen-ind .img-servicio-mov {
        width: 100%;
    }
}

@media (max-width: 850px) {
    .tarjetas {
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 2000px) {
    .tarjeta {
        padding: 2rem 1rem;
    }
}
