/* /Pages/PujaSubasta/ClienteDashboard.razor.rz.scp.css */
/* --- ANIMACIONES GENERALES --- */

/* 1. Animación de Latido (Usada en el Overlay de Pánico) */
.animacion-latido[b-r461ldh1j4] {
    animation: latido-b-r461ldh1j4 1.5s infinite;
}

@keyframes latido-b-r461ldh1j4 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* 2. Animación del botón naranja (Solicitud de Paleta/PIN) */
.pulsar-boton[b-r461ldh1j4] {
    animation: pulse-orange-b-r461ldh1j4 2s infinite;
}

@keyframes pulse-orange-b-r461ldh1j4 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 152, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
}

/* 3. Animación de entrada (Pantalla de Vendido) */
.animacion-entrada[b-r461ldh1j4] {
    animation: fade-in-up-b-r461ldh1j4 0.5s ease-out;
}

@keyframes fade-in-up-b-r461ldh1j4 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 4. Rebote del icono gigante (Check de Venta) */
.bounce-icon[b-r461ldh1j4] {
    animation: bounce-b-r461ldh1j4 1s infinite;
}

@keyframes bounce-b-r461ldh1j4 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}
/* /Pages/PujaSubasta/PujaSubasta.razor.rz.scp.css */
/* Contenedor del video responsive */
.video-container[b-vqifg3v604] {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    background-color: black;
}

    .video-container iframe[b-vqifg3v604], .video-container video[b-vqifg3v604] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* Para que el contenido no quede tapado por la barra inferior */
.espacio-inferior[b-vqifg3v604] {
    padding-bottom: 100px;
}

/* Estilo para el precio gigante */
.precio-gigante[b-vqifg3v604] {
    font-size: 3rem;
    font-weight: 900;
    color: #1b5e20; /* Verde oscuro */
    text-align: center;
    letter-spacing: -1px;
}
/* /Pages/Subastas/DirectorSubasta.razor.rz.scp.css */
.animacion-parpadeo-suave[b-po9qxhvtmw] {
    animation: pulso-texto-b-po9qxhvtmw 1.5s infinite alternate;
}

