.menu-item {
    text-decoration: none;
    color: #1a237e;
    font-weight: bold;
    display: block;
}

.icon-circle {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(45deg, #800000, #ba8484);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
}

.menu-item:hover .icon-circle {
    transform: scale(1.1);
}

/* 📱 Ajuste para celular */
@media (max-width: 576px) {
    .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }
}