.services-section {
    padding: 50px 20px;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.service-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.service-container:hover {
    transform: translateY(-5px);
}

.service-item {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid #dddddd00;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.service-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0);
}

.service-item:hover img {
    transform: scale(1.07);
}

.service-item-title {
    font-size: 16px;
    font-weight: 600;
    /* Negrito */
    color: #272727;
    text-decoration: none;
    position: relative;
    padding: 0 5px;
    transition: all 0.4s ease;
}

.service-item-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f1c40f;
    transition: width 0.3s ease;
}

.service-container:hover .service-item-title {
    color: #f1c40f;
    transform: scale(1.05);
    /* Zoom suave */
}

.service-container:hover .service-item-title::after {
    width: 100%;
    /* Sublinhado que cresce do centro */
}

@media (max-width: 425px) {
    .services-grid {
        flex-direction: row;
        align-items: center;
    }
    .service-container {
        margin-bottom: 10px;
    }
    .service-item {
        width: 40px;
        height: 40px;
    }
    .service-item-title {
        font-size: 10px;
    }
}

@media (max-width: 320px) {
    .service-item {
        width: 40px;
        height: 40px;
    }
    .service-item-title {
        font-size: 10px;
    }
}

@media (max-width: 450px) {
    .service-item {
        width: 120px;
        height: 120px;
    }
    .service-item-title {
        font-size: 12px;
    }
}