/* ========================================
   MENU OPCOES - ESTILOS
   ======================================== */

/* Configuração geral da row */
.mmenu-opcoes {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Estilo das colunas */
.mmenu-opcoes .mmenu-item {
    border-right: 1px solid #e8e8e8;
    padding: 0;
    display: flex;
    align-items: stretch;
}

/* Remove border-right da última coluna */
.mmenu-opcoes .mmenu-item:last-child {
    border-right: none;
}

/* Estilo dos links */
.mmenu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    padding: 20px 12px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.mmenu-link:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
}

/* Estilo dos ícones */
.mmenu-link i {
    font-size: 32px;
    color: #2d6a3e;
    margin-bottom: 10px;
    display: block;
}

/* Font Awesome Light - Reproduz a versão light com font-weight 300 */
.mmenu-link i.fa-light {
    font-weight: 300 !important;
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free" !important;
}

/* Garantir que a variante light seja aplicada corretamente */
.fa-light {
    font-weight: 300 !important;
}

/* Estilo do texto */
.mmenu-link span {
    font-size: 12px;
    font-weight: bold;
    color: #333333;
    line-height: 1.4;
    word-wrap: break-word;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Responsividade para telas pequenas (mobile) */
@media (max-width: 575.98px) {
    .mmenu-link {
        padding: 15px 10px;
    }

    .mmenu-link i {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .mmenu-link span {
        font-size: 11px;
    }
}

/* Responsividade para tablets */
@media (min-width: 576px) and (max-width: 767.98px) {
    .mmenu-link {
        padding: 18px 12px;
    }

    .mmenu-link i {
        font-size: 30px;
    }

    .mmenu-link span {
        font-size: 12px;
    }
}

/* Responsividade para desktops */
@media (min-width: 768px) {
    .mmenu-link {
        padding: 22px 15px;
    }

    .mmenu-link i {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .mmenu-link span {
        font-size: 13px;
    }
}
