/* ============================================================
   HOTEL CASA VALLE — Detalle de Habitación + Confirmación
   ============================================================ */

/* ── Galería ─────────────────────────────────────────────── */
.detalle-gallery {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
    background: #111;
    margin-top: 80px; /* altura navbar */
}

.gallery-slider { width: 100%; height: 100%; position: relative; }

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.65s ease;
}
.gallery-slide.active { opacity: 1; }

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flechas */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.25s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-btn:hover { background: rgba(255,255,255,0.35); }
.gallery-btn.prev  { left: 1.5rem; }
.gallery-btn.next  { right: 1.5rem; }

/* Indicadores */
.gallery-dots {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.gallery-dots .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    padding: 0;
}
.gallery-dots .dot.active {
    background: var(--gold-light, #d4a84b);
    transform: scale(1.3);
}

/* Breadcrumb flotante */
.gallery-breadcrumb {
    position: absolute;
    top: 1.2rem;
    left: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    z-index: 10;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}
.gallery-breadcrumb a { color: inherit; text-decoration: none; }
.gallery-breadcrumb a:hover { color: var(--gold-light, #d4a84b); }

/* ── Layout principal ────────────────────────────────────── */
.detalle-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    align-items: start;
}

/* ── Columna info ─────────────────────────────────────────── */
.detalle-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green-dark, #1d3d2a);
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.detalle-descripcion {
    color: var(--text-mid, #555);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.precio-base {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.precio-valor {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green-dark, #1d3d2a);
}
.precio-label {
    font-size: 0.9rem;
    color: var(--text-mid, #555);
    font-weight: 400;
}

/* Políticas de la habitación */
.politicas-box {
    background: var(--cream, #faf6f0);
    border: 1px solid var(--beige, #e8e0d5);
    border-radius: 4px;
    padding: 0.9rem 1rem;
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.politica-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-mid, #555);
    line-height: 1.4;
}
.pol-icon { font-size: 1rem; flex-shrink: 0; }

/* Adultos adicionales — radio cards */
.adultos-group label:first-child {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark, #1d3d2a);
    margin-bottom: 0.4rem;
    display: block;
}
.adultos-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.radio-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--beige, #e8e0d5);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.88rem;
    transition: border-color 0.2s, background 0.2s;
    background: var(--cream, #faf6f0);
}
.radio-card:has(input:checked) {
    border-color: var(--green-mid, #2d5a3d);
    background: #f0fdf4;
}
.radio-card input { cursor: pointer; }
.extra-cost {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--gold, #b8933a);
    font-weight: 600;
}

/* Desglose de impuestos */
.precio-breakdown {
    margin-top: 0.8rem;
    border: 1px solid var(--beige, #e8e0d5);
    border-radius: 3px;
    overflow: hidden;
    font-size: 0.86rem;
}
.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0.9rem;
    color: var(--text-mid, #555);
    border-bottom: 1px solid var(--beige, #e8e0d5);
}
.breakdown-row:last-child { border-bottom: none; }
.breakdown-total {
    background: var(--cream, #faf6f0);
    font-weight: 700;
    color: var(--green-dark, #1d3d2a);
}

.info-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--green-dark, #1d3d2a);
    margin-bottom: 1rem;
}

/* Features */
.detalle-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1.5rem;
}
.detalle-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.93rem;
    color: var(--text-dark, #2a2a2a);
}
.detalle-features li svg { color: var(--green-mid, #2d5a3d); flex-shrink: 0; }

/* Amenidades */
.detalle-amenidades {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.detalle-amenidades li {
    background: var(--cream, #faf6f0);
    border: 1px solid var(--beige, #e8e0d5);
    color: var(--green-mid, #2d5a3d);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 2px;
}

/* Miniaturas */
.thumbnails {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.thumb {
    width: 78px; height: 58px;
    border: 2px solid transparent;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: border-color 0.25s, opacity 0.25s;
    opacity: 0.65;
    padding: 0;
}
.thumb:hover, .thumb.active {
    border-color: var(--gold, #b8933a);
    opacity: 1;
}

/* ── Columna booking ─────────────────────────────────────── */
.detalle-form-wrap {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: #fff;
    border: 1px solid var(--beige, #e8e0d5);
    padding: 2.2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

/* Etiqueta de sección del formulario */
.form-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-dark, #1d3d2a);
    border-bottom: 2px solid var(--beige, #e8e0d5);
    padding-bottom: 0.3rem;
    margin: 1rem 0 0.7rem;
}
.form-section-label:first-of-type { margin-top: 0; }

/* Links de habitaciones alternativas */
.alt-link {
    display: block;
    padding: 0.45rem 0.7rem;
    background: #fff;
    border: 1px solid #fca5a5;
    border-radius: 4px;
    color: var(--green-dark, #1d3d2a);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    transition: background 0.2s;
}
.alt-link:hover { background: #fff0f0; }

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--green-dark, #1d3d2a);
    margin-bottom: 0.3rem;
}
.booking-subtitle {
    font-size: 0.85rem;
    color: var(--text-mid, #555);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.booking-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 0.9rem 1.1rem;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    border-radius: 2px;
}

/* Formulario */
.booking-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark, #1d3d2a);
}

.form-group input,
.form-group textarea {
    border: 1px solid var(--beige, #e8e0d5);
    padding: 0.65rem 0.85rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark, #2a2a2a);
    background: var(--cream, #faf6f0);
    outline: none;
    transition: border-color 0.25s;
    border-radius: 2px;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green-mid, #2d5a3d); background: #fff; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: #ef4444; }

.field-error {
    font-size: 0.78rem;
    color: #dc2626;
}

/* Precio estimado */
.precio-estimado {
    background: var(--cream, #faf6f0);
    border: 1px solid var(--beige, #e8e0d5);
    border-left: 3px solid var(--gold, #b8933a);
    padding: 0.7rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-mid, #555);
}
.precio-estimado strong {
    font-size: 1.05rem;
    color: var(--green-dark, #1d3d2a);
}

.btn-submit {
    margin-top: 0.3rem;
    padding: 1rem;
    background: var(--green-dark, #1d3d2a);
    color: #fff;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 2px;
}
.btn-submit:hover { background: var(--green-mid, #2d5a3d); }

/* ── Botón Pagar ─────────────────────────────────────────────────────── */
.btn-pagar {
    background: #004481;   /* azul BBVA */
    letter-spacing: 0.1em;
}
.btn-pagar:hover { background: #003366; }

/* ── Modal overlay ───────────────────────────────────────────────────── */
.pay-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    padding: 1rem;
}

/* ── Tarjeta del modal ───────────────────────────────────────────────── */
.pay-card {
    background: #fff;
    border-radius: 6px;
    padding: 2rem;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    max-height: 90vh;
    overflow-y: auto;
}

.pay-close {
    position: absolute;
    top: .8rem; right: 1rem;
    background: none; border: none;
    font-size: 1.5rem; cursor: pointer;
    color: #888; line-height: 1;
}
.pay-close:hover { color: #333; }

.pay-header {
    text-align: center;
    margin-bottom: 1.2rem;
}
.pay-lock { font-size: 2rem; margin-bottom: .3rem; }
.pay-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--green-dark, #1d3d2a);
    margin: 0;
}

/* Resumen */
.pay-summary {
    background: #f8fafc;
    border: 1px solid #e0e7ef;
    border-radius: 4px;
    padding: .7rem .9rem;
    margin-bottom: 1.2rem;
    font-size: .84rem;
}
.pay-sum-row {
    display: flex;
    justify-content: space-between;
    padding: .22rem 0;
    color: #444;
}
.pay-sum-total {
    border-top: 1px solid #c8d8e8;
    margin-top: .3rem;
    padding-top: .4rem;
    font-weight: 700;
    font-size: .95rem;
    color: #004481;
}

/* Error de pago */
.pay-error {
    background: #fff0f0;
    border: 1px solid #fca5a5;
    border-radius: 4px;
    color: #991b1b;
    font-size: .83rem;
    padding: .6rem .9rem;
    margin-bottom: .8rem;
}

/* Nota legal */
.pay-note {
    text-align: center;
    font-size: .72rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Previsualización de reserva */
.reserva-preview {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 4px;
    padding: 0.9rem 1rem;
    margin-top: 0.2rem;
}
.rp-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #15803d;
    margin-bottom: 0.7rem;
}
.rp-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.85rem;
    padding: 0.28rem 0;
    border-bottom: 1px solid #bbf7d0;
    color: var(--text-dark, #2a2a2a);
}
.rp-row:last-of-type { border-bottom: none; }
.rp-total {
    margin-top: 0.3rem;
    padding-top: 0.4rem;
    border-top: 2px solid #86efac !important;
    border-bottom: none !important;
    font-size: 0.95rem;
    color: var(--green-dark, #1d3d2a);
}
.rp-total strong { font-size: 1.05rem; }

.booking-note {
    font-size: 0.78rem;
    color: var(--text-mid, #555);
    text-align: center;
    line-height: 1.5;
    margin-top: 0.2rem;
}

/* ── Tarjetas de la landing — ajuste de estilos extra ───── */
.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--beige, #e8e0d5);
}
.room-price {
    font-size: 0.88rem;
    color: var(--green-mid, #2d5a3d);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.room-price-note {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-mid, #555);
    letter-spacing: 0;
}
.room-cta {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold, #b8933a);
    letter-spacing: 0.05em;
}
a.room-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
a.room-card:hover { text-decoration: none; }

/* ── Página de confirmación ──────────────────────────────── */
.confirmacion-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 1.5rem 4rem;
    background: var(--cream, #faf6f0);
}

.confirmacion-card {
    background: #fff;
    max-width: 560px;
    width: 100%;
    padding: 3rem 2.5rem;
    box-shadow: 0 12px 60px rgba(0,0,0,0.1);
    text-align: center;
}

.confirmacion-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 2px solid #86efac;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.confirmacion-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--green-dark, #1d3d2a);
    margin-bottom: 0.6rem;
}
.confirmacion-sub {
    color: var(--text-mid, #555);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.confirmacion-divider {
    height: 1px;
    background: var(--beige, #e8e0d5);
    margin-bottom: 1.8rem;
}

.confirmacion-detalle { text-align: left; }

.conf-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--beige, #e8e0d5);
    font-size: 0.93rem;
}
.conf-label { color: var(--text-mid, #555); font-weight: 400; }
.conf-value { font-weight: 600; color: var(--text-dark, #2a2a2a); }
.conf-num   { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-dark, #1d3d2a); }

.conf-total .conf-label,
.conf-total .conf-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-dark, #1d3d2a);
}

.conf-estado {
    display: inline-block;
    background: #fef9c3;
    color: #854d0e;
    font-size: 0.78rem;
    padding: 0.15rem 0.7rem;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.conf-notas {
    margin-top: 1.2rem;
    padding: 0.9rem 1.1rem;
    background: var(--cream, #faf6f0);
    border-left: 3px solid var(--gold, #b8933a);
    font-size: 0.88rem;
    color: var(--text-mid, #555);
    text-align: left;
    line-height: 1.5;
}

.confirmacion-acciones {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-print {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 2px solid var(--green-dark, #1d3d2a);
    color: var(--green-dark, #1d3d2a);
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    border-radius: 2px;
}
.btn-print:hover { background: var(--green-dark, #1d3d2a); color: #fff; }

.btn-home {
    padding: 0.8rem 1.8rem;
    background: var(--gold, #b8933a);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.3s;
    border-radius: 2px;
}
.btn-home:hover { background: var(--gold-light, #d4a84b); }

/* ── Selector de método de pago ────────────────────────── */
.pago-opciones {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.2rem;
}
.pago-opcion {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.pago-opcion:hover { border-color: #2c4a3e; background: #f8faf9; }
.pago-opcion input[type="radio"] { accent-color: #2c4a3e; width: 16px; height: 16px; flex-shrink: 0; }
.pago-opcion input[type="radio"]:checked ~ .pago-icono,
.pago-opcion input[type="radio"]:checked ~ .pago-texto { opacity: 1; }
.pago-opcion:has(input:checked) { border-color: #2c4a3e; background: #f0f5f2; }
.pago-icono { font-size: 1.4rem; flex-shrink: 0; }
.pago-texto { display: flex; flex-direction: column; gap: .1rem; }
.pago-texto strong { font-size: .88rem; color: #2c4a3e; }
.pago-texto small   { font-size: .74rem; color: #777; }

/* ── Íconos de confirmación (variantes) ────────────────── */
.confirmacion-icon.conf-ok   { background: #f0fdf4; border-color: #86efac; color: #16a34a; }
.confirmacion-icon.conf-pend { background: #fffbeb; border-color: #fcd34d; color: #92400e;
                                font-size: 2rem; }

/* ── Instrucciones de pago en tienda ───────────────────── */
.instr-pago {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1.2rem 1.4rem;
    border-radius: 8px;
    font-size: .9rem;
}
.instr-tienda { background: #fffbeb; border: 1.5px solid #fcd34d; }
.instr-spei   { background: #eff6ff; border: 1.5px solid #93c5fd; }

.instr-titulo {
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #555;
    margin-bottom: .7rem;
}
.instr-pasos { padding-left: 1.2rem; margin: 0 0 .8rem; line-height: 1.8; }

.instr-referencia {
    font-family: monospace;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: #1d3d2a;
    background: #fff;
    border: 2px dashed #2c4a3e;
    border-radius: 6px;
    padding: .6rem 1rem;
    text-align: center;
    margin: .8rem 0;
}
.instr-barcode {
    display: block;
    max-width: 260px;
    margin: .5rem auto;
}
.instr-aviso {
    font-size: .78rem;
    color: #92400e;
    margin-top: .8rem;
    padding: .5rem .8rem;
    background: rgba(255,255,255,.6);
    border-radius: 4px;
}
.instr-spei .instr-aviso { color: #1e40af; }

/* ── Tabla SPEI ─────────────────────────────────────────── */
.spei-tabla { display: flex; flex-direction: column; gap: .4rem; margin: .6rem 0; }
.spei-fila  {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: .45rem .6rem;
    background: rgba(255,255,255,.7);
    border-radius: 4px;
    font-size: .88rem;
    gap: 1rem;
}
.spei-etq { color: #555; font-size: .78rem; white-space: nowrap; }
.spei-val { font-weight: 700; color: #1d3d2a; text-align: right; word-break: break-all; }
.spei-clabe .spei-val {
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: .08em;
    color: #1e40af;
}

/* ── Responsive — Tablet (≤ 1024 px) ───────────────────── */
@media (max-width: 1024px) {
    .detalle-layout {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem 5rem;
    }
    .detalle-form-wrap { position: static; }
    .booking-card      { max-width: 680px; margin: 0 auto; }
    .detalle-gallery   { height: 55vh; }
}

/* ── Responsive — Mobile (≤ 768 px) ────────────────────── */
@media (max-width: 768px) {
    .detalle-gallery { height: 56vw; min-height: 240px; margin-top: 70px; }

    .gallery-btn     { width: 40px; height: 40px; font-size: 1.6rem; }
    .gallery-btn.prev { left: 0.8rem; }
    .gallery-btn.next { right: 0.8rem; }

    .detalle-layout  { padding: 2rem 1rem 4rem; gap: 2rem; }

    .detalle-info h1 { font-size: 1.8rem; }
    .precio-valor    { font-size: 1.8rem; }
    .precio-breakdown { font-size: 0.82rem; }

    .detalle-features { grid-template-columns: 1fr; }

    .thumbnails .thumb { width: 60px; height: 44px; }

    .booking-card    { padding: 1.5rem; }
    .booking-title   { font-size: 1.2rem; }
    .form-row.two-col { grid-template-columns: 1fr; }

    .confirmacion-page { padding: 5rem 1rem 3rem; }
    .confirmacion-card { padding: 1.8rem 1.2rem; }
    .confirmacion-card h1 { font-size: 1.5rem; }
    .confirmacion-acciones { flex-direction: column; align-items: stretch; }
    .btn-print, .btn-home  { text-align: center; }
}

/* ── Responsive — Small phone (≤ 480 px) ───────────────── */
@media (max-width: 480px) {
    .detalle-gallery { height: 65vw; min-height: 210px; }

    .gallery-breadcrumb { font-size: 0.72rem; padding: 0.3rem 0.7rem; }

    .detalle-info h1 { font-size: 1.5rem; }
    .precio-valor    { font-size: 1.5rem; }

    .detalle-amenidades li { font-size: 0.72rem; }

    .btn-submit { font-size: 0.78rem; letter-spacing: 0.1em; }
}

@media print {
    .navbar, .confirmacion-acciones, .footer { display: none; }
    .confirmacion-page { padding: 1rem; }
    .confirmacion-card { box-shadow: none; }
}
