body {
}

.menu-card {
    background: rgba(30, 30, 30, 0.85);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    transition: transform 0.2s;
    min-height: 220px; /* Ajusta este valor según lo que necesites */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
    .menu-card .btn {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        white-space: normal;
    }

.menu-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

@media (max-width: 991.98px) {
    .menu-card {
        margin-bottom: 16px;
    }
}

@media (max-width: 767.98px) {
    .menu-card {
        min-height: 120px;
        margin-bottom: 24px;
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }
    .row.justify-content-center.gap-4 {
        flex-direction: column !important;
        gap: 0 !important;
        align-items: center;
    }
    .col-md-3 {
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .menu-card .btn {
        font-size: 1.1rem;
        padding: 18px 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .row.justify-content-center.gap-4 {
        flex-direction: row !important;
        gap: 24px !important;
        align-items: stretch;
    }
    .col-md-3 {
        max-width: 32%;
        flex: 0 0 32%;
        padding-left: 8px;
        padding-right: 8px;
        display: flex;
        align-items: stretch;
    }
    .menu-card {
        min-height: 220px;
        height: 220px;
        margin-bottom: 0;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.18);
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .menu-card .btn {
        font-size: 1.15rem;
        padding: 22px 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

