body {
    background: url('/image/background.jpg') center top / cover fixed no-repeat !important;
    min-height: 100vh;
}

/* Contenedor principal */
.registro-wrap {
    padding-top: 90px;
    padding-bottom: 120px;
}

/* Botón volver */
.btn-volver-registro {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.55);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 18px;
    transition: color .2s;
}
.btn-volver-registro:hover {
    color: #fff;
    text-decoration: none;
}
.btn-volver-registro i { font-size: 12px; }

/* Pasos */
.pasos {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
}
.paso {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
}
.paso.activo { color: #fff; }
.paso .num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    flex-shrink: 0;
}
.paso.activo .num {
    background: #0050ff;
}
.paso-sep {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.2);
    margin: 0 12px;
    max-width: 60px;
}

/* Cards de localidad */
.loca-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0,0,0,.45);
    border: 2px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color .2s, background .2s, transform .15s;
    color: #fff;
    margin-bottom: 10px;
}
.loca-card:hover {
    background: rgba(0,40,140,.55);
    border-color: rgba(0,80,255,.5);
    transform: translateY(-1px);
}
.loca-card.seleccionada {
    background: rgba(0,40,140,.75);
    border-color: #0050ff;
}
.loca-card img.thumb {
    width: 80px; height: 56px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #111;
}
.loca-card .loca-info { flex: 1; }
.loca-card .loca-nombre {
    font-size: 15px; font-weight: 700;
    margin-bottom: 2px;
}
.loca-card .loca-precio {
    font-size: 13px;
    color: rgba(255,255,255,.7);
}
.loca-card .loca-precio strong {
    color: #fff; font-size: 15px;
}
.loca-card .check-icon {
    font-size: 20px; color: #0050ff;
    opacity: 0;
    transition: opacity .2s;
    flex-shrink: 0;
}
.loca-card.seleccionada .check-icon { opacity: 1; }

/* Panel de detalle (derecha) */
.panel-detalle {
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 90px;
}
.panel-detalle .panel-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    color: rgba(255,255,255,.4);
    text-align: center;
    padding: 30px;
}
.panel-detalle .panel-placeholder i {
    font-size: 48px; margin-bottom: 12px;
}
.panel-detalle .panel-img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    display: block;
}
.panel-detalle .panel-body {
    padding: 22px 24px;
    color: #fff;
}
.panel-detalle .panel-nombre {
    font-size: 20px; font-weight: 700; margin-bottom: 16px;
}
.resumen-precio {
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
}
.resumen-precio .linea {
    display: flex; justify-content: space-between;
    font-size: 14px; padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.resumen-precio .linea:last-child { border-bottom: none; }
.resumen-precio .linea.total {
    font-weight: 700; font-size: 16px;
    padding-top: 10px; margin-top: 4px;
}
.resumen-precio .linea small {
    color: rgba(255,255,255,.55); font-size: 12px;
}
.btn-continuar {
    width: 100%;
    background: #0050ff;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px; font-weight: 700;
    letter-spacing: .5px;
    transition: background .2s, transform .15s;
    text-decoration: none;
    display: block; text-align: center;
}
.btn-continuar:hover {
    background: #0040cc; color: #fff;
    transform: translateY(-1px);
}
.btn-continuar:disabled, .btn-continuar.disabled {
    background: rgba(255,255,255,.2);
    pointer-events: none; color: rgba(255,255,255,.4);
}
.nota-suite {
    background: rgba(255,200,0,.12);
    border: 1px solid rgba(255,200,0,.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255,255,255,.8);
    margin-bottom: 14px;
}

/* Barra fija móvil */
.barra-movil {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,10,40,.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 14px 20px;
    z-index: 1050;
    align-items: center;
    gap: 14px;
}
.barra-movil .barra-info { flex: 1; color: #fff; }
.barra-movil .barra-nombre { font-weight: 700; font-size: 14px; }
.barra-movil .barra-precio { font-size: 12px; color: rgba(255,255,255,.65); }
.barra-movil .btn-barra {
    background: #0050ff; color: #fff;
    border: none; border-radius: 8px;
    padding: 10px 20px; font-weight: 700;
    font-size: 14px; white-space: nowrap;
    text-decoration: none;
}

@media (max-width: 767px) {
    .panel-detalle { display: none; }
    .barra-movil.visible { display: flex; }
}
