.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(25% - 2rem);
    background-color: transparent;
    color: #b5b5b5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;

    border: 1px solid rgba(224, 217, 1, 0.481);
    /* borda fininha e discreta */
    box-shadow: 0 2px 6px rgba(208, 208, 208, 0.1);
    /* sombra suave */
}


.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-img {
    width: 100px;
    height: auto;
    margin: 0 auto 1rem auto;
    display: block;
}

.service-icon {
    font-size: 2.5rem;
    color: #dfdf4f;
    margin-bottom: 1rem;
}

.service-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.service-description {
    font-size: 1.7rem;
    color: #727272;
}

/* Responsivo */
@media (max-width: 1024px) {
    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
    }
}