.chooseService {
    display: none; /* REMOVER  */
    padding: 2rem 15px;
    text-align: center;
}

.chooseService h1 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.chooseService h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.chooseService h4 {
    font-family: "DM Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.chooseService p {
    font-family: "DM Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333333;
    margin-top: 1.8rem;
    margin-bottom: 3rem;
}

.chooseService a {
    background: var(--red);
    color: var(--white);
    padding: 15px 60px;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    font-weight: 800;
    display: inline-block;
}

.cardsServices {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.itemCard {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 0 0 calc(33.333% - 2rem); 
    max-width: calc(33.333% - 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .itemCard {
        flex: 0 0 calc(50% - 2rem); 
        max-width: calc(50% - 2rem);
    }
}

@media screen and (max-width: 576px) {
    .itemCard {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .chooseService h1 {
        font-size: 2rem;
    }
    
    .chooseService h3 {
        font-size: 1.4rem;
    }
    
    .chooseService a {
        padding: 12px 40px;
        font-size: 18px;
    }
}