/* --- TU ESTILO ORIGINAL (Mantenlo igual) --- */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f3e5f5;
    margin: 0;
    color: #4a148c;
}

.main-header {
    background: linear-gradient(135deg, #ce93d8, #8e24aa);
    color: white;
    text-align: center;
    padding: 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); }

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 150px;
    background: #e1bee7;
    gap: 2px;
}

.img-slot {
    background-size: cover;
    background-position: center;
    background-color: #f3e5f5;
    transition: opacity 0.3s;
}

.card-body { padding: 1.5rem; text-align: center; }

.btn-interact {
    background: #7b1fa2;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-interact:hover { background: #4a148c; }

/* --- NUEVOS ESTILOS PARA EL MODAL (Combinando tu estilo) --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(74, 20, 140, 0.85); /* Morado profundo transparente */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 3px solid #ce93d8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-content h2 { 
    color: #8e24aa; 
    margin-top: 0;
    border-bottom: 2px solid #f3e5f5;
    padding-bottom: 10px;
}

.btn-cerrar-modal {
    background: #7b1fa2;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: bold;
}