body {
    font-family: Arial, sans-serif;
    background: #fafafa;
    margin: 0;
    padding: 20px;
}

.titulo {
    text-align: center;
    margin-bottom: 10px;
    font-size: 32px;
    color: #333;
}
.subtitulo {
	text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    color: #333;

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

h2 {
    margin: 10px 0 5px;
    font-size: 20px;
}

.dim {
    color: #666;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #0077ff;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 10px;
}

.btn:hover {
    background: #005fcc;
}

.estado {
     display: block;
    text-align: center;
    margin: 8px auto;
    white-space: nowrap;   /* ← evita que se parta en dos líneas */
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.disponible {
    background: #d4f8d4;
    color: #1a7f1a;
}

.reservada {
    background: #fff3c4;
    color: #a67c00;
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

#lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
