/**
 * ========================================================================
 * ARCHIVO: reserva-express.css
 * PROYECTO: MOTELWEB.VIP
 * VERSIÓN: 3.1.0
 * FECHA: 2026-09-26
 * DESCRIPCIÓN: Estilos del módulo "Reserva Express" como módulo autónomo.
 *              Altura mínima. Título + subtítulo + cápsula.
 * ========================================================================
 */

/* === Wrapper del módulo (altura mínima) === */
.modulo-reserva-express {
    position: relative;
    z-index: 5;
    padding: 0;
    margin: 0;
    min-height: 0;
}

/* El .modulo-general trae padding-bottom: 50px por default.
   Lo neutralizamos solo en reserva express. */
.modulo-reserva-express.modulo-general {
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Reducir el aire entre título, subtítulo y cápsula */
.modulo-reserva-express .subtitulo {
    margin-bottom: 0;
}

.modulo-reserva-express .subtitulo h2 {
    margin-bottom: 5px;
}

.modulo-reserva-express p.texto-modulo {
    margin-bottom: 8px;
}

/* === Wrapper de alineación (solo afecta a la cápsula) === */
.reserva-align-wrapper {
    margin-top: 10px;
}

.reserva-align-auto .nxs-reserva-contenedor,
.reserva-align-center .nxs-reserva-contenedor {
    margin-left: auto;
    margin-right: auto;
}

.reserva-align-left .nxs-reserva-contenedor {
    margin-left: 0;
    margin-right: auto;
}

.reserva-align-right .nxs-reserva-contenedor {
    margin-left: auto;
    margin-right: 0;
}

/* === Contenedor base (desktop) === */
.nxs-reserva-contenedor {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #D4AF37;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    max-width: 650px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.nxs-inputs-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 5px;
}

.nxs-input-item {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.nxs-reserva-contenedor input {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 5px !important;
    font-size: 0.9rem !important;
    height: auto !important;
    width: 100%;
    text-align: center;
}

.nxs-reserva-contenedor input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.nxs-reserva-contenedor .separador {
    width: 1px;
    height: 25px;
    background: rgba(212, 175, 55, 0.4);
    margin: 0 5px;
}

.btn-reserva-nxs {
    background: var(--mw-btn-primary-bg);
    color: var(--mw-btn-primary-text) !important;
    border: none;
    border-radius: 40px;
    padding: 10px 25px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

/* === Móvil: apilado vertical === */
@media (max-width: 640px) {
    .nxs-reserva-contenedor {
        flex-direction: column;
        border-radius: 25px;
        padding: 10px 5px;
        max-width: none;
        min-width: 300px;
        width: 90%;
        gap: 20px;
    }

    .nxs-inputs-wrapper {
        width: 100%;
        flex: none;
        justify-content: space-between;
        gap: 10px;
    }

    .nxs-input-item {
        flex: 1;
    }

    .btn-reserva-nxs {
        width: 100%;
        border-radius: 15px;
        padding: 10px;
        font-size: 1rem;
        white-space: normal;
    }

    .nxs-reserva-contenedor .separador {
        height: 30px;
    }
}
/* === Placeholder cuando el título está vacío (solo visible para admin) === */
.texto-titulo-vacio {
    color: var(--mw-color-text-muted);
    font-style: italic;
    opacity: 0.6;
    font-weight: 400;
}