.elementor-29 .elementor-element.elementor-element-af9d1a9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-7dcf291 *//* =========================
   CONTENEDOR GENERAL
========================= */
.reserva-wrapper {
    max-width: 900px;
    margin: auto;
    font-family: Arial, sans-serif;
}

/* =========================
   STEPS
========================= */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wizard-steps .step {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-bottom: 3px solid #ddd;
    font-size: 14px;
}

.wizard-steps .activo {
    border-color: #2e7d32;
    font-weight: bold;
}

/* =========================
   PASOS
========================= */
.paso {
    display: none;
}

.paso.activo {
    display: block;
}

/* =========================
   GRID FECHAS
========================= */
.fechas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.campo {
    display: flex;
    flex-direction: column;
}

.campo input,
.campo select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* =========================
   SELECT CUSTOM (HORAS)
========================= */
.custom-select {
    position: relative;
}

.custom-select .selected {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
}

.custom-select .options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    display: none;
    z-index: 10;
}

.custom-select.open .options {
    display: block;
}

.option {
    padding: 8px;
    cursor: pointer;
}

.option:hover {
    background: #f0f0f0;
}

.selected-option {
    background: #2e7d32;
    color: #fff;
}

/* =========================
   BOTONES
========================= */
.botones-navegacion {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.btn-adelante,
.btn-atras {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    min-width: 120px;
}

.btn-adelante {
    background: #2e7d32;
    color: white;
}

.btn-atras {
    background: #ccc;
}

/* =========================
   SERVICIOS
========================= */
.servicios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.servicio-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.servicio-card:hover {
    border-color: #2e7d32;
}

.servicio-card input {
    display: none;
}

.servicio-card input:checked + .servicio-contenido {
    border: 2px solid #2e7d32;
    border-radius: 10px;
    padding: 10px;
}

/* =========================
   FORM DATOS
========================= */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-grid input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* =========================
   CONFIRMACIÓN
========================= */
.confirmacion-wrapper {
    text-align: center;
}

.card-confirmacion {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin: 20px auto;
    max-width: 400px;
}

.id-reserva {
    font-weight: bold;
    color: #2e7d32;
}

.total {
    font-size: 20px;
    margin-top: 10px;
}

.alerta {
    background: #fff3cd;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
}

.acciones-finales {
    margin-top: 20px;
}

.btn-descargar,
.btn-volver {
    padding: 10px 20px;
    margin: 5px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.btn-descargar {
    background: #1976d2;
    color: #fff;
}

.btn-volver {
    background: #777;
    color: #fff;
}

/* =========================
   LOADER 🔥
========================= */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #2e7d32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}/* End custom CSS */