.service-icon {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 48px;
    color: #ff0099;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: #333;
}

.service-icon img {
    max-width: 80px;
    height: auto;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

/* Estilos específicos para os ícones de serviços */
.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 767px) {
    .service-card {
        padding: 20px;
    }
    
    .service-icon img {
        max-width: 60px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
}
