.elementor-2382 .elementor-element.elementor-element-2e1bfa66{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-2382 .elementor-element.elementor-element-2e1bfa66 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-2382 .elementor-element.elementor-element-a4c7f88{width:100%;max-width:100%;}body.elementor-page-2382:not(.elementor-motion-effects-element-type-background), body.elementor-page-2382 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E4E1D9;}:root{--page-title-display:none;}/* Start custom CSS *//* Contenedor Principal */
.booking-container {
    display: flex;
    gap: 40px;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

/* Títulos con The Season */
.booking-container h2, .booking-container h3 {
    font-family: 'The Season', serif;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Menú de Servicios Izquierda */
.services-column {
    flex: 1;
    max-width: 450px;
    max-height: 80vh;
    overflow-y: auto;
}

.service-group { margin-bottom: 30px; }

.service-button {
    width: 100%;
    text-align: left;
    padding: 15px;
    margin: 5px 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: 0.3s all ease;
    display: flex;
    justify-content: space-between;
}

.service-button:hover {
    background-color: #2a2a2a;
    color: #fff;
    padding-left: 25px;
}

/* Columna Calendario Derecha */
.calendar-column {
    flex: 1.5;
    background: #fafafa;
    border: 1px solid #eee;
    min-height: 700px;
    position: sticky;
    top: 20px;
}

#booking-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: none; /* Se activa al hacer click */
}

.placeholder-text {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #888;
    text-align: center;
    padding: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-container { flex-direction: column; }
    .calendar-column { position: static; }
}/* End custom CSS */