/* Importar fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    background-color: #f3d2e0;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    color: #736f6f;
}

#app-container {
    width: 100%;
    max-width: 480px;
    background: rgb(255, 255, 255);
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 0 30px rgba(0,0,0,0.03);
}

h1 { color: #f06292; text-align: center; margin: 0; font-size: 26px; }
.desc { text-align: center; font-size: 14px; color: #888; margin: 10px 0 20px 0; }

/* Fotos en paralelo */
.fotos-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.fotos-row img {
    width: 50%;
    height: 130px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid #fce4ec;
}

/* Botones Principales */
.btn-whatsapp {
    width: 95%;
    padding: 10px;
    border-radius: 40px;
    border: none;
    background: #25D366;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 5px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-detalles {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    border: 2px solid #BDE0FE;
    background: transparent;
    color: #0277bd;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 25px;
    font-size: 13px;
    transition: 0.3s;
}

/* Cuadrícula de Números */
.grid-container {
    background: #fdfafb;
    border-radius: 25px;
    padding: 10px;
}

#grid {
    display: grid;
    gap: 5px;
    justify-content: center;
}

.num {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.2s;
}

.disponible {
    background: #E3F2FD;
    color: #1e88e5;
}

.ocupado {
    background: #FCE4EC;
    color: #d81b60;
    opacity: 0.8;
}

/* Modal Estilo Glassmorphism */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    z-index: 1000;
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 25px;
    width: 85%;
    max-width: 400px;
    border-radius: 30px;
    max-height: 75vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.modal-content h3 {
    color: #f06292;
    font-size: 10px;
    margin-top: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.modal-content p, .modal-content li {
    font-size: 10px;
    line-height: 1.6;
    color: #666;
}

.modal-content ul { padding-left: 18px; margin: 10px 0; }