/* Ajustes para Mobile na seção #services2 */

@media only screen and (max-width: 768px) {
    #services2 {
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 90vh;
    }

    #services2::before {
        background-position: 10% 50%;
        background-size: cover;
        filter: grayscale(20%) brightness(20%);
    }

    #services2 h2 {
        font-size: 1.8rem;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    #services2 h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    #services2 p {
        font-size: 1rem;
        margin-bottom: 15px;
        text-align: justify;
    }

    #services2 p.lead {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    #services2 .btn-warning {
        padding: 15px 20px;
        font-size: 1rem;
        margin-bottom: 20px;
    }

    #services2 img {
        max-width: 90%;
        height: auto;
        margin: 10px auto;
    }

    #services2 .equipe {
        max-width: 100%;
        border-radius: 10px;
        transform: rotate(0deg);
        margin: 15px 0;
    }

    #services2 .equipe:hover {
        transform: scale(1.05) rotate(0deg);
    }
}