@keyframes pulso-texto-b-po9qxhvtmw {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

.animacion-panico[b-po9qxhvtmw] {
    animation: parpadeoRojo-b-po9qxhvtmw 1s infinite;
}

@keyframes parpadeoRojo-b-po9qxhvtmw {
    0% {
        background-color: #d32f2f;
    }

    50% {
        background-color: #b71c1c;
        box-shadow: 0 0 15px red;
    }

    100% {
        background-color: #d32f2f;
    }
}

.punto-en-vivo[b-po9qxhvtmw] {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin-right: 5px;
    animation: parpadeo-b-po9qxhvtmw 1s infinite;
}

@keyframes parpadeo-b-po9qxhvtmw {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}
/* /Pages/Subastas/MartilloDashboard.razor.rz.scp.css */
/* =================================================
   ESTILOS TÁCTICOS - PUESTO DE COMANDO MARTILLO
   ================================================= */

/* Contenedor Principal */
.tablero-martillo[b-3ohe3enzdw] {
    background-color: #050505; /* Negro profundo */
    color: #e0e0e0;
    height: calc(100vh - 64px);
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

/* Tipografía Datos */
[b-3ohe3enzdw] .dato-duro {
    font-family: 'Consolas', 'Courier New', monospace;
    letter-spacing: 1px;
}

/* === EL PRECIO GIGANTE (HTML Nativo) === */
[b-3ohe3enzdw] .precio-gigante {
    font-size: 9rem; /* Tamaño monstruoso */
    font-weight: 900; /* Extra Bold */
    line-height: 1; /* Sin espacio extra arriba/abajo */
    letter-spacing: -4px; /* Letras apretadas */
    text-align: center;
    margin: 0; /* Eliminar margen por defecto de h1 */
    padding: 20px 0;
}

/* === COLORES DE ESTADO (TEXTO) === */

/* Verde Neón: Venta Real */
[b-3ohe3enzdw] .texto-verde-neon {
    color: #00E676;
    text-shadow: 0 0 40px rgba(0, 230, 118, 0.6); /* Glow intenso */
}

/* Cyan Neón: Autosubasta / Defensa */
[b-3ohe3enzdw] .texto-cyan-neon {
    color: #00B0FF;
    text-shadow: 0 0 40px rgba(0, 176, 255, 0.6); /* Glow intenso */
}

/* === AVISOS Y ALERTAS === */

/* Alerta Roja (Pulsante) */
[b-3ohe3enzdw] .chip-alerta {
    background-color: #D32F2F !important;
    color: white !important;
    font-weight: bold;
    animation: pulse-b-3ohe3enzdw 1.5s infinite;
    border-radius: 8px;
    padding: 10px;
}

/* Aviso Verde (Estático) */
[b-3ohe3enzdw] .chip-ok {
    background-color: #1B5E20 !important; /* Verde oscuro elegante */
    color: #A5D6A7 !important;
    font-weight: 900;
    border: 2px solid #2E7D32;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
    padding: 10px;
}

/* Inputs centrados */
[b-3ohe3enzdw] .centered-input input {
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
}

/* === ANIMACIONES === */
@keyframes pulse-b-3ohe3enzdw {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}
/* /Pages/Subastas/Viewer.razor.rz.scp.css */
/* --- ESTILO TIPO TV (Wall Mode Ajustado) --- */
body[b-ontbk947gk] {
    background-color: #000;
    color: white;
    overflow: hidden;
    font-family: 'Montserrat', 'Roboto', sans-serif;
}

.wall-container[b-ontbk947gk] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

/* HEADER */
.wall-header[b-ontbk947gk] {
    height: 8vh;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-bottom: 2px solid #333;
    z-index: 10;
}

.flash-icon[b-ontbk947gk] {
    animation: blink-b-ontbk947gk 2s infinite;
}

/* CUERPO */
.wall-body[b-ontbk947gk] {
    flex-grow: 1;
    display: flex;
    height: 92vh;
}

/* --- IZQUIERDA: VIDEO + DATOS TÉCNICOS --- */
.wall-video-section[b-ontbk947gk] {
    width: 60%;
    display: flex;
    flex-direction: column;
    border-right: 3px solid #333;
    background-color: black;
}

.video-frame[b-ontbk947gk] {
    flex-grow: 1;
    position: relative;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-frame iframe[b-ontbk947gk] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.no-video[b-ontbk947gk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
}

/* FICHA TÉCNICA (Footer Izquierdo - MODIFICADO VERTICAL) */
.tech-specs[b-ontbk947gk] {
    height: 20vh;
    background-color: #151515;
    border-top: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1rem 2rem;
}

.spec-item[b-ontbk947gk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
}

    .spec-item .mud-icon-root[b-ontbk947gk] {
        font-size: 2.5rem !important;
        color: #444;
        margin-bottom: 0.2rem;
    }

    .spec-item .label[b-ontbk947gk] {
        font-size: 1.4rem;
        color: #aaa;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .spec-item .value[b-ontbk947gk] {
        font-size: 3rem;
        font-weight: 900;
        color: white;
        line-height: 1;
    }

.spec-divider[b-ontbk947gk] {
    width: 2px;
    height: 60%;
    background: #333;
    opacity: 0.5;
}

/* --- DERECHA: DATOS DE SUBASTA --- */
.wall-data-section[b-ontbk947gk] {
    width: 40%;
    background: linear-gradient(145deg, #121212 0%, #1e1e1e 100%);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* CABECERA LOTE */
.lote-badge[b-ontbk947gk] {
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

    .lote-badge h1[b-ontbk947gk] {
        font-size: 5rem;
        margin: 0;
        color: #4CAF50;
        font-weight: 900;
        line-height: 1;
        text-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
    }

    .lote-badge h2[b-ontbk947gk] {
        font-size: 2rem;
        margin: 0;
        color: white;
        font-weight: 300;
        text-transform: uppercase;
    }

.procedencia[b-ontbk947gk] {
    font-size: 1.2rem;
    color: #bbb;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 8px;
}
/* --- TARJETA DE PRECIO (PRECIO GIGANTE) --- */
.price-card[b-ontbk947gk] {
    background-color: #222;
    border-radius: 25px;
    padding: 0.5rem 1rem; /* Menos padding vertical para que quepa la letraza */
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
    border: 2px solid #444;
    transition: transform 0.1s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-grow: 1; /* Que ocupe todo el espacio disponible */
}

.pulse-price[b-ontbk947gk] {
    transform: scale(1.02);
    border-color: #4CAF50;
    box-shadow: 0 0 100px rgba(76, 175, 80, 0.6);
}

.price-label[b-ontbk947gk] {
    font-size: 1.6rem; /* AUMENTADO (Antes 1.2rem) */
    color: #888;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0;
    font-weight: 800;
}

.price-value[b-ontbk947gk] {
    font-size: 11rem; /* 🔥 AUMENTADO BRUTALMENTE (Antes 8rem) */
    font-weight: 900;
    color: #FFD700;
    line-height: 0.9; /* Línea apretada para ganar espacio vertical */
    margin-bottom: 1rem;
    text-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
    letter-spacing: -5px; /* Letras un poco juntas para que quepan los millones */
}

.winner-bar[b-ontbk947gk] {
    font-size: 2rem; /* AUMENTADO (Antes 1.8rem) */
    padding-top: 1rem;
    border-top: 2px dashed #444;
    color: white;
    width: 90%;
    font-weight: 600;
}

/* --- TABLA COMPARATIVA (CONTENEDOR PRINCIPAL) --- */
.comparison-grid[b-ontbk947gk] {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px solid #333;
    margin-top: 1rem;
    overflow: hidden;
}

/* --- CUERPO SUPERIOR (LAS COLUMNAS - JUNTITAS) --- */
.grid-body[b-ontbk947gk] {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
    gap: 3rem;
}

    /* Línea divisoria central */
    .grid-body[b-ontbk947gk]::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 15%;
        bottom: 15%;
        width: 2px;
        background-color: #333;
        transform: translateX(-50%);
    }

.comp-col[b-ontbk947gk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

/* Títulos */
.comp-title[b-ontbk947gk] {
    font-size: 1.2rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: center;
}

/* Filas de datos */
.comp-row[b-ontbk947gk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2rem;
    width: 100%;
    text-align: center;
}

    .comp-row span[b-ontbk947gk] {
        color: #999;
        font-size: 1rem;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 0.2rem;
        letter-spacing: 1px;
    }

/* Valores */
.base .comp-row b[b-ontbk947gk] {
    color: #ccc;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.projected .comp-row b.highlight[b-ontbk947gk] {
    color: #00E676;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
    line-height: 1;
}

/* Flecha central */
.comparison-grid .mud-icon-root[b-ontbk947gk] {
    font-size: 3rem !important;
    color: #444;
    background: #1e1e1e;
    z-index: 2;
    padding: 5px;
    border-radius: 50%;
    margin: 0 -1.5rem;
}

/* --- FOOTER (LA PUJA MÍNIMA INTEGRADA) --- */
/* 🔥 HE BORRADO EL DUPLICADO QUE HABÍA DEBAJO DE ESTE BLOQUE 🔥 */
.increment-footer[b-ontbk947gk] {
    width: 100%;
    background-color: rgba(0,0,0,0.3);
    border-top: 2px solid #333;
    padding: 1rem 0;
    text-align: center;
    font-size: 3.2rem; /* Tamaño correcto */
    font-weight: 800;
    color: #888;
    letter-spacing: 1px;
}

/* --- SELLOS --- */
.overlay-stamp[b-ontbk947gk] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 10rem;
    font-weight: 900;
    border: 15px solid;
    padding: 2rem 5rem;
    text-transform: uppercase;
    z-index: 100;
    opacity: 0;
    animation: stamp-in-b-ontbk947gk 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 100px rgba(0,0,0,0.8);
}

.stamp-vendido[b-ontbk947gk] {
    color: #4CAF50;
    border-color: #4CAF50;
    background: rgba(0, 0, 0, 0.9);
}

.stamp-paso[b-ontbk947gk] {
    color: #FF9800;
    border-color: #FF9800;
    background: rgba(0, 0, 0, 0.9);
}

.wall-waiting[b-ontbk947gk] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #121212;
    color: #666;
}

.spacer[b-ontbk947gk] {
    flex-grow: 1;
}

@keyframes blink-b-ontbk947gk {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes stamp-in-b-ontbk947gk {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3) rotate(-15deg);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(-15deg);
    }
}
