.categoria-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

.categoria-item:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.05);
}

.categoria-icon {
    background-color: #f8f9fa;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.categoria-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.categoria-item h3 {
    color: #1a237e;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .categoria-icon {
        width: 80px;
        height: 80px;
    }

    .categoria-icon img {
        width: 40px;
        height: 40px;
    }

    .categoria-item h3 {
        font-size: 0.875rem;
    }
} 