/* Estilos para la sección de salas */
.salas {
    background: #f8f9fa;
    position: relative; /* Asegurar que esté en el flujo normal */
    z-index: 2; /* Por encima del hero */
}

.salas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sala-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sala-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.sala-img {
    height: 250px;
    overflow: hidden;
}

.sala-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sala-item:hover .sala-img img {
    transform: scale(1.1);
}

.sala-info {
    padding: 1.5rem;
}

.sala-info h3 {
    color: #e63946;
    margin-bottom: 1rem;
}

.sala-info ul {
    list-style: none;
    margin-top: 1rem;
}

.sala-info ul li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.sala-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e63946;
    font-weight: bold;
}