.nuestros-servicios-container {
    height: auto;
    width: 100vw;
    background-color: #427c7d;
    font-family: "Montserrat";
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5vw 0;
    gap: 2vw;
}

.nuestros-servicios-container .title {
    color: white;
}
.nuestros-servicios-container .subtitle {
    color: white;
    width: 60%;
    text-align: center;
    margin-bottom: 0;
    font-size: clamp(1rem, 1.5vw, 3rem);
    font-weight: 400;
    text-wrap: balanced;
}
.nuestros-servicios-container .servicio-cards-container {
    display: flex;
    gap: 2vw;
}
.servicio-card {
    position: relative;
    padding: 1.5vw;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    width: 18vw;
    height: 35vw;
}
.servicio-card img {
    width: 4vw;
    filter: brightness(1.2) contrast(0.6);
    margin-bottom: 1vw;
}
.servicio-card .servicio-title {
    width: 100%;
    color: #427c7d;
    font-size: clamp(1rem, 2vw, 3rem);
    font-weight: 700;
    margin-bottom: 2vw;
    text-align: center;
    line-height: 1;
}
.servicio-card .servicio-items {
    list-style: disc;
    width: 80%;
}
.servicio-card .servicio-items li {
    margin-bottom: 1vw;
    font-size: clamp(0.9rem, 1.2vw, 2rem);
    line-height: 1.2;
    font-weight: 400;
}
.servicio-card .servicio-btn {
    position: absolute;
    background-color: #f0831f;
    bottom: 0;
    margin-bottom: 1.5vw;
    color: white;
    padding: 0.5vw 1vw;
    font-weight: 800;
    border-radius: 7px;
    font-size: clamp(0.9rem, 1vw, 1.7rem);
}
.servicio-card .servicio-btn:hover {
    background-color: #b56e31;
}

@media (max-width: 768px) {
    .nuestros-servicios-container .servicio-cards-container {
        flex-direction: column;
        gap: 4vw;
        margin-top: 4vw;
    }
    .nuestros-servicios-container {
        gap: 4vw;
    }
    .nuestros-servicios-container .title {
        font-size: clamp(1rem, 10vw, 3rem);
    }

    .nuestros-servicios-container .subtitle {
        width: 80%;
        font-size: clamp(1rem, 4vw, 3rem);
    }
    .servicio-card {
        width: 80vw;
        height: 90vw;
        min-height: 65vw;
        padding-top: 5vw;
        padding-bottom: 5vw;
        gap: 2vw;
    }
    .servicio-card img {
        width: 10vw;
        margin-bottom: 2vw;
    }
    .servicio-card .servicio-title {
        margin-bottom: 2vw;
        font-size: clamp(1rem, 4vw, 3rem);
    }
    .servicio-card .servicio-items {
        width: 67%;
    }
    .servicio-card .servicio-items li {
        margin-bottom: 1vw;
        font-size: clamp(0.9rem, 4vw, 3rem);
    }
    .servicio-card .servicio-btn {
        margin-bottom: 5vw;
        padding: 1.5vw 2vw;
        border-radius: 5px;
        font-size: clamp(0.9rem, 3.5vw, 3rem);
    }
}
