/* Paleta de colores */
:root {
  --azul-bumpy: #1B448C;
  --fucsia-bumpy: #E91E63;
  --blanco: #FFFFFF;
  --gris-borde: #E0E0E0;
  --gris-fondo: #f0f2f5;
  --efecto-cristal: rgba(255, 255, 255, 0.9);
  --bumpy-green: #22c55e;         /* oportunidad */
  --bumpy-green-soft: rgba(34,197,94,0.12);
  --bumpy-amber: #f59e0b;         /* caro/precaución */
  --bumpy-amber-soft: rgba(245,158,11,0.12);
  --bumpy-red: #ef4444;           /* alto riesgo (si lo quieres más fuerte) */
  --bumpy-red-soft: rgba(239,68,68,0.10);
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff
;}

/* =========================
   CABECERA ESTRUCTURA
========================= */

.cabecera-bumpy {
  	top: 20px;
  	padding: 10px 30px;
	width: 95%;
	max-width: 1400px;
	margin: 0 auto 0px;
	background: var(--blanco);
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(27, 68, 140, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.5);
	position: relative;
	z-index: 10;
	

}

.contenedor-cabecera {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* =========================
   IZQUIERDA: marca + selector
========================= */

.bloque-izquierdo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bumpy-marca-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.pista-carrera {
  width: 55px;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

/* Wrapper (solo para layout / hover, NO para animar entrada/salida) */
.logo-animado {
  position: relative;
  will-change: transform;
  transition: transform 0.4s ease;
}

/* Hover “gamificación” (se anula si estás en switching) */
.cabecera-bumpy:hover .logo-animado {
  transform: translateX(20px) rotate(-8deg) scale(1.05);
}

.nombre-marca {
  font-weight: 800;
  font-size: 24px;
  color: var(--azul-bumpy);
  letter-spacing: -1.5px;
  text-transform: lowercase;
  transition: transform 0.4s ease;
}

.resaltado-fucsia {
  color: var(--fucsia-bumpy);
}

.cabecera-bumpy:hover .nombre-marca {
  transform: translateX(10px);
}

.cabecera-bumpy:hover .resaltado-fucsia {
  filter: brightness(1.2);
}

/* =========================
   SELECTOR coches / motos
========================= */

.selector-vehiculo {
  display: flex;
  background: var(--gris-fondo);
  padding: 3px;
  border-radius: 30px;
}

.opcion-v {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: #666;
  transition: 0.3s;
}

.opcion-v.activo {
  background: var(--blanco);
  color: var(--azul-bumpy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Si tu JS solo pone modo-moto en body (y no cambia .activo), esto lo fuerza */
body.modo-moto .opcion-v:nth-child(2) {
  background: var(--blanco);
  color: var(--azul-bumpy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
body.modo-moto .opcion-v:nth-child(1) {
  background: transparent;
  color: #666;
  box-shadow: none;
}

/* =========================
   NAVEGACIÓN central
========================= */

.navegacion-bumpy {
  display: flex;
  gap: 25px;
  align-items: center;
}

.enlace-nav {
  text-decoration: none;
  color: var(--azul-bumpy);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

.icono-nav {
  width: 18px;
  height: 18px;
  stroke: var(--azul-bumpy);
  fill: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enlace-nav:hover {
  color: var(--fucsia-bumpy);
}
.enlace-nav:hover .icono-nav {
  stroke: var(--fucsia-bumpy);
  transform: translateY(-3px) scale(1.1);
}

/* =========================
   DERECHA: acciones + perfil
========================= */

.acciones-usuario {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icono-accion {
  color: var(--azul-bumpy);
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.icono-accion:hover {
  color: var(--fucsia-bumpy);
  transform: scale(1.1);
}

.boton-fucsia {
  background: var(--fucsia-bumpy);
  color: var(--blanco);
  
  
  text-decoration: none;
  
  
  transition: 0.3s ease;
  
  border: none;
}
.boton-fucsia:hover {
  background: var(--azul-bumpy);
  transform: translateY(-2px);
}

.marco-gafas-bumpy {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--fucsia-bumpy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.marco-gafas-bumpy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 0px;
}
.marco-gafas-bumpy:hover {
  transform: scale(1.1) rotate(5deg);
}

/* =========================
   Radar (si lo usas)
========================= */

.bumpy-radar {
  position: relative;
  color: var(--fucsia-bumpy) !important;
}

.pulso {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 6px;
  height: 6px;
  background: var(--fucsia-bumpy);
  border-radius: 50%;
  animation: radar-pulse 1.5s infinite;
}

@keyframes radar-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* =========================================================
   LOGOS: visibilidad (solo 1) + animación en IMG visible
========================================================= */

/* 1) Por defecto ocultamos ambos (luego mostramos el que toque) */
.logo-animado .logo-coche,
.logo-animado .logo-moto {
  display: none !important;
}

/* 2) Coche visible si NO estás en modo-moto */
body:not(.modo-moto) .logo-animado .logo-coche {
  display: block !important;
}

/* 3) Moto visible si estás en modo-moto */
body.modo-moto .logo-animado .logo-moto {
  display: block !important;
}

/* 4) Transiciones (en IMG, no en wrapper) */
.logo-animado img {
  display: block;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 520ms ease;
  will-change: transform, opacity;
}

/* 5) Estados de animación (aplica tu JS a la imagen visible) */
.logo-animado img.salida {
  transform: translateX(-220px) rotate(-10deg);
  opacity: 0;
}

.logo-animado img.entrada {
  transform: translateX(220px) rotate(8deg);
  opacity: 0;
}

.logo-animado img.visible {
  transform: translateX(0) rotate(0);
  opacity: 1;
}

/* 6) Anti-hover pisa: si estás cambiando, el hover no manda */
.cabecera-bumpy.is-switching:hover .logo-animado {
  transform: none !important;
}
.cabecera-bumpy.is-switching .logo-animado img {
  pointer-events: none;
}


/*Footer*/

/* =========================
   FOOTER (BumpyGoat)
   - sin redes
   - sin repetir navegación del header
   - con logo igual que header
========================= */

.bumpy-footer{
	margin-bottom: 40px;
}

.bumpy-footer-inner{
    top: 18px;
    padding: 34px 30px 22px;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto 0px;
    background: var(--blanco);
    overflow: hidden;
    box-shadow: 0 15px 40px -10px rgba(27, 68, 140, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 10;	
	backdrop-filter: blur(12px);
}

.bumpy-footer-top{
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 30px;
  align-items: start;
}

/* Logo + nombre (misma vibe del header) */
.bumpy-footer-brandlink{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.bumpy-footer-tagline{
  margin: 12px 0 16px;
  color:#3b3b3b;
  line-height: 1.55;
  max-width: 460px;
}

.bumpy-footer-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  margin-bottom: 10px;
}

.bumpy-btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 13px;
  color: var(--azul-bumpy);
  border: 1px solid rgba(27,68,140,0.22);
  background: rgba(255,255,255,0.75);
  transition: .25s ease;
}

.bumpy-btn-ghost:hover{
  border-color: rgba(233,30,99,0.6);
  color: var(--fucsia-bumpy);
  transform: translateY(-1px);
}

/* Columnas */
.bumpy-footer-cols{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.bumpy-footer-col h4{
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--azul-bumpy);
  letter-spacing: -0.2px;
}

.bumpy-footer-col a{
  display:block;
  text-decoration:none;
  color:#333;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 0;
  opacity: .92;
  transition: .2s ease;
}

.bumpy-footer-col a:hover{
  color: var(--fucsia-bumpy);
  transform: translateX(3px);
  opacity: 1;
}

/* Próximamente */
.bumpy-footer-col a.is-soon{
  opacity: .55;
  cursor: default;
  pointer-events: none;
}
.bumpy-footer-col a.is-soon::after{
  content: " (coming soon)";
  color: rgba(233,30,99,0.9);
  font-weight: 800;
}

/* Divider + bottom */
.bumpy-footer-divider{
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(27,68,140,0.0),
    rgba(27,68,140,0.18),
    rgba(233,30,99,0.18),
    rgba(27,68,140,0.0)
  );
  margin: 24px 0 18px;
}

.bumpy-footer-bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bumpy-footer-bottom-left{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color:#444;
  font-weight: 700;
}

.bumpy-footer-dot{
  opacity: .35;
}

/* Responsive */




/* Footer: mismo micro-hover del logo que en el header */
.bumpy-footer:hover .logo-animado{
  transform: translateX(20px) rotate(-8deg) scale(1.05);
}

/* (Opcional) también mueve el texto de la marca un poco, como arriba */
.bumpy-footer:hover .nombre-marca{
  transform: translateX(10px);
}

/* =========================
   HERO RADAR PORTADA
========================= */

.hero-bumpy-radar {
    position: relative;
    padding: 120px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--blanco);
}

.contenedor-hero-radar {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

/* El Buscador (Mismo estilo que tu cabecera) */
/* =========================
   BUSCADOR SEGMENTADO HERO
========================= */

.buscador-capsula {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--gris-borde);
    border-radius: 100px; /* Súper redondeado */
    padding: 10px 15px;
    box-shadow: 0 20px 40px rgba(27, 68, 140, 0.1);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}



.field-label {
    
    
    
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.search-divider {
    width: 1px;
    height: 35px;
    background: #eee;
}

.input-bumpy-search, 
.select-bumpy-search {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: var(--azul-bumpy);
    outline: none;
    padding: 0;
}

/* Estilo para el Select (flecha personalizada) */


.boton-fucsia {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

/* Responsive */


/* La Cabra y el Bocadillo */
.cabra-radar-wrapper {
    position: relative;
    margin-bottom: -22px; /* Para que la cabra "pise" el buscador */
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cabra-asomada img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.hero-bumpy-radar:hover .cabra-asomada img {
    transform: translateY(-5px) rotate(5deg);
}

.bocadillo-cabra {
    background: var(--azul-bumpy);
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.flecha-bocadillo {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--azul-bumpy);
}

/* Ondas de Radar Sutiles */
.radar-ondas-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.onda-circulo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--fucsia-bumpy);
    border-radius: 50%;
    opacity: 0;
    animation: radar-expand 4s infinite linear;
}

.onda-circulo:nth-child(2) { animation-delay: 1.3s; }
.onda-circulo:nth-child(3) { animation-delay: 2.6s; }

@keyframes radar-expand {
    0% { width: 0; height: 0; opacity: 0.5; }
    100% { width: 1000px; height: 1000px; opacity: 0; }
}

.titulo-hero {
    font-size: 32px;
    font-weight: 800;
    color: var(--azul-bumpy);
    letter-spacing: -1px;
}

/* Estilo para los selectores dentro de la cápsula */
.select-bumpy-search {
    width: 93%;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    color: var(--azul-bumpy);
    outline: none;
    cursor: pointer;
    appearance: none; /* Quita la flecha nativa */
    padding-right: 20px;
    /* Flecha personalizada Bumpy */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E91E63' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

/* El link de "Ver todo" debajo del buscador */
.buscador-hints {
    margin-top: 15px;
    font-size: 13px;
    color: #888;
}

.link-ver-todo {
    color: var(--azul-bumpy);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.link-ver-todo:hover {
    color: var(--fucsia-bumpy);
    border-bottom-color: var(--fucsia-bumpy);
}

/* Ajuste de padding para los campos */
.search-field {
    flex: 1;
    
    
    align-items: flex-start;
    
    
}

/* =========================
   SECCIÓN RECIÉN CAZADOS (Tech/Radar)
========================= */





.cabecera-seccion {
    text-align: center;
    margin-bottom: 60px;
}

.titulo-radar {
    font-size: 36px;
    font-weight: 900;
    color: var(--azul-bumpy);
    letter-spacing: -1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.punto-live {
    width: 10px;
    height: 10px;
    background: var(--fucsia-bumpy);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--fucsia-bumpy);
    animation: radar-blink 2s infinite;
}

.subtitulo-radar {
    color: #666;
    font-size: 16px;
    margin-top: 5px;
	font-weight:bold;
}

/* GRID SYSTEM */
.grid-fichas-radar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* --- FICHA DE INTELIGENCIA --- */
.ficha-inteligencia {
    background: var(--blanco);
    border-radius: 30px; /* Igual que tu cabecera */
    overflow: hidden;
    border: 1px solid rgba(27, 68, 140, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Efecto Hover: El "Escaneo" se activa */
.ficha-inteligencia:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 30, 99, 0.3); /* Borde fucsia sutil */
    box-shadow: 0 20px 40px rgba(27, 68, 140, 0.12);
}

/* Imagen y Overlay */
.visor-imagen {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.img-coche {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ficha-inteligencia:hover .img-coche {
    transform: scale(1.05);
}

.icono-mapa {
    width: 12px;
    height: 12px;
    stroke: var(--fucsia-bumpy); /* Hereda el color del texto (#888) */
}

/* Scan line effect (opcional, línea que baja escaneando al hacer hover) */
.overlay-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(233,30,99,0.1) 50%, transparent 100%);
    transform: translateY(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}
.ficha-inteligencia:hover .overlay-scan {
    transform: translateY(100%);
    transition: transform 1.5s linear;
}

.tag-baches {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    color: var(--azul-bumpy);
    border: 1px solid rgba(27,68,140,0.1);
}

/* Datos */
.datos-inteligencia {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.info-principal {
    display: flex;
    justify-content: space-between;
    
    margin-bottom: 0px;
}

.info-principal h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--azul-bumpy);
    max-width: 100%;
    line-height: 1.2;
}

/* Año + km debajo del título */
.info-principal{
  align-items:flex-start;
  gap: 14px;
}

.info-left{
  display:flex;
  flex-direction:column;
  gap: 8px;
  min-width: 0;
}

.meta-rapida{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-pill{
  font-size: 12px;
  font-weight: 800;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #eee;
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1;
}

.meta-dot{
  opacity:.35;
  font-weight: 900;
}

/* Mobile: que no se rompa */


.precio {
    font-size: 18px;
    font-weight: 700;
    color: var(--fucsia-bumpy);
}

/* Bumpy Score: Gráfico de Ondas */
.bumpy-score-wrapper {
    background: #fafafa;
    border-radius: 15px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.label-tech {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.ondas-score {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 20px;
}

.bar {
    width: 6px;
    background: var(--azul-bumpy);
    border-radius: 2px;
    animation: equalizer 1s infinite alternate;
}

/* Alturas escalonadas para simular onda */
.bar-1 { height: 40%; animation-delay: 0.1s; }
.bar-2 { height: 70%; animation-delay: 0.2s; }
.bar-3 { height: 100%; animation-delay: 0.3s; }
.bar-4 { height: 60%; animation-delay: 0.4s; }
.bar-5 { height: 30%; animation-delay: 0.5s; }

.bar.inactivo {
    background: #e0e0e0;
    animation: none;
    height: 4px !important; /* Plano */
}

@keyframes equalizer {
    0% { transform: scaleY(0.8); opacity: 0.8; }
    100% { transform: scaleY(1.1); opacity: 1; }
}

/* Footer y Botón Radar */
.footer-ficha {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #eee;
    padding-top: 15px;
}

.ubicacion-tech {
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

.accion-radar {
    text-decoration: none;
    color: var(--azul-bumpy);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.marcador-parpadeante {
    width: 8px;
    height: 8px;
    background: var(--fucsia-bumpy);
    border-radius: 50%;
    animation: radar-blink 1.2s infinite;
}

.accion-radar:hover {
    color: var(--fucsia-bumpy);
    transform: translateX(5px);
}

@keyframes radar-blink {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* =========================
   FOOTER SECCIÓN RECIÉN CAZADOS
========================= */

.footer-cazados {
    text-align: center;
    margin-top: 50px;      /* Espacio para que respire después del grid */
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* El botón con estilo Bumpy */
.footer-cazados .bumpy-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--azul-bumpy);
    color: var(--azul-bumpy);
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.5px;
}

/* Hover Disruptivo: Cambia a Azul con sombra Fucsia */
.footer-cazados .bumpy-btn-ghost:hover {
    background: var(--azul-bumpy);
    color: #ffffff;
    border-color: var(--azul-bumpy);
    /* Sombra dura marca de la casa */
    box-shadow: 6px 6px 0px var(--fucsia-bumpy); 
    transform: translate(-3px, -3px);
}

/* Animación de la flechita al hacer hover */
.footer-cazados .bumpy-btn-ghost:hover {
    padding-right: 40px; /* Un poco más de espacio para la flecha */
}

/* Ajuste para móviles */


/* =========================
   CONTENEDOR MAESTRO (El Cuerpo)
========================= */

.contenedor-bumpy-body {
    width: 95%;
    max-width: 1400px; /* Mismo ancho que header y footer */
	padding:10px 30px;
    margin: 0 auto 40px; /* Margen automático a los lados, 40px abajo para separarse del footer */
    background: var(--blanco); /* Fondo base */
    overflow: hidden; /* Para que el contenido no se salga de los bordes redondos */
    box-shadow: 0 10px 40px rgba(27, 68, 140, 0.08); /* Sombra suave coherente */
    border: 1px solid rgba(255, 255, 255, 0.5); /* Borde sutil si el fondo de la web es gris */
    position: relative;
    z-index: 10;
}

/* Ajustes para las secciones internas para que no sean full-width */

/* 1. Recién Cazados dentro del contenedor */
.section-recien-cazados {
    background: var(--blanco); /* O un gris muy muy suave */
    padding: 60px 40px; /* Padding interno */
    /* Quitamos anchos máximos previos porque ahora el padre manda */
}

.contenedor-cazados {
    max-width: 100%; /* Ocupa todo el contenedor padre */
    margin: 0;
}

/* =========================
   SECCIÓN HERRAMIENTAS (NEO-TECH BUMPY)
========================= */

.section-herramientas {
    padding: 60px 40px;
    background: #f7faff;
    /* Un borde superior grueso para separar secciones */
    border-top: 2px solid #f0f0f0; 
	margin-left: -31px;
	margin-right: -31px;
}

.grid-herramientas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* LA TARJETA TECH */
.card-tech {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: #fff;
    text-decoration: none;
    position: relative;
    border: 2px solid #e0e0e0; /* Borde base gris */
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

/* --- ESTILO FUCSIA (ACCIÓN) --- */
.card-tech.fucsia:hover {
    border-color: var(--fucsia-bumpy);
    box-shadow: 6px 6px 0px var(--fucsia-bumpy); /* Sombra dura disruptiva */
    transform: translate(-3px, -3px);
}

.card-tech.fucsia .tech-icon { color: var(--fucsia-bumpy); }
.card-tech.fucsia:hover .tech-id { color: var(--fucsia-bumpy); }
.card-tech.fucsia .tech-indicator { background: var(--fucsia-bumpy); }


/* --- ESTILO AZUL (DATOS) --- */
.card-tech.azul:hover {
    border-color: var(--azul-bumpy);
    box-shadow: 6px 6px 0px var(--azul-bumpy); /* Sombra dura disruptiva */
    transform: translate(-3px, -3px);
}

.card-tech.azul .tech-icon { color: var(--azul-bumpy); }
.card-tech.azul:hover .tech-id { color: var(--azul-bumpy); }
.card-tech.azul .tech-indicator { background: var(--azul-bumpy); }


/* ELEMENTOS INTERNOS */
.tech-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.tech-icon svg {
    width: 32px;
    height: 32px;
}

.tech-id {
    font-family: "Courier New", monospace; /* Tipografía técnica */
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ccc;
    border: 1px solid #eee;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 0.2s;
}

.card-tech h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 900; /* Extra bold */
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.card-tech p {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Indicador de estado (Barra inferior animada) */
.tech-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.card-tech:hover .tech-indicator {
    width: 100%;
}

/* Responsive */


/* =========================
   RADAR LIVE FEED (VERTICAL)
========================= */

.radar-live-feed {
    background: #0f1014;
    color: var(--blanco);
    top: 20px;
    
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
    padding: 10px 30px;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(27, 68, 140, 0.08);
    position: relative;
    z-index: 10;
}

.feed-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.status-text {
    font-family: "Courier New", monospace;
    font-size: 11px;
    font-weight: 800;
    color: var(--fucsia-bumpy);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--fucsia-bumpy);
    box-shadow: 0 0 8px var(--fucsia-bumpy);
    animation: radar-pulse-simple 1.5s infinite;
}

/* Ventana */
.feed-window {
    height: 24px;
    overflow: hidden;
    position: relative;
    flex-grow: 1;
}

/* Track vertical */
.feed-track {
    display: flex;
    flex-direction: column;
    animation: scroll-feed 12s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Ahora son enlaces */
.feed-item {
    display: block;
    height: 24px;
    line-height: 24px;
    font-size: 13px;
    color: #cbd5e0;
    white-space: nowrap;
    text-decoration: none;
}

.feed-item strong {
    color: var(--blanco);
}

.feed-item:hover {
    color: var(--blanco);
    text-decoration: underline;
}

/* Animación vertical (igual que la tuya) */
@keyframes scroll-feed {
    0% { transform: translateY(0); }
    30% { transform: translateY(-24px); }
    60% { transform: translateY(-48px); }
    90% { transform: translateY(-72px); }
    100% { transform: translateY(-72px); }
}

/* Pulso radar */
@keyframes radar-pulse-simple {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Pausa */
.feed-window:hover .feed-track {
    animation-play-state: paused;
}

/* Responsive */

/* =========================
   SECCIÓN MARCAS (HÍBRIDA)
========================= */

.section-marcas-radar {
    padding: 60px 40px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.header-marcas{
	text-align: center;
    margin-bottom: 50px;
}

.titulo-marcas {
	font-size: 36px;
    font-weight: 900;
    color: var(--azul-bumpy);
    letter-spacing: -1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.subtitulo-marcas {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.grid-marcas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
    align-items: start;
}

/* 1. ESTILO TARJETA TOP (Visual) */
.card-marca {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    border: 2px solid #eee;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #fff;
}

.card-marca:hover {
    border-color: var(--fucsia-bumpy);
    box-shadow: 5px 5px 0px var(--fucsia-bumpy);
    transform: translate(-3px, -3px);
}

.card-marca .logo-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

.card-marca .logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) opacity(0.5);
    transition: 0.3s;
}

.card-marca:hover img { filter: grayscale(0%) opacity(1); }

.card-marca span {
    font-size: 13px;
    font-weight: 800;
    color: #444;
    text-transform: uppercase;
}

/* 2. ESTILO TARJETA COMPACTA (Aplanada) */
.card-marca-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.card-marca-compact img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
}

.card-marca-compact span {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

.card-marca-compact:hover {
    background: #fff;
    border-color: var(--azul-bumpy);
    transform: translateX(5px);
}

.card-marca-compact:hover img { filter: grayscale(0%) opacity(0.9); }

/* Lógica de visibilidad */
.extra-marca.hidden { display: none; }

.btn-container-marcas {
    text-align: center;
    margin-top: 40px;
}

/* Responsive */


/* =========================
   SELECTOR CATEGORÍAS COMPACTO (Fucsia/Azul)
========================= */

.selector-categorias-radar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.card-cat-compact {
    
    
    
    padding: 10px 18px;
    background: #ffffff;
    border: 2px solid #eeeeee;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-cat-compact img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.card-cat-compact span {
    font-size: 13px;
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- ESTADO SELECCIONADO (Fucsia) --- */
.card-cat-compact.activo {
    border-color: var(--fucsia-bumpy);
    box-shadow: 4px 4px 0px var(--fucsia-bumpy);
    transform: translateY(-2px);
}

.card-cat-compact.activo span {
    color: var(--fucsia-bumpy);
}

.card-cat-compact.activo img {
    filter: grayscale(0%) opacity(1);
}

/* --- ESTADO HOVER (Azul Bumpy) --- */
/* Solo aplica si NO tiene la clase .activo para no mezclar colores */
.card-cat-compact:not(.activo):hover {
    border-color: var(--azul-bumpy);
    box-shadow: 4px 4px 0px var(--azul-bumpy);
    transform: translateY(-2px);
}

.card-cat-compact:not(.activo):hover span {
    color: var(--azul-bumpy);
}

.card-cat-compact:not(.activo):hover img {
    filter: grayscale(0%) opacity(1);
}

/* El punto de radar del botón "Todos" */
.dot-radar {
    width: 8px;
    height: 8px;
    background: var(--fucsia-bumpy);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--fucsia-bumpy);
    display: inline-block;
}

/* Responsive */


/*
 * 
 * Ficha del vehiculo
 * 
 * 
 * */

/* --- 1. Identidad --- */
.seccion-identidad-ficha {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alineado arriba para que las etiquetas respiren */
    padding: 30px;
	padding-top: 20px;
    background: #fff;
}

.titulo-principal-ficha {
    font-size: 30px;
    font-weight: 900;
    color: var(--azul-bumpy);
    letter-spacing: -1px;
    margin: 8px 0 15px 0;
}

/* Sistema de Etiquetas Rápidas */
.tags-identidad-rapida {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-bumpy-info {
    background: var(--gris-fondo);
    color: var(--azul-bumpy);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(27, 68, 140, 0.1);
}

.tag-bumpy-loc {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 13px;
    font-weight: 700;
    margin-left: 5px;
}



.monto-destacado small {
    font-size: 16px;
    opacity: 0.6;
}


.btn-volver {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 14px;
    color: #2b5dab;
    cursor: pointer;
    padding: 0;
}

.btn-volver:hover {
    text-decoration: underline;
}

/* Responsive */


/* Bloque derecho de identidad: precio + acciones */
.bloque-precio-acciones{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap: 14px;
  text-align:right;
}

.precio-ficha-destacado{
  font-size: 32px;
  font-weight: 900;
  color: var(--fucsia-bumpy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.precio-ficha-destacado small{
  font-size: 14px;
  opacity: .65;
  font-weight: 800;
  margin-left: 6px;
}

.acciones-ficha-top{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

/* Reutilizamos tu btn-bumpy-tool, solo afinamos tamaño en este contexto */
.acciones-ficha-top .btn-bumpy-tool{
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
}

/* Responsive: ya cambias a columna, aquí lo ponemos alineado izquierda */



/* --- MARCO MAESTRO (Tu estilo aprobado) --- */
.seccion-galeria-visor{
	padding-left:30px;
	padding-right:30px;
}
.marco-galeria-bumpy {
    background: #fff;
    overflow: hidden;
    margin-bottom: 40px;
    height: 500px; 
    position: relative;
}

/* Layout 40% Izq - 60% Der */
.layout-galeria-split {
    display: grid;
    grid-template-columns: 40% 1fr; 
    height: 100%;
    /* Padding para crear el margen blanco alrededor de todo */
    gap: 10px; /* El pasillo blanco central */
}

/* --- ZONA IZQUIERDA (HERO) --- */
.zona-hero-img {
    
    height: 100%;
     /* Redondeada individualmente */
    
    /* SIN borde derecho azul, ahora es hueco blanco */
}

.zona-hero-img img {
     
     display: block;
}

/* --- ZONA DERECHA (GRID SCROLL) --- */
.zona-grid-scroll {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.track-grid-horizontal {
    display: grid;
    grid-template-rows: 1fr 1fr; 
    grid-auto-flow: column;
    /* Cálculo para 2 columnas y media: 39% aprox */
    grid-auto-columns: 39%; 
    gap: 10px; /* Pasillos blancos */
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
}
.track-grid-horizontal::-webkit-scrollbar { display: none; }

.mini-card {
    position: relative;
     /* Redondeadas individualmente */
    
    scroll-snap-align: start;
    cursor: pointer;
    transition: 0.2s;
}

.mini-card img {
     
    
    transition: transform 0.4s;
}

/* Hover sin afectar estructura */
.mini-card:hover img { transform: scale(1.05); }

/* --- TUS BOTONES ORIGINALES (Recuperados) --- */
.botones-flotantes-hero {
    position: absolute; bottom: 25px; left: 25px; display: flex; gap: 12px; z-index: 10;
}

.btn-bumpy-tool {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 8px;
    cursor: pointer;
    color: var(--azul-bumpy);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-bumpy-tool.fucsia:hover {
    border-color: var(--fucsia-bumpy); color: var(--fucsia-bumpy);
    box-shadow: 5px 5px 0px var(--fucsia-bumpy); transform: translate(-3px, -3px);
}

.btn-bumpy-tool.azul:hover {
    border-color: var(--azul-bumpy); color: var(--azul-bumpy);
    box-shadow: 5px 5px 0px var(--azul-bumpy); transform: translate(-3px, -3px);
}

/* --- FLECHA (Estilo Autotrader Bumpy) --- */
.flecha-scroll-bumpy {
	margin-right:20px;
     right: 0;  
      background: #fff;
    border: 2px solid var(--azul-bumpy); border-radius: 50%;
      
    color: var(--azul-bumpy); 
    box-shadow: 2px 2px 0px var(--fucsia-bumpy); transition: all 0.2s; z-index: 10;
}
.flecha-scroll-bumpy:hover {
    transform: translateY(-50%) scale(1.1); background: var(--azul-bumpy); color: #fff; border-color: var(--azul-bumpy);
}

/* RESPONSIVE */


/* Sidebar Sticky con tu marco aprobado */
.tarjeta-vendedor-sticky {
    position: sticky;
    top: 40px;
    background: #fff;
    border: 3px solid var(--azul-bumpy);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 8px 8px 0px var(--azul-bumpy);
}

.vendedor-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.v-nombre {
    margin: 0;
    font-size: 18px;
    color: var(--azul-bumpy);
    font-weight: 900;
}

.estrellas {
    color: #FFD700;
    font-size: 14px;
    display: block;
}

.antiguedad {
    font-size: 11px;
    color: #999;
    font-weight: 700;
}

.full-width {
    justify-content: center;
    margin-bottom: 12px;
}

/* Caja Seguridad */
.caja-seguridad-bumpy {
    background: #fdf2f5;
    border: 1px dashed var(--fucsia-bumpy);
    padding: 15px;
    margin-top: 20px;
    border-radius: 12px;
}

.caja-seguridad-bumpy h5 {
    color: var(--fucsia-bumpy);
    margin: 0 0 10px 0;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.caja-seguridad-bumpy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.caja-seguridad-bumpy li {
    font-size: 11px;
    color: #555;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    padding-left: 12px;
}

.caja-seguridad-bumpy li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--fucsia-bumpy);
}

/* =========================
   ESTRUCTURA DE COLUMNAS BUMPY
========================= */

/* 1. El contenedor padre que divide la pantalla */
.cuerpo-dual-ficha {
    display: grid;
    /* Izquierda flexible (datos), Derecha fija (contacto) */
    grid-template-columns: 1fr 360px; 
    gap: 40px;
    padding: 0 40px 60px;
    align-items: start;
}

/* 2. Columna izquierda: Se adapta al contenido */
.columna-datos {
    display: flex;
    flex-direction: column;
    gap: 22px; /* Espacio entre los bloques internos */
}

/* 3. Columna derecha: El espacio para el contacto */
.columna-contacto {
    position: relative;
    /* El aside ocupa su ancho, el contenido dentro decidirá si es sticky o no */
}

/* Responsive para que en móviles sea una sola columna */


/* =========================================================
   DIAGNÓSTICO VISUAL (debajo de galería) — BLOQUE COMPLETO
========================================================= */

.bumpy-diagnostico-grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.bumpy-diagnostico-grid-inferior{
  display: grid;
  grid-template-columns: repeat(18, minmax(0, 1fr));
  gap: 18px; /* ajusta a tu gusto */
  align-items: stretch;
}

/* Mobile: 1 columna */




/* Cards base */
.bumpy-card-diag{
  background: var(--blanco);
  border: 2px solid #eee;
  border-radius: 18px;
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
  transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bumpy-card-diag:hover{
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(27,68,140,0.10);
  border-color: rgba(27,68,140,0.18);
}

/* Header */
.diag-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.diag-kicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9aa3af;
}

.diag-title h3{
  margin: 3px 0 0 0;
  font-size: 15px;
  font-weight: 900;
  color: var(--azul-bumpy);
  letter-spacing: -0.3px;
}

/* Chips de estado */
.diag-chip{
  display:inline-flex;
  align-items:center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .3px;
  border: 1px solid #eee;
  background: #fafafa;
  color: #444;
  white-space: nowrap;
}

/* Estados “legacy” que ya tenías */
.diag-chip-ok{
  color: var(--azul-bumpy);
  border-color: rgba(27,68,140,0.22);
  background: rgba(27,68,140,0.06);
}

.diag-chip-hot{
  color: var(--fucsia-bumpy);
  border-color: rgba(233,30,99,0.28);
  background: rgba(233,30,99,0.06);
}

.diag-chip-mid{
  color: #7b5a00;
  border-color: rgba(123,90,0,0.25);
  background: rgba(123,90,0,0.06);
}

.diag-chip-neutral{
  color: #666;
  border-color: rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
}

.diag-chip-live{
  color: var(--fucsia-bumpy);
  border-color: rgba(233,30,99,0.28);
  background: rgba(233,30,99,0.06);
}
.diag-chip-live .pulse{
  width:7px; height:7px;
  border-radius: 50%;
  background: var(--fucsia-bumpy);
  box-shadow: 0 0 8px var(--fucsia-bumpy);
  animation: radar-pulse-simple 1.5s infinite;
}

/* NUEVO: tonos por clase (para precio y riesgo) */
.diag-chip.is-green,
.mini-tag.is-green{
  color: var(--bumpy-green);
  border-color: rgba(34,197,94,0.35);
  background: var(--bumpy-green-soft);
}

.diag-chip.is-amber,
.mini-tag.is-amber{
  color: var(--bumpy-amber);
  border-color: rgba(245,158,11,0.35);
  background: var(--bumpy-amber-soft);
}

.diag-chip.is-red,
.mini-tag.is-red{
  color: var(--bumpy-red);
  border-color: rgba(239,68,68,0.35);
  background: var(--bumpy-red-soft);
}

.diag-chip.is-neutral,
.mini-tag.is-neutral{
  color: #666;
  border-color: rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
}

.mini-tag.is-green{
  background: #dcfce7;
}

.mini-tag.is-amber{
  background: #fef3c7;
}

.mini-tag.is-red{
  background: #fee2e2;
}

.mini-tag.is-neutral{
  background: #f2f2f2;
}

/* Body */
.diag-body{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.diag-msg{
  margin: 0;
  font-size: 13px;
  color: #666;
  font-weight: 600;
  line-height: 1.45;
}

/* Footer */
.diag-foot{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.diag-mini{
  font-size: 11px;
  color: #888;
  font-weight: 700;
}

/* pequeñas variaciones (para que el link no empuje raro) */
.diag-foot-tight .diag-mini{ white-space: nowrap; }
.diag-foot-link{ align-items: center; }

/* Grid placement (desktop) */





.diag-interes{margin-top:30px;}
/* ====== Estado (ondas) ====== */
.diag-meter-ondas{
  display:flex;
  gap: 5px;
  align-items: flex-end;
  height: 46px;
  padding: 14px 12px;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 14px;
}

.diag-bar{
  width: 7px;
  border-radius: 3px;
  background: var(--azul-bumpy);
  animation: diag-eq 1s infinite alternate;
  opacity: .95;
}
.diag-bar.b1{ height: 35%; animation-delay: .08s; }
.diag-bar.b2{ height: 60%; animation-delay: .18s; }
.diag-bar.b3{ height: 95%; animation-delay: .28s; }
.diag-bar.b4{ height: 55%; animation-delay: .38s; }
.diag-bar.b5{ height: 30%; animation-delay: .48s; }

@keyframes diag-eq{
  0%{ transform: scaleY(.85); opacity: .75; }
  100%{ transform: scaleY(1.1); opacity: 1; }
}

/* ====== Precio (barra) ====== */
.diag-price-row{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.diag-price{
  font-size: 22px;
  font-weight: 900;
  color: var(--fucsia-bumpy); /* se queda en rosa/rojo de tu marca */
  letter-spacing: -0.4px;
}
.diag-price small{
  font-size: 11px;
  opacity: .65;
  font-weight: 800;
  margin-left: 6px;
}

/* NUEVO: “Desde x / mes” (demo) */
.diag-monthly{
  display:flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fafafa;
  white-space: nowrap;
}
.diag-monthly .m-label{
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #9aa3af;
  font-family: "Courier New", monospace;
}
.diag-monthly .m-val{
  font-size: 16px;
  font-weight: 900;
  color: var(--azul-bumpy);
  letter-spacing: -0.2px;
}
.diag-monthly .m-suf{
  font-size: 11px;
  font-weight: 900;
  color: #9aa3af;
}

/* Barra radar */
.diag-barwrap{
  position: relative;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}

.diag-track{
  position:absolute; inset:0;
  background: rgba(0,0,0,0.08);
}

/* por defecto (neutral) */
.diag-fill{
  position:absolute; left:0; top:0; bottom:0;
  background: rgba(27,68,140,0.18);
}

.diag-marker{
  position:absolute;
  top:50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  border: 2px solid rgba(27,68,140,0.55);
}

/* Colores por estado (aplicados desde JS con clases) */
.diag-barwrap.is-green .diag-fill{ background: rgba(34,197,94,0.22); }
.diag-barwrap.is-green .diag-marker{ border-color: rgba(34,197,94,0.8); }

.diag-barwrap.is-neutral .diag-fill{ background: rgba(27,68,140,0.18); }
.diag-barwrap.is-neutral .diag-marker{ border-color: rgba(27,68,140,0.55); }

.diag-barwrap.is-amber .diag-fill{ background: rgba(245,158,11,0.22); }
.diag-barwrap.is-amber .diag-marker{ border-color: rgba(245,158,11,0.85); }

.diag-barwrap.is-red .diag-fill{ background: rgba(239,68,68,0.22); }
.diag-barwrap.is-red .diag-marker{ border-color: rgba(239,68,68,0.85); }

.diag-scale{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 10px;
  font-weight: 800;
  color: #999;
  letter-spacing: .3px;
}

/* ====== Riesgo (lista) ====== */
.diag-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.diag-list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 13px;
  color: #666;
  font-weight: 650;
  line-height: 1.4;
}

.diag-ico{
  width: 30px;
  height: 30px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fafafa;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--azul-bumpy);
  flex: 0 0 auto;
}

/* ====== Links (reutilizado) ====== */
.diag-link{
  text-decoration:none;
  color: var(--azul-bumpy);
  font-weight: 900;
  font-size: 12px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  transition: .2s ease;
  white-space: nowrap;
}
.diag-link:hover{
  color: var(--fucsia-bumpy);
  transform: translateX(3px);
}
.diag-link-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fucsia-bumpy);
  box-shadow: 0 0 8px var(--fucsia-bumpy);
  animation: radar-blink 1.2s infinite;
}

/* enlace de “ver anuncios similares” (solo detalle visual) */
.diag-link-compare{ font-weight: 900; }

/* ====== Interés (stats) ====== */
.diag-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.diag-stat{
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 14px;
  padding: 10px 10px 9px;
}

.diag-stat .n{
  display:block;
  font-size: 18px;
  font-weight: 900;
  color: var(--azul-bumpy);
  letter-spacing: -0.4px;
}

.diag-stat .t{
  display:block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 800;
  color: #999;
  letter-spacing: .6px;
  text-transform: uppercase;
}

/* ====== Uso (chips) ====== */
.diag-chips{
  display:flex;
  flex-wrap: wrap;
  gap: 7px;
}

.use-chip{
  display:inline-flex;
  align-items:center;
  gap: 5px;
  padding: 8px 6px;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fafafa;
  color: var(--azul-bumpy);
  font-weight: 900;
  font-size: 12px;
}
.use-chip svg{ color: var(--fucsia-bumpy); }

/* Responsive grid (solo básico, sin entrar en móvil fino todavía) */


/* Grid placement (desktop) — 2 / 2 / 2 */
.diag-estado{ grid-column: span 6; }
.diag-precio{ grid-column: span 6; }

.diag-riesgo{ grid-column: span 6; }
.diag-interes{ grid-column: span 6; }

.diag-uso{ grid-column: span 6; }
.diag-coste{ grid-column: span 6; }

/* =========================================================
   COSTE ANUAL (tarjeta diag-coste)
========================================================= */

.diag-annual-row{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.diag-annual{
  font-size: 22px;
  font-weight: 900;
  color: var(--azul-bumpy);
  letter-spacing: -0.4px;
  line-height: 1.1;
}
.diag-annual small{
  font-size: 12px;
  opacity: .65;
  font-weight: 800;
  margin-left: 6px;
}

.diag-annual-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding: 8px 12px;
  border-radius: 14px;
  border: 2px solid rgba(27,68,140,0.18);
  background: #fff;
  color: var(--azul-bumpy);
  font-weight: 900;
  font-size: 12px;
  transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.diag-annual-link:hover{
  border-color: var(--azul-bumpy);
  box-shadow: 4px 4px 0px rgba(27,68,140,0.18);
  transform: translate(-2px, -2px);
  color: var(--fucsia-bumpy);
}

.diag-annual-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0px;
}

.diag-annual-box{
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 14px;
  padding: 10px 10px 9px;
}

.diag-annual-box .k{
  display:block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 900;
  color: #999;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-family: "Courier New", monospace;
}

.diag-annual-box .n{
  display:block;
  font-size: 16px;
  font-weight: 900;
  color: var(--azul-bumpy);
  letter-spacing: -0.3px;
}

/* =========================================================
   DATOS + DESCRIPCIÓN + SIMILARES (ficha)
========================================================= */

/* Panel base */
.bumpy-vehiculo-section{
  display:flex;
  flex-direction:column;
  gap: 22px;
}

.bumpy-panel{
  background: var(--blanco);
  border: 2px solid #eee;
  border-radius: 18px;
  padding: 16px;
  transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bumpy-panel:hover{
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(27,68,140,0.10);
  border-color: rgba(27,68,140,0.18);
}

.bumpy-panel-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.bumpy-panel-title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--azul-bumpy);
  letter-spacing: -0.3px;
}

.bumpy-linkbtn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  border: 1px solid #eee;
  background: #fafafa;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: var(--azul-bumpy);
  cursor:pointer;
  white-space: nowrap;
  transition: .2s ease;
}
.bumpy-linkbtn:hover{
  color: var(--fucsia-bumpy);
  border-color: rgba(233,30,99,0.28);
  background: rgba(233,30,99,0.06);
  transform: translateX(2px);
}
.bumpy-arrow{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* ====== OVERVIEW GRID ====== */
.bumpy-overview-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ov-item{
  display:flex;
  gap: 10px;
  align-items:center;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 14px;
  padding: 12px;
}

.ov-ico{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--azul-bumpy);
  flex: 0 0 auto;
}

.ov-txt .k{
  display:block;
  font-size: 10px;
  font-weight: 900;
  color: #9aa3af;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.ov-txt .v{
  display:block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 900;
  color: #222;
  letter-spacing: -0.2px;
}

/* ====== DESCRIPCIÓN plegable ====== */
.bumpy-collapse{
  position: relative;
  padding-bottom: 44px; /* espacio para botón */
}

.bumpy-collapse-inner{
  font-size: 15px;
  color:#444;
  line-height: 1.6;
}

.bumpy-collapse-inner p{
  margin: 0 0 10px 0;
}

.bumpy-collapse[data-collapsed="1"] .bumpy-collapse-inner{
  max-height: 92px; /* 3-4 líneas aprox */
  overflow: hidden;
}

.bumpy-fade{
  position:absolute;
  left:0; right:0;
  bottom: 44px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events:none;
  opacity: 1;
}

.bumpy-collapse[data-collapsed="0"] .bumpy-fade{
  opacity: 0;
}

.bumpy-collapse-btn{
  position:absolute;
  left:0;
  bottom: 0;
  width: fit-content;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  border: 1px solid #eee;
  background: #fafafa;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: var(--azul-bumpy);
  cursor:pointer;
  transition: .2s ease;
}
.bumpy-collapse-btn:hover{
  color: var(--fucsia-bumpy);
  border-color: rgba(233,30,99,0.28);
  background: rgba(233,30,99,0.06);
  transform: translateX(2px);
}

/* ====== SIMILARES ====== */
.bumpy-similares-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bumpy-mini-card{
  display:block;
  text-decoration:none;
  border: 2px solid #eee;
  border-radius: 18px;
  overflow:hidden;
  background:#fff;
  transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bumpy-mini-card:hover{
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(233,30,99,0.10);
  border-color: rgba(233,30,99,0.22);
}

.mini-img{
  position: relative;
  height: 140px;
  overflow:hidden;
}
.mini-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform .35s ease;
}
.bumpy-mini-card:hover .mini-img img{
  transform: scale(1.05);
}

.mini-tag{
  position:absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  color: var(--azul-bumpy);
}

.mini-body{
  padding: 12px 12px 14px;
}

.mini-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}

.mini-title{
  font-size: 14px;
  font-weight: 900;
  color: var(--azul-bumpy);
  letter-spacing: -0.2px;
}

.mini-price{
  font-size: 14px;
  font-weight: 900;
  color: var(--fucsia-bumpy);
  white-space: nowrap;
}

.mini-meta{
  margin-top: 8px;
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color:#7a7a7a;
}
.mini-meta .dot{
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
}

/* ====== DRAWER ====== */
body.bumpy-lock{ overflow:hidden; }

.bumpy-drawer{
  
  
  
  
  opacity: 0;
  transition: opacity .2s ease;
}
.bumpy-drawer[aria-hidden="false"]{
  
  opacity: 1;
}

.bumpy-drawer-backdrop{
  position:absolute;
  inset:0;
  background: rgba(10,12,18,0.45);
}

.bumpy-drawer-panel{
  position:absolute;
  top: 0;
  right: 0;
  width: min(480px, 92vw);
  height: 100%;
  background: #fff;
  border-left: 2px solid #eee;
  box-shadow: -20px 0 60px rgba(0,0,0,0.18);
  transform: translateX(16px);
  transition: transform .2s ease;
  display:flex;
  flex-direction: column;
}
.bumpy-drawer[aria-hidden="false"] .bumpy-drawer-panel{
  transform: translateX(0);
}

.bumpy-drawer-head{
  padding: 16px 16px 12px;
  border-bottom: 1px solid #eee;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}
.bumpy-drawer-title h3{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--azul-bumpy);
  letter-spacing: -0.3px;
}
.bumpy-drawer-title p{
  margin: 6px 0 0;
  font-size: 12px;
  color:#666;
  font-weight: 700;
}
.bumpy-drawer-close{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fafafa;
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  color:#111;
}
.bumpy-drawer-close:hover{
  border-color: rgba(233,30,99,0.28);
  background: rgba(233,30,99,0.06);
  color: var(--fucsia-bumpy);
}

.bumpy-drawer-body{
  padding: 14px 16px 18px;
  overflow:auto;
}

.bumpy-drawer-search{
  display:flex;
  align-items:center;
  gap: 10px;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.bumpy-drawer-search .sico{ opacity:.8; }
.bumpy-drawer-search input{
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-weight: 800;
  color: #111;
}

.bumpy-acc{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.acc-head{
  width:100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #eee;
  background: #fff;
  border-radius: 14px;
  padding: 12px 12px;
  cursor:pointer;
  font-weight: 900;
  color: #111;
}
.acc-head:hover{
  border-color: rgba(27,68,140,0.18);
  box-shadow: 4px 4px 0 rgba(27,68,140,0.08);
  transform: translate(-1px, -1px);
}
.acc-count{
  border: 1px solid #eee;
  background: #fafafa;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--azul-bumpy);
}

.acc-body{
  max-height: 0px;
  overflow:hidden;
  padding: 0 12px;
  transition: max-height .2s ease;
}
.acc-body ul{
  margin: 10px 0 12px;
  padding-left: 18px;
  color:#444;
  font-weight: 700;
}

.bumpy-drawer-note{
  margin: 14px 0 0;
  font-size: 11px;
  color:#888;
  font-weight: 700;
  line-height: 1.45;
}

/* ====== Responsive ====== */



/* =========================================================
   BLOQUES MINI: Lo mejor/A considerar + Preguntas
========================================================= */

.bumpy-panel.bumpy-mini-insights,
.bumpy-panel.bumpy-mini-qa{
  background: var(--blanco);
  border: 2px solid #eee;
  border-radius: 18px;
  padding: 16px;
  margin-top: 24px;
}

.bumpy-panel.bumpy-mini-insights{
  background: var(--blanco);
  border: 2px solid #eee;
  border-radius: 18px;
  padding: 16px;
  margin-top:0px;
}

.bumpy-mini-kicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9aa3af;
  margin-left: auto;
}

/* ===== Insights: 2 columnas ===== */
.bumpy-mini-cols{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.mini-col{
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 16px;
  padding: 12px 12px 10px;
}

.mini-col-head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}

.mini-col-ico{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.8);
  color: var(--azul-bumpy);
  flex: 0 0 auto;
}

.mini-col h3{
  margin: 0;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: -0.2px;
  color: #1b2b4f;
}

.mini-chip{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .3px;
  border: 1px solid #eee;
  background: #fff;
  color: #444;
  white-space: nowrap;
}

.mini-chip-green{
  color: var(--bumpy-green);
  border-color: rgba(34,197,94,0.28);
  background: var(--bumpy-green-soft);
}

.mini-chip-amber{
  color: var(--bumpy-amber);
  border-color: rgba(245,158,11,0.30);
  background: var(--bumpy-amber-soft);
}

.mini-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.mini-list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 13px;
  color: #666;
  font-weight: 650;
  line-height: 1.4;
}

.mini-bullet{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.10);
  margin-top: 4px;
  flex: 0 0 auto;
}

.mini-col.is-good .mini-bullet{ background: rgba(34,197,94,0.25); }
.mini-col.is-watch .mini-bullet{ background: rgba(245,158,11,0.28); }

/* Footer note (shared) */
.bumpy-mini-foot{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
}

.mini-foot-note{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 12px;
  font-weight: 750;
  color: #6b7280;
  line-height: 1.35;
}

.mini-foot-ico{
  width: 26px;
  height: 26px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--azul-bumpy);
  flex: 0 0 auto;
}

/* ===== Preguntas: cards clicables ===== */
.qa-grid{
  display:grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.qa-card{
  width: 100%;
  text-align: left;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 16px;
  padding: 12px 12px 10px;
  display:flex;
  align-items:flex-start;
  gap: 10px;
  cursor: pointer;
  transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qa-card:hover{
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(27,68,140,0.10);
  border-color: rgba(27,68,140,0.18);
}

.qa-ico{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.8);
  color: var(--azul-bumpy);
  flex: 0 0 auto;
}

.qa-txt{
  display:flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.qa-txt .k{
  font-size: 12px;
  font-weight: 1000;
  color: #1b2b4f;
  letter-spacing: -0.2px;
}

.qa-txt .v{
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  line-height: 1.35;
}

.qa-cta{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 11px;
  font-weight: 950;
  color: var(--azul-bumpy);
  white-space: nowrap;
  padding-left: 10px;
}

.qa-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fucsia-bumpy);
  box-shadow: 0 0 8px var(--fucsia-bumpy);
  animation: radar-blink 1.2s infinite;
}

/* Toast */
.qa-foot{
  position: relative;
}

.qa-toast{
  position:absolute;
  right: 12px;
  top: -10px;
  transform: translateY(-8px);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 24px rgba(27,68,140,0.10);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 950;
  color: #1b2b4f;
  opacity: 0;
  pointer-events: none;
}

.qa-toast.is-on{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .15s ease, transform .15s ease;
}

/* Responsive */


/* ====== Riesgo: señal principal ====== */
.diag-signal{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 14px;
  background: rgba(245,158,11,0.08); /* ámbar suave */
  border: 1px solid rgba(245,158,11,0.28);
}

.diag-signal p{
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #7b5a00;
  line-height: 1.45;
}

.diag-signal .diag-ico{
  background: #fff;
  border-color: rgba(245,158,11,0.35);
  color: var(--bumpy-amber);
}


/* ====== Riesgo: recomendación ====== */
.diag-hint{
  margin-top: 8px;
  padding-left: 4px;
}

.diag-hint-label{
  display:block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9aa3af;
  font-family: "Courier New", monospace;
}

.diag-hint p{
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  line-height: 1.45;
}


/* ====== Riesgo por estado ====== */

/* SEGURO */
.diag-riesgo.is-green .diag-signal{
  background: var(--bumpy-green-soft);
  border-color: rgba(34,197,94,0.35);
}
.diag-riesgo.is-green .diag-signal p{
  color: #166534;
}
.diag-riesgo.is-green .diag-ico{
  color: var(--bumpy-green);
  border-color: rgba(34,197,94,0.4);
}

/* PRECAUCIÓN */
.diag-riesgo.is-amber .diag-signal{
  background: var(--bumpy-amber-soft);
  border-color: rgba(245,158,11,0.35);
}
.diag-riesgo.is-amber .diag-signal p{
  color: #7b5a00;
}
.diag-riesgo.is-amber .diag-ico{
  color: var(--bumpy-amber);
  border-color: rgba(245,158,11,0.4);
}

/* PELIGRO */
.diag-riesgo.is-red .diag-signal{
  background: var(--bumpy-red-soft);
  border-color: rgba(239,68,68,0.35);
}
.diag-riesgo.is-red .diag-signal p{
  color: #7f1d1d;
}
.diag-riesgo.is-red .diag-ico{
  color: var(--bumpy-red);
  border-color: rgba(239,68,68,0.4);
}

.diag-ico svg{ display:none; }

.diag-riesgo.is-green .ico-safe{ display:block; }
.diag-riesgo.is-amber .ico-warn{ display:block; }
.diag-riesgo.is-red .ico-danger{ display:block; }

/* =========================================================
   BUMPY — Dealer profile (Hero + About)
   - minimal, no saturación
   - mobile-first
========================================================= */

.bumpy-dealer-hero{
  padding: 18px 30px 14px;
}

.bumpy-dealer-hero__row{
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top:8px;
}

.bumpy-dealer-hero__logo{
  width: 86px;
  height: 86px;
  border-radius: 20px;
  border: 2px solid #eee;
  background: #fafafa;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.bumpy-dealer-hero__logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.bumpy-dealer-hero__logo-fallback{
  font-weight: 1000;
  font-size: 22px;
  color: var(--azul-bumpy);
  letter-spacing: -0.5px;
}

.bumpy-dealer-hero__name{
  margin: 0 0 10px 0;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -1px;
  color: var(--azul-bumpy);
}

.bumpy-dealer-hero__chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bumpy-chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid #eee;
  background: #fff;
  color: #333;
  white-space: nowrap;
}

.bumpy-chip .dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fucsia-bumpy);
  box-shadow: 0 0 8px rgba(233,30,99,0.25);
}

/* estados */
.bumpy-chip--observed{
  border-color: rgba(245,158,11,0.35);
  background: rgba(245,158,11,0.10);
  color: #7b5a00;
}
.bumpy-chip--observed .dot{ background: #f59e0b; box-shadow: none; }

.bumpy-chip--claimed{
  border-color: rgba(27,68,140,0.25);
  background: rgba(27,68,140,0.06);
  color: var(--azul-bumpy);
}
.bumpy-chip--claimed .dot{ background: var(--azul-bumpy); box-shadow:none; }

.bumpy-chip--verified{
  border-color: rgba(34,197,94,0.30);
  background: rgba(34,197,94,0.10);
  color: #166534;
}
.bumpy-chip--verified .dot{ background: #22c55e; box-shadow:none; }

/* chip suave (especialidad / rating) */
.bumpy-chip--soft{
  background: #fafafa;
}

/* CTA */
.bumpy-dealer-hero__cta{
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 240px;
}

.bumpy-dealer-hero__cta .btn-bumpy-tool{
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 12px;
}

/* Claim (pequeño, debajo, sin molestar) */
.bumpy-dealer-hero__claim{
  margin-top: 12px;
  padding-top: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #6b7280;
}
.bumpy-dealer-hero__claim a{
  color: var(--azul-bumpy);
  font-weight: 1000;
  text-decoration: none;
}
.bumpy-dealer-hero__claim a:hover{
  color: var(--fucsia-bumpy);
}

/* divisor */
.bumpy-dealer-divider{
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(27,68,140,0.0),
    rgba(27,68,140,0.14),
    rgba(233,30,99,0.14),
    rgba(27,68,140,0.0)
  );
  margin: 10px 0 18px;
}

/* ABOUT */


/* bloque about centrado */
.bumpy-about{
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0 44px; /* espacio botón */
}

.bumpy-about__text{
  text-align: center; /* descripción centrada */
  font-size: 16px;
  color:#444;
  line-height: 1.65;
  font-weight: 650;
}

.bumpy-about__text p{
  margin: 0 0 10px 0;
}

.bumpy-about[data-collapsed="1"] .bumpy-about__text{
  max-height: 86px;
  overflow: hidden;
}

.bumpy-about__fade{
  position:absolute;
  left:0; right:0;
  bottom: 44px;
  height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events:none;
  opacity: 1;
}

.bumpy-about[data-collapsed="0"] .bumpy-about__fade{
  opacity: 0;
}

.bumpy-about__btn{
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  border: 1px solid #eee;
  background: #fafafa;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 1000;
  font-size: 12px;
  color: var(--azul-bumpy);
  cursor:pointer;
  transition: .2s ease;
}

.bumpy-about__btn:hover{
  color: var(--fucsia-bumpy);
  border-color: rgba(233,30,99,0.28);
  background: rgba(233,30,99,0.06);
  transform: translateX(-50%) translateY(-1px);
}

.bumpy-about__arrow{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* facts debajo, discretos */
.bumpy-dealer-facts{
  margin: 16px auto 0;
  max-width: 820px;
  display: grid;
  gap: 10px;
}

.bumpy-dealer-fact{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 16px;
  padding: 12px 14px;
}

.bumpy-dealer-fact .k{
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: #9aa3af;
  font-family: "Courier New", monospace;
  min-width: 90px;
}

.bumpy-dealer-fact .v{
  font-size: 13px;
  font-weight: 800;
  color:#374151;
}

.bumpy-dealer-fact .v a{
   color: var(--fucsia-bumpy);
  text-decoration: none;
  font-weight: 1000;
}
.bumpy-dealer-fact .v a:hover{
  color: var(--azul-bumpy);
}

/* =========================
   MOBILE
========================= */


/* Iconos SVG categorías radar */
.card-cat-compact{
  display:flex;
  align-items:center;
  gap:8px;
}

.card-cat-compact .cat-ico{
  width:18px;
  height:18px;
  color:#999;
  flex:0 0 auto;
  transition: color .2s ease, transform .2s ease;
}

.card-cat-compact:hover .cat-ico{
  color: var(--azul-bumpy);
  transform: translateY(-1px);
}

.card-cat-compact.activo .cat-ico{
  color: var(--fucsia-bumpy);
}

/* =========================================================
   SIMILARES — addons: score mini + footer mini
   (no rompe tus estilos existentes)
========================================================= */

.bumpy-similares .mini-score{
  margin-top: 10px;
  padding: 14px 14px;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 14px;

  display:flex;
  align-items:center;
  gap: 10px;
}

.bumpy-similares .mini-score-label{
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: #9aa3af;
  font-family: "Courier New", monospace;
  white-space: nowrap;
}

.bumpy-similares .mini-ondas-score{
  margin-left: auto;
  display:flex;
  gap: 4px;
  align-items:flex-end;
  height: 18px;
}

.bumpy-similares .mini-ondas-score .bar{
  width: 6px;
  background: var(--azul-bumpy);
  border-radius: 2px;
  animation: equalizer 1s infinite alternate;
  opacity: .18; /* apagadas por defecto */
}

/* Reutiliza tus alturas, pero un pelín más bajas */
.bumpy-similares .mini-ondas-score .bar-1{ height: 35%; animation-delay:.10s; }
.bumpy-similares .mini-ondas-score .bar-2{ height: 60%; animation-delay:.20s; }
.bumpy-similares .mini-ondas-score .bar-3{ height: 100%; animation-delay:.30s; }
.bumpy-similares .mini-ondas-score .bar-4{ height: 55%; animation-delay:.40s; }
.bumpy-similares .mini-ondas-score .bar-5{ height: 30%; animation-delay:.50s; }

/* Activación por score (enciende N barras) */
.bumpy-similares .mini-ondas-score[data-score="1"] .bar-1{ opacity:.95; }
.bumpy-similares .mini-ondas-score[data-score="2"] .bar-1,
.bumpy-similares .mini-ondas-score[data-score="2"] .bar-2{ opacity:.95; }
.bumpy-similares .mini-ondas-score[data-score="3"] .bar-1,
.bumpy-similares .mini-ondas-score[data-score="3"] .bar-2,
.bumpy-similares .mini-ondas-score[data-score="3"] .bar-3{ opacity:.95; }
.bumpy-similares .mini-ondas-score[data-score="4"] .bar-1,
.bumpy-similares .mini-ondas-score[data-score="4"] .bar-2,
.bumpy-similares .mini-ondas-score[data-score="4"] .bar-3,
.bumpy-similares .mini-ondas-score[data-score="4"] .bar-4{ opacity:.95; }
.bumpy-similares .mini-ondas-score[data-score="5"] .bar{ opacity:.95; }

/* Badge mini (mismo sistema que tus chips diag) */
.bumpy-similares .mini-score-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid #eee;
  background: #fff;
  color:#444;
  white-space: nowrap;
}

.bumpy-similares .mini-score-badge.is-green{
  color: var(--bumpy-green);
  border-color: rgba(34,197,94,0.28);
  background: var(--bumpy-green-soft);
}
.bumpy-similares .mini-score-badge.is-amber{
  color: var(--bumpy-amber);
  border-color: rgba(245,158,11,0.30);
  background: var(--bumpy-amber-soft);
}
.bumpy-similares .mini-score-badge.is-red{
  color: var(--bumpy-red);
  border-color: rgba(239,68,68,0.28);
  background: var(--bumpy-red-soft);
}
.bumpy-similares .mini-score-badge.is-neutral{
  color: #666;
  border-color: rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
}

/* Footer mini: ubicación + “ver ficha” */
.bumpy-similares .mini-foot{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #eee;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.bumpy-similares .mini-loc{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #888;
  width: 150px;
}

.bumpy-similares .mini-loc-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27,68,140,0.25);
}

.mini-ico-map{
	width: 16px;
}

/* CTA estilo radar */
.bumpy-similares .mini-cta{
  text-decoration:none;
  color: var(--azul-bumpy);
  font-size: 12px;
  font-weight: 900;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  transition: .2s ease;
  white-space: nowrap;
}

.bumpy-similares .mini-dot-live{
  width: 8px;
  height: 8px;
  background: var(--fucsia-bumpy);
  border-radius: 50%;
  animation: radar-blink 1.2s infinite; /* ya lo tienes */
}

.bumpy-mini-card:hover .mini-cta{
  color: var(--fucsia-bumpy);
  transform: translateX(2px);
}

/* =========================
   SELLER ANALYSIS (reusa bumpy-card-diag)
========================= */

.bumpy-seller-analysis{
  margin-top: 22px;
  background: #f7faff !important;
}

.bumpy-seller-head{
  margin-bottom: 12px;
}

/* Grid 2 + 3 */
.bumpy-seller-grid{
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.bumpy-seller-grid--2{
  grid-template-columns: 1.2fr 1.8fr; /* actividad un poco más ancha */
}

.bumpy-seller-grid--3{
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

/* Métrica grande estilo coherente */
.seller-metric-row{
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 12px;
  margin-bottom: 12px;
}

.seller-metric{
  background: #fbfbfb;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 10px 12px;
}

.seller-metric .k{
  display:block;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  margin-bottom: 2px;
}

.seller-metric .v{
  font-size: 18px;
  font-weight: 900;
  color: #0c151c;
}

.seller-metric .v.big{
  font-size: 34px;
  line-height: 1;
  color: var(--azul-bumpy);
}

/* Mini grid interno tipo “fichas” */
.seller-mini-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.seller-mini-grid--2{
  grid-template-columns: repeat(2, 1fr);
}

.seller-mini{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 9px 10px;
}

.seller-mini .k{
  display:block;
  font-size: 11px;
  font-weight: 800;
  color: #777;
  margin-bottom: 2px;
}

.seller-mini .v{
  display:block;
  font-size: 13px;
  font-weight: 900;
  color: #0c151c;
}

/* Chips coherentes: usar los existentes */
.seller-tags .use-chip{
  /* si ya tienes .use-chip definido, esto sobra.
     lo dejo suave por si aquí queda distinto */
  border-radius: 999px;
}

/* Responsive */


.concesionario{padding-top:30px; margin-top:0px;}

/* =========================================================
   BUMPY — Señales de confianza (FULL WIDTH)
   - usa tus variables y tu estética (bordes + shadow duro)
   - estados: is-green / is-amber / is-red
========================================================= */

.bumpy-seller-trust-signal{
  margin-top: 18px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 2px solid #eee;
  background: #fff;
  transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

/* Hover suave “Bumpy” */
.bumpy-seller-trust-signal:hover{
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(27,68,140,0.10);
  border-color: rgba(27,68,140,0.18);
}

/* Header: título + chip */
.bumpy-seller-trust-signal .seller-signal-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.bumpy-seller-trust-signal .seller-signal-title{
  min-width: 0;
}

.bumpy-seller-trust-signal .seller-signal-kicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9aa3af;
  margin-bottom: 6px;
}

.bumpy-seller-trust-signal .seller-signal-title h3{
  margin: 0;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: var(--azul-bumpy);
  line-height: 1.15;
}

/* Chip estado (reutiliza tus chips existentes, pero lo envuelvo) */
.bumpy-seller-trust-signal .seller-signal-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .3px;
  border: 1px solid #eee;
  background: #fff;
  color:#444;
  white-space: nowrap;
}

/* Body */
.bumpy-seller-trust-signal .seller-signal-body{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}

.bumpy-seller-trust-signal .seller-signal-text{
  display:flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.bumpy-seller-trust-signal .seller-signal-msg{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #374151;
  line-height: 1.45;
}

.bumpy-seller-trust-signal .seller-signal-sub{
  margin: 0;
  font-size: 12px;
  font-weight: 750;
  color: #6b7280;
  line-height: 1.45;
}

/* Mini métricas (3 pills) */
.bumpy-seller-trust-signal .seller-signal-minirow{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.bumpy-seller-trust-signal .seller-signal-mini{
  display:inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px 9px;
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fafafa;
}

.bumpy-seller-trust-signal .seller-signal-mini .k{
  font-size: 10px;
  font-weight: 900;
  color: #9aa3af;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: "Courier New", monospace;
}

.bumpy-seller-trust-signal .seller-signal-mini .v{
  font-size: 12px;
  font-weight: 1000;
  color: #111;
  letter-spacing: -0.2px;
}

/* Nota inferior */
.bumpy-seller-trust-signal .seller-signal-note{
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 11px;
  font-weight: 750;
  color: #6b7280;
  line-height: 1.35;
}

.bumpy-seller-trust-signal .seller-signal-note .dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fucsia-bumpy);
  box-shadow: 0 0 8px rgba(233,30,99,0.25);
  margin-top: 3px;
  flex: 0 0 auto;
}

/* =========================================================
   ESTADOS: green / amber / red
========================================================= */

.bumpy-seller-trust-signal.is-green{
  border-color: rgba(34,197,94,0.25);
  background: linear-gradient(180deg, rgba(34,197,94,0.07), #fff 60%);
}
.bumpy-seller-trust-signal.is-green:hover{
  box-shadow: 6px 6px 0px rgba(34,197,94,0.14);
  border-color: rgba(34,197,94,0.35);
}

.bumpy-seller-trust-signal.is-amber{
  border-color: rgba(245,158,11,0.28);
  background: linear-gradient(180deg, rgba(245,158,11,0.08), #fff 60%);
}
.bumpy-seller-trust-signal.is-amber:hover{
  box-shadow: 6px 6px 0px rgba(245,158,11,0.16);
  border-color: rgba(245,158,11,0.40);
}

.bumpy-seller-trust-signal.is-red{
  border-color: rgba(224,0,0,1);
  background: linear-gradient(180deg, rgba(239,68,68,0.07), #fff 60%);
}
.bumpy-seller-trust-signal.is-red:hover{
  box-shadow: 6px 6px 0px rgba(239,68,68,0.14);
  border-color: rgba(224,0,0,1);
}

/* Ajustes de color del título en estados (sutil, no agresivo) */
.bumpy-seller-trust-signal.is-green .seller-signal-title h3{ color: #1f944b; }
.bumpy-seller-trust-signal.is-amber .seller-signal-title h3{ color: #f1a300; }
.bumpy-seller-trust-signal.is-red .seller-signal-title h3{ color: #e00000; }

/* Nota dot según estado */
.bumpy-seller-trust-signal.is-green .seller-signal-note .dot{
  background: var(--bumpy-green);
  box-shadow: 0 0 10px rgba(34,197,94,0.25);
}
.bumpy-seller-trust-signal.is-amber .seller-signal-note .dot{
  background: var(--bumpy-amber);
  box-shadow: 0 0 10px rgba(245,158,11,0.25);
}
.bumpy-seller-trust-signal.is-red .seller-signal-note .dot{
  background: var(--bumpy-red);
  box-shadow: 0 0 10px rgba(239,68,68,0.22);
}

/* =========================================================
   Responsive
========================================================= */



/* =========================================================
   BUMPY — FAQ (Acordeón) — Add-on
   - misma estética: kicker, bordes, hover shadow duro
========================================================= */

.bumpy-concesionario-seccion{
  padding: 70px 70px;
  padding-top: 30px;
  background: #fff;
  margin-left: -31px;
  margin-right: -31px;
}

.bumpy-faq-search{
  margin: 20px auto 26px;
  max-width: 820px;
  display:flex;
  align-items:center;
  gap: 10px;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 16px;
  padding: 12px 14px;
}

.bumpy-faq-search .faq-sico{
  font-weight: 1000;
  color: var(--fucsia-bumpy);
  opacity: .95;
}

.bumpy-faq-search input{
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-weight: 800;
  color: #111;
  font-size: 13px;
}

.bumpy-faq-search .faq-count{
  border: 1px solid #eee;
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1000;
  color: var(--azul-bumpy);
}

.bumpy-faq-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* Reusa bumpy-card-diag, pero ajusto estructura */
.bumpy-faq-item{
  padding: 16px 16px 14px;
}

.bumpy-faq-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}

.bumpy-faq-title h3{
  margin: 6px 0 0 0;
  font-size: 16px;
  font-weight: 1000;
  color: var(--azul-bumpy);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

/* tags discretas */
.bumpy-faq-tags{
  margin-top: 10px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bumpy-faq-tag{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid #eee;
  background: #fff;
  color: #666;
}

/* botón acordeón */
.bumpy-faq-toggle{
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 999px;
  padding: 10px 12px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
  transition: .2s ease;
  white-space: nowrap;
  color: var(--azul-bumpy);
  font-weight: 1000;
  font-size: 12px;
}

.bumpy-faq-toggle:hover{
  color: var(--fucsia-bumpy);
  border-color: rgba(233,30,99,0.28);
  background: rgba(233,30,99,0.06);
  transform: translateX(2px);
}

.bumpy-faq-toggle .faq-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fucsia-bumpy);
  box-shadow: 0 0 8px rgba(233,30,99,0.25);
  animation: radar-blink 1.2s infinite;
}

.bumpy-faq-toggle .faq-chevron{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .2s ease;
}

/* estado abierto */
.bumpy-faq-toggle[aria-expanded="true"] .faq-chevron{
  transform: translateY(-1px) rotate(90deg);
}

/* cuerpo acordeón */
.bumpy-faq-body{
  max-height: 0px;
  overflow: hidden;
  transition: max-height .22s ease;
  margin-top: 12px;
  border: 1px dashed #eee;
  border-radius: 16px;
  background: #fff;
}

.bumpy-faq-answer{
  margin: 0;
  padding: 12px 12px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  line-height: 1.55;
}

/* footer dentro */
.bumpy-faq-foot{
  padding: 10px 12px 12px;
  border-top: 1px dashed #eee;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */




/* =========================
   REVIEWS: layout 2 columnas
========================= */

.bumpy-reviews-layout{
  display:grid;
  grid-template-columns: 380px 1fr;
  gap: 22px;
  align-items:start;
  margin-top: 18px;
	    margin-bottom: 40px
;}

.bumpy-reviews-side{
  position: sticky;
  top: 30px;
  align-self: start;
}



/* CTA (si no lo tenías ya) */
.bumpy-reviews-cta{
  display:flex;
  align-items:center;
  gap: 12px;
  margin: 0 0 14px;
  flex-wrap: wrap;
}
.bumpy-btn-primary{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 1000;
  font-size: 13px;
  text-decoration:none;
  border: 1px solid rgba(233,30,99,0.35);
  background: rgba(233,30,99,0.12);
  color: var(--fucsia-bumpy);
  transition: .2s ease;
}
.bumpy-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 6px 6px 0px rgba(233,30,99,0.10);
}
.bumpy-cta-note{
  font-size: 12px;
  font-weight: 800;
  color:#6b7280;
}

/* =========================
   RESUMEN: barras que se llenan
========================= */

.bumpy-summary-top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.bumpy-summary-score .n{
  font-size: 42px;
  font-weight: 1000;
  letter-spacing: -1px;
  color: var(--azul-bumpy);
  line-height: 1;
}
.bumpy-summary-score .t{
  font-size: 12px;
  font-weight: 900;
  color:#9aa3af;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: "Courier New", monospace;
}
.bumpy-summary-stars{
  font-size: 18px;
  font-weight: 1000;
  color: var(--fucsia-bumpy);
  letter-spacing: 1px;
}

.bumpy-bars{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.bumpy-bar-row{
  display:grid;
  grid-template-columns: 18px 1fr 46px;
  gap: 10px;
  align-items:center;
}

.bumpy-bar-label{
  font-size: 12px;
  font-weight: 1000;
  color:#111;
}

.bumpy-bar-val{
  font-size: 12px;
  font-weight: 900;
  color:#6b7280;
  text-align:right;
}

/* la barra (track) */
.bumpy-bar{
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(27,68,140,0.10);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

/* ✅ AQUÍ estaba el fallo: ahora el fill usa --pct */
.bumpy-bar-fill{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: var(--pct, 0%);
  background: rgba(233,30,99,0.55);
  border-radius: 999px;
  transition: width .35s ease;
}

/* =========================
   LISTADO de reviews
========================= */

.bumpy-reviews-head{
  margin-bottom: 14px;
}

.bumpy-reviews-list{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.bumpy-review-card{
  background: #fff;
  border: 2px solid #eee;
  border-radius: 18px;
  padding: 14px 14px 12px;
  transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bumpy-review-card:hover{
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(27,68,140,0.10);
  border-color: rgba(27,68,140,0.18);
}

.bumpy-review-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.bumpy-review-who{
  display:flex;
  align-items:center;
  gap: 10px;
}

.bumpy-review-avatar{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fafafa;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  color: var(--azul-bumpy);
}

.bumpy-review-name{
  font-size: 13px;
  font-weight: 1000;
  color:#111;
}
.bumpy-review-meta{
  margin-top: 2px;
  font-size: 11px;
  font-weight: 800;
  color:#9aa3af;
}

.bumpy-review-rating{
  font-size: 16px;
  font-weight: 1000;
  color: var(--fucsia-bumpy);
  letter-spacing: 1px;
  white-space: nowrap;
}

.bumpy-review-text{
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  color:#444;
  line-height: 1.5;
}

/* Paginación */
.bumpy-reviews-pager{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.bumpy-pager-btn{
  text-decoration:none;
  border: 1px solid #eee;
  background: #fafafa;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 1000;
  font-size: 12px;
  color: var(--azul-bumpy);
}
.bumpy-pager-btn:hover{
  border-color: rgba(233,30,99,0.28);
  background: rgba(233,30,99,0.06);
  color: var(--fucsia-bumpy);
  transform: translateX(1px);
}

.bumpy-pager-mid{
  font-size: 12px;
  font-weight: 800;
  color:#6b7280;
}

/* =========================
   Página 404 - Estilos Específicos
========================= */

/* Hero de 404 */
.bumpy-404-hero {
  padding: 60px 20px;
  background: #f7faff;
  text-align: center;
}

.bumpy-404-hero__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--azul-bumpy);
  letter-spacing: -1px;
}

.bumpy-404-hero__description {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin-top: 10px;
  line-height: 1.6;
}

.bumpy-404-hero__cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.bumpy-404-hero__cta .btn-bumpy-tool {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  display: inline-block;
  width: 200px;
  text-align: center;
}

.bumpy-404-hero__cta .btn-bumpy-tool.azul {
  background: var(--azul-bumpy);
  color: var(--blanco);
}

.bumpy-404-hero__cta .btn-bumpy-tool.azul:hover {
  background: var(--fucsia-bumpy);
}

.bumpy-404-hero__cta .btn-bumpy-tool.fucsia {
  background: var(--fucsia-bumpy);
  color: var(--blanco);
}

.bumpy-404-hero__cta .btn-bumpy-tool.fucsia:hover {
  background: var(--azul-bumpy);
}

/* =========================
   /buscar — UI v2
========================= */

.bumpy-search{ padding-top: 10px; }

/* Lock scroll cuando drawer abierto */
.bumpy-lock{ overflow: hidden; }

/* Hero */
.bumpy-search-hero{ padding: 34px 0 14px; }
.bumpy-search-hero__inner{ max-width: 1320px; margin: 0 auto; }
.bumpy-search-head{ text-align:center; margin-bottom: 16px; }
.bumpy-search-title{
  margin:0; font-size: 36px; font-weight: 1000;
  color: var(--azul-bumpy); letter-spacing: -1px;
}
.bumpy-search-sub{ margin: 8px 0 0; font-size: 14px; font-weight: 800; color:#666; }

/* =========================================================
   TOPBAR tipo cápsula (solo UI) — CORREGIDO
   (Reemplaza el antiguo .bumpy-topform, eliminado)
========================================================= */

.bumpy-search-topbar{
  max-width: 1320px;
  margin: 14px auto 0;
}


/* Track scroll horizontal dentro de la cápsula */
.capsula-track{
  display:flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* firefox */
  flex: 1 1 auto;
}
.capsula-track::-webkit-scrollbar{ display:none; }

/* Field */
.search-field{
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  min-width: 160px;
  position: relative;
}
.search-field.is-pop{ min-width: 150px; }

.field-label{
  font-size: 12px;
  font-weight: 900;
  color: #111;
}



/* Flechas (solo desktop y solo si hay overflow) */
.capsula-arrow{
  width: 34px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  font-size: 22px;
  font-weight: 1100;
  cursor: pointer;
  align-self: center;
  margin: 0 8px;
}
.capsula-arrow:active{ transform: translateY(1px); }


/* Botón filtros a la derecha */
.capsula-btn{
  align-self: center;
  height: 46px;
  border-radius: 16px;
  margin-left: 10px;
  padding: 0 18px;
  white-space: nowrap;
}
.capsula-filters{
  margin-left: 10px;
  padding: 0 18px;
}

/* ---- Popovers ---- */
.pop-trigger{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;

  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 1000;
  color: #111;
  cursor:pointer;
}
.pop-trigger:hover{
  background: #fff;
  border-color: rgba(233,30,99,0.20);
}

.pop-value{
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pop-caret{ color:#666; font-weight: 1100; }

.pop-panel{
  position:absolute;
  top: calc(100% + 10px);
  left: 10px;
  width: min(360px, calc(100vw - 40px));
  background:#fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  padding: 12px;
  z-index: 50;

  transform: translateY(-6px);
  opacity: 0;
  pointer-events: none;
  transition: .15s ease;
}
.search-field.is-pop.is-open .pop-panel{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pop-row{
  display:flex;
  align-items:center;
  gap: 10px;
}
.pop-row-col{ display:block; }
.pop-row-col > *{ width:100%; }

.pop-sep{
  font-weight: 1100;
  color:#999;
}

.pop-actions{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  justify-content:flex-end;
}

.btn-pop{
  border: none;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 1100;
  cursor:pointer;
  background: var(--fucsia-bumpy);
  color:#fff;
}
.btn-pop.ghost{
  background: #f3f4f6;
  color: #111;
}

/* Ubicación: bloque condicional */
.pop-subblock{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
.pop-radio{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color:#111;
  padding: 6px 2px;
}
.pop-radio input{ transform: translateY(1px); }

/* Responsive (solo para la cápsula) */


/* =========================
   Meta bar
========================= */

.bumpy-search-meta{
  margin: 12px auto 0;
  max-width: 1320px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  border-radius: 16px;
}

.bumpy-search-meta__left{ display:flex; gap: 10px; flex-wrap: wrap; align-items:center; }
.bumpy-search-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid #eee; background: var(--bumpy-amber-soft);
  font-size: 12px; font-weight: 1000; color:#111;
}
.bumpy-search-pill .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fucsia-bumpy);
  box-shadow: 0 0 8px rgba(233,30,99,0.25);
  animation: radar-blink 1.2s infinite;
}
.bumpy-search-pill.soft{ background:#fafafa; color:#444; }

.bumpy-search-meta__right{ display:flex; gap: 10px; align-items:center; }

.bumpy-mini-select{
  display:flex; gap: 8px; align-items:center;
  padding: 6px 10px;
  border: 1px solid #eee;
  background:#fff;
  border-radius: 999px;
}
.mini-label{ font-size: 12px; font-weight: 1000; color:#555; }
.mini-control{
  border: none; outline:none; background: transparent;
  font-weight: 1000; color: var(--azul-bumpy);
}

/* density toggle 3/4 */
.bumpy-density{
  display:flex;
  border: 1px solid #eee;
  background: #fff;
  border-radius: 999px;
  overflow:hidden;
}
.bumpy-density__btn{
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-weight: 1100;
  cursor:pointer;
  color: var(--azul-bumpy);
}
.bumpy-density__btn.is-active{
  background: rgba(233,30,99,0.10);
  color: var(--fucsia-bumpy);
}

/* =========================
   Results
========================= */

.bumpy-search-results{ padding: 18px 0 34px; }
.bumpy-search-results__inner{ max-width: 1320px; margin: 0 auto; }

/* Grid: 3 o 4 */
.bumpy-search-grid.density-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.bumpy-search-grid.density-4{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* Footer */
.bumpy-search-footer{
  margin-top: 22px;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 10px;
}
.bumpy-search-footnote{ margin:0; font-size: 12px; font-weight: 900; color:#6b7280; }

/* =========================
   Drawer filtros
========================= */

.bumpy-drawer{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr;
  pointer-events: none;
}
.bumpy-drawer[aria-hidden="false"]{ pointer-events: auto; }

.bumpy-drawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: .2s ease;
}
.bumpy-drawer[aria-hidden="false"] .bumpy-drawer__backdrop{ opacity: 1; }

.bumpy-drawer__panel{
  position:absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 92vw);
  
  
  
  transform: translateX(100%);
  transition: .22s ease;
  display:flex;
  flex-direction: column;
}
.bumpy-drawer[aria-hidden="false"] .bumpy-drawer__panel{
  transform: translateX(0);
}


.bumpy-drawer__title strong{
  
  font-weight: 1200;
  color: var(--azul-bumpy);
}
.bumpy-drawer__sub{
  
  
  font-weight: 900;
  color:#666;
  
}
.bumpy-x{
  
  
  
  
  
  
  font-weight: 1100;
}
.bumpy-x:hover{
  border-color: rgba(233,30,99,0.35);
  
  color: var(--fucsia-bumpy);
}

.bumpy-drawer__body{
  
  overflow:auto;
}

.bumpy-drawer__footer{
  padding: 12px 14px;
  border-top: 1px solid #eee;
  display:flex;
  gap: 10px;
}
.bumpy-drawer__footer .btn-bumpy-tool,
.bumpy-drawer__footer .boton-fucsia{
  flex: 1;
  justify-content:center;
}

/* Filter blocks */


.fg-title{  color:#111; }


.bumpy-pill-btn{
  
  
  
  
  
  font-size: 12px;
  
}



.bumpy-three{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.bumpy-check{
  
  
  
  
  color:#333;
  
}
.bumpy-check input{ transform: translateY(1px); }

.bumpy-keyword{
  
  
  align-items:center;
}


/* =========================
   Responsive general
========================= */



.bumpy-topform-capsula{max-width:1320px;}

/* label clickable */
.search-field.is-drawer{
  display:flex;
  flex-direction:column;
  gap:6px;
    min-width: 124px;
    padding-right: 9px;
    border-right: solid;
    border-right-width: 1px;
    border-color: #eee;
}

.field-label-btn{
  background:transparent;
  border:0;
  padding:0;
  text-align:left;
  font: inherit;
  cursor:pointer;
  opacity:.85;
  font-size: 12px;
  font-weight: 900;
  color: #111;	
}

.field-label-btn:hover{ opacity:1; text-decoration: underline; }

/* valor */
.field-value{
  font-weight:600;
  white-space:nowrap;
}

.bumpy-filter-group.is-focus{
  outline: 2px solid rgba(241,55,139,.45);
  box-shadow: 0 0 0 6px rgba(241,55,139,.12);
  border-radius: 14px;
  padding: 10px;
  transition: box-shadow .25s ease, outline-color .25s ease;
}

.campo-busqueda{
	padding-right: 0px;
}

/* === SOLO CSS NUEVO para chips + acordeones (no pisa lo tuyo) === */

.bumpy-chipbar-search{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-left:12px;
  align-items:center;
}

.bumpy-chip-search.is-soft{
  background:rgba(255,255,255,.05);
  border-color:rgba(0,0,0,.08);
}

.bumpy-mini-note{
  
  
  opacity:.75;
}

/* acordeones */

.bumpy-acc__sum{
  
  list-style:none;
  
  
  
  
  
}





/* focus cuando vienes desde topbar */
.bumpy-filter-group.is-focus,
details.bumpy-acc.is-focus{
  outline:2px solid rgba(233,30,99,.55);
  outline-offset:2px;
  border-radius:16px;
}

/* =========================================================
   BUMPY DRAWER UI – solo drawer
   ========================================================= */

.bumpy-drawer__panel{
  background:#fff;
  color:#0c151c;
  border-left:1px solid rgba(0,0,0,.08);
  box-shadow:-20px 0 60px rgba(0,0,0,.12);
}

.bumpy-drawer__header{
  position:sticky;
  top:0;
  z-index:5;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(1.2) blur(10px);
  border-bottom:1px solid rgba(0,0,0,.08);
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.bumpy-drawer__title strong{
  display:block;
  font-size:18px;
  line-height:1.1;
}
.bumpy-drawer__sub{
  display:block;
  margin-top:2px;
  font-size:13px;
  opacity:.7;
}

.bumpy-x{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  cursor:pointer;
}
.bumpy-x:hover{ background:rgba(0,0,0,.03); }

.bumpy-drawer__body{
  padding:14px 14px 18px;
}

/* cajas/secciones */
.bumpy-filter-group{
  padding:14px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.01));
  margin-bottom:12px;
}
.bumpy-filter-group__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.fg-title{
  font-weight:900;
  font-size:16px;
}

/* chips */
.bumpy-chipgrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}
.bumpy-chip-search{
  max-width:150px;
  text-align:center;
  padding:8px 8px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  font-weight:800;
  cursor:pointer;
}
.bumpy-chip-search:hover{ background:rgba(0,0,0,.03); }
.bumpy-chip-search.is-active,.bumpy-chip.is-active{
  border-color:rgba(241,55,139,.55);
  background:rgba(241,55,139,.10);
}
.bumpy-mini-note{
  margin-top:10px;
  font-size:13px;
  color:rgba(12,21,28,.72);
}

/* acordeones */
.bumpy-acc{
  background:#fff;
  border-radius:18px;
  margin:12px 0;
  overflow:hidden;
  padding:2px;
}
.bumpy-acc__sum{
  padding:14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  background:linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.00));
}
.bumpy-acc__sum::-webkit-details-marker{ display:none; }
.bumpy-acc__title{
  font-weight:950;
  font-size:18px;
}
.bumpy-acc__meta{
  font-size:13px;
  opacity:.6;
}
.bumpy-acc__body{
  padding:14px;
  border-top:1px solid rgba(0,0,0,.06);
}

/* layout 2 columnas dentro del drawer */
.bumpy-two{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}


/* campos */
.bumpy-field{ margin-bottom:12px; }
.bumpy-field.mini{ margin-bottom:0; }

.bumpy-field__label{
  display:block;
  font-size:12px;
  font-weight:800;
  color:rgba(12,21,28,.70);
  margin-bottom:6px;
  letter-spacing:.01em;
}

.bumpy-field__control{
  width:97%;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  padding:0 12px;
  font-size:14px;
  outline:none;
}
.bumpy-field__control:focus{
  border-color:rgba(241,55,139,.55);
  box-shadow:0 0 0 4px rgba(241,55,139,.14);
}

/* radios */
.bumpy-radio{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:700;
  margin:8px 0;
}
.bumpy-radio input{
  width:18px; height:18px;
  accent-color:#f1378b;
}

/* checks */
.bumpy-check{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.06);
  background:rgba(0,0,0,.02);
  font-size:14px;
  font-weight:800;
}
.bumpy-check:hover{ background:rgba(0,0,0,.03); }
.bumpy-check input{
  width:18px; height:18px;
  accent-color:#3abe8c;
}

/* pills */
.bumpy-pills{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:10px;
}
.bumpy-pill-btn{
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  cursor:pointer;
}
.bumpy-pill-btn:hover{ background:rgba(0,0,0,.03); }
.bumpy-pill-btn.is-active{
  border-color:rgba(241,55,139,.55);
  background:rgba(241,55,139,.12);
  color:#f1378b;
}

/* keyword */
.bumpy-keyword{
  display:flex;
  gap:10px;
}
.bumpy-keyword .bumpy-field__control{ flex:1; }

/* highlight cuando vienes del topbar */
.is-focus{
  outline:2px solid rgba(241,55,139,.45);
  outline-offset:4px;
  border-radius:18px;
}

.separacion-formulario{margin-bottom: 20px;}

/* Layout primitives (global) */
.bumpy-row{display:flex;align-items:center;}
.bumpy-row--between{justify-content:space-between;}
.bumpy-row--wrap{flex-wrap:wrap;}
.bumpy-row--gap{gap:10px;}

.bumpy-grid{display:grid;gap:12px;}
.bumpy-grid--2{grid-template-columns:repeat(2,minmax(0,1fr));}
.bumpy-grid--4{grid-template-columns:repeat(4,minmax(0,1fr));}
.bumpy-grid--cards{grid-template-columns:repeat(4,minmax(0,1fr));}




/* Card primitive (global) */
.bumpy-card{
  border:1px solid var(--bumpy-line, rgba(255,255,255,.12));
  background:var(--bumpy-surface, rgba(255,255,255,.03));
  border-radius:16px;
  padding:14px;
}
.bumpy-card--link{display:block;text-decoration:none;color:inherit;}
.bumpy-card--link:hover{transform:translateY(-1px);}
.bumpy-kpi{font-size:24px;font-weight:800;line-height:1.1;}
.bumpy-h3{font-size:16px;font-weight:800;}
.bumpy-muted{opacity:.75;font-size:13px;}
.bumpy-price{font-weight:800;}

/* HERO landing ciudad */
.seccion-identidad-landing{
  display:grid;
  grid-template-columns: 1fr 600px;
  gap: 24px;
  align-items:start;
}

/* fila migas */
.fila-migas{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.migas-bumpy{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(27,68,140,0.75);
}

.migas-bumpy a{
  color: inherit;
  text-decoration: none;
}
.migas-bumpy a:hover{
  text-decoration: underline;
}
.migas-bumpy .sep{
  opacity: .35;
}
.migas-bumpy .current{
  color: rgba(27,68,140,1);
}

/* subtexto */
.subtexto-landing .lead-landing{
  margin: 6px 0 2px;
  font-size: 15px;
  font-weight: 700;
}
.subtexto-landing .meta-landing{
  margin: 0 0 12px;
  font-size: 13px;
  opacity: .8;
}
.subtexto-landing .dot{
  display:inline-block;
  width:6px;height:6px;border-radius:50%;
  background: rgba(233,30,99,0.55);
  margin: 0 10px;
  transform: translateY(-1px);
}

/* chips como links */
.tag-link{
  cursor:pointer;
  text-decoration:none;
}

/* columna derecha */
.landing-side{
  display:flex;
  flex-direction:row;
  gap: 16px;
  margin-top:30px;
}
.landing-card{
  background: #fff;
}

/* KPIs */
.landing-kpis{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.landing-kpis .kpi{
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.75);
}
.landing-kpis .k{
  display:block;
  font-size: 12px;
  font-weight: 800;
  opacity: .7;
}
.landing-kpis .v{
  display:block;
  font-size: 16px;
  font-weight: 1000;
  color: #1b2b4f;
}

/* responsive */


.tags-identidad-rapida{margin-top:25px;}
.tags-identidad-rapida .btn-bumpy-tool{padding:8px;font-size:12px;}
.div-cazados{
	padding-bottom: 0px;
    margin-top: 30px;
    max-width: 218px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   SEPARADOR TÉCNICO
========================= */
.bumpy-tech-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    background: #fff;
    margin-top: -1px; /* Solapamiento pixel-perfect */
    position: relative;
    z-index: 2;
    height: 20px;
	margin-bottom:-40px;
}
.divider-line {
    flex: 1;
    height: 1px;
    background: #e5e7eb; /* Gris muy suave */
}
.divider-icon {
    padding: 0 15px;
    color: #cbd5e1;
    background: #fff;
    display: flex;
}

/* =========================
   TARJETA LIVE (SOCIAL PROOF)
========================= */
.ficha-inteligencia.bumpy-live-card {
    background: #f8fafc; /* Fondo diferenciado */
    border: 2px dashed #cbd5e1; /* Borde punteado técnico */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    /* No tiene hover de elevación para distinguirse de los coches */
    transform: none !important; 
    box-shadow: none !important;
	text-decoration:none;
}

.live-card-icon {
	margin-top:30px;
    color: var(--fucsia-bumpy);
    background: rgba(233,30,99,0.08);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.live-card-stat {
    font-size: 38px;
    font-weight: 900;
    color: var(--azul-bumpy);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.live-card-label {
    font-size: 13px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.live-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    max-width: 180px;
    margin: 0 auto;
}

.live-card-footer {
    margin-top: auto;
    padding-top: 20px;
    opacity: 0.7;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #334155;
	margin-bottom:20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
}

/* =========================================================
   MINI DASHBOARDS INTERACTIVOS (Affordance)
========================================================= */

/* 1. Caja general */
a.seller-mini.is-link {
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    padding-right: 24px; /* Deja espacio fijo para la flecha */
    border: 1px solid rgba(27,68,140,0.42); /* Borde sutilmente más azulado por defecto */
    background: #fff;
}

/* 2. El dato principal (.v) en azul para indicar enlace */
a.seller-mini.is-link .v {
    color: var(--azul-bumpy);
}

/* 3. Flecha SIEMPRE visible, pero sutil por defecto */
a.seller-mini.is-link::after {
    content: "›";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #9aa3af; /* Gris suave por defecto */
    opacity: 0.8;
    transition: all 0.2s ease;
}

/* 4. Efectos Hover */
a.seller-mini.is-link:hover {
    transform: translateY(-2px);
    border-color: var(--azul-bumpy);
    box-shadow: 0 4px 10px rgba(27,68,140,0.08);
}

a.seller-mini.is-link:hover::after {
    color: var(--azul-bumpy); /* Se enciende en azul */
    opacity: 1;
    transform: translateY(-50%) translateX(3px); /* Se mueve un poco a la derecha */
}

a.seller-mini.is-link:active {
    transform: translateY(0);
}

.precio-rebajado {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.precio-anterior {
    font-size: 13px;
    color: #9aa3af;
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: -2px;
}
.tag-bajada {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--fucsia-bumpy);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(34,197,94,0.3);
}

#radiografia-mercado{background: #f8fafc;
    border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}
.bajadas-precio{
	padding-top:30px;
}

/* =========================================================
   PLANTILLA PÁGINA SIMPLE GENÉRICA
========================================================= */

.bumpy-page-simple {
    padding: 50px 30px 80px;
    background: #fff;
    min-height: 60vh; /* Que no se quede enano si hay poco texto */
}

/* Cabecera centrada y limpia */
.bumpy-page-header {
    max-width: 800px;
    margin: 0 auto 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f2f5;
    text-align: center;
}

.bumpy-page-header .titulo-principal-ficha {
    margin: 0;
    font-size: 36px;
    letter-spacing: -1px;
    color: var(--azul-bumpy);
}

/* CONTENEDOR DEL TEXTO
   Ancho máximo de 760px para lectura óptima. Nunca full-width.
*/
.bumpy-page-content {
    max-width: 760px; 
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.75; /* Mucho aire entre líneas */
    color: #374151; /* Gris oscuro, nunca negro puro para no cansar */
}

/* --- Formateo automático de etiquetas nativas --- */

.bumpy-page-content h2 {
    font-size: 24px;
    font-weight: 900;
    color: var(--azul-bumpy);
    margin: 40px 0 16px 0;
    letter-spacing: -0.5px;
}

.bumpy-page-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin: 30px 0 12px 0;
}

.bumpy-page-content p {
    margin: 0 0 20px 0;
}

/* Enlaces estilo Bumpy (subrayado grueso que cambia de color) */
.bumpy-page-content a {
    color: var(--fucsia-bumpy);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(233,30,99,0.2);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bumpy-page-content a:hover {
    color: var(--azul-bumpy);
    border-bottom-color: var(--azul-bumpy);
    background: rgba(27,68,140,0.05); /* Leve fondillo al pasar el ratón */
}

/* Listas bonitas */
.bumpy-page-content ul, 
.bumpy-page-content ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
}

.bumpy-page-content li {
    margin-bottom: 10px;
}

.bumpy-page-content li::marker {
    color: var(--fucsia-bumpy);
    font-weight: 900;
}

/* Bloques de cita (Por si pones un texto destacado en el editor) */
.bumpy-page-content blockquote {
    margin: 30px 0;
    padding: 20px 24px;
    background: #f8fafc;
    border-left: 4px solid var(--azul-bumpy);
    border-radius: 0 16px 16px 0;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: #1e293b;
}

.bumpy-page-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Imágenes o iframes que metas en el editor */
.bumpy-page-content img,
.bumpy-page-content iframe {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
    border: 1px solid #eee;
}

/* Móvil */


/* =========================================================
   FIXES MÓVIL (Smartphones hasta 768px)
========================================================= */


/* =========================================================
   FIXES MÓVIL Y CABECERA TIPO APP (Hasta 768px)
========================================================= */

/* Utilidades Base */
.mobile-only { display: none !important; }
.mobile-nav-text { display: none; }



/* =========================================================
   ESTILOS DRAWER MENÚ MÓVIL
========================================================= */

/* Hacemos que este panel en concreto salga desde la izquierda */
#mobile-nav-drawer .bumpy-drawer__panel {
    left: 0;
    right: auto;
    border-left: none;
    border-right: 1px solid #eee;
    transform: translateX(-100%);
    box-shadow: 20px 0 60px rgba(0,0,0,0.15);
}

#mobile-nav-drawer[aria-hidden="false"] .bumpy-drawer__panel {
    transform: translateX(0);
}

/* Selector de Vehículos dentro del menú */
.nav-vehiculo-selector {
    display: flex;
    background: var(--gris-fondo);
    padding: 5px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.nav-vehiculo-selector .opcion-v {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

/* Lista de enlaces Bumpy */
.nav-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-links-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    color: var(--azul-bumpy);
    background: #fafafa;
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.nav-links-list a svg {
    color: var(--fucsia-bumpy);
}

.nav-links-list a:hover,
.nav-links-list a:active {
    background: #fff;
    border-color: var(--fucsia-bumpy);
    transform: translateX(3px);
}

.nav-divider {
    border: 0;
    border-top: 1px dashed #e2e8f0;
    margin: 25px 0;
}

/* =========================================================
   GALERÍA DESKTOP
========================================================= */

.galeria-track-bumpy {
    display: flex;
    gap: 12px;
    overflow: hidden;
    
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scroll-behavior: auto; /* importante para drag libre */
    touch-action: pan-y;
}

.galeria-track-bumpy.is-dragging {
    cursor: grabbing;
}

.galeria-slide-bumpy {
    min-width: 98%;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr;
    gap: 12px;
}

.galeria-slide-grid {
    min-width: 98%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    gap: 12px;
}

.zona-hero-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.zona-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zona-grid-scroll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.mini-card {
    overflow: hidden;
    border-radius: 8px;
}

.mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.controles-galeria-bumpy {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.flecha-scroll-bumpy {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
}

.flecha-scroll-bumpy.prev {
    left: 10px;
}

.flecha-scroll-bumpy.next {
    right: 10px;
}

.flecha-scroll-bumpy.hidden {
    opacity: 0;
    pointer-events: none;
}

.galeria-track-bumpy img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.galeria-track-bumpy a,
.galeria-track-bumpy button {
    pointer-events: auto;
	height:100%;
}

/* =========================================================
   BOTONES E IMÁGENES CLICABLES
========================================================= */

.bg-open-gallery {
    touch-action: manipulation;
}

.bg-open-gallery-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.bg-open-gallery-btn img {
    display: block;
    width: 100%;
}

.bg-open-gallery,
.bg-gallery-grid-item img,
.zona-hero-img img,
.mini-card img {
    cursor: pointer;
}

/* =========================================================
   MODAL GALERÍA
========================================================= */

.bg-gallery-lock {
    overflow: hidden;
}

.bg-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.bg-gallery-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.bg-gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 14, 0.92);
    backdrop-filter: blur(4px);
}

.bg-gallery-modal__panel {
    position: relative;
    z-index: 2;
    width: min(1400px, calc(100vw - 32px));
    height: min(92vh, calc(100vh - 32px));
    margin: 16px auto;
    background: #11161b;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 80px rgba(0,0,0,.45);
}

.bg-gallery-modal__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
    width: 100%;
}

.bg-gallery-modal__counter {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-left: 20px;
}

.bg-gallery-modal__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 60px;
}

.bg-gallery-mode-btn,
.bg-gallery-close {
    border: 0;
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
}

.bg-gallery-mode-btn:hover,
.bg-gallery-close:hover {
    background: rgba(255,255,255,.14);
}

.bg-gallery-mode-btn.is-active {
    background: #fff;
    color: #11161b;
}

.bg-gallery-close {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 20px;
}

.bg-gallery-modal__body {
    flex: 1;
    min-height: 0;
    position: relative;
}

.bg-gallery-grid-view,
.bg-gallery-single-view {
    display: none;
    width: 100%;
    height: 100%;
}

.bg-gallery-grid-view.is-active,
.bg-gallery-single-view.is-active {
    display: block;
}

.bg-gallery-grid-view {
    overflow-y: auto;
    padding: 24px;
}

.bg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 20px;
}

.bg-gallery-grid-item {
    border: 2px solid transparent;
    background: transparent;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.bg-gallery-grid-item:hover {
    transform: translateY(-2px);
}

.bg-gallery-grid-item.is-active {
    border-color: #ff4fa3;
    box-shadow: 0 0 0 5px rgba(255,79,163,.28), 0 12px 30px rgba(0,0,0,.28);
    transform: translateY(-2px);
}

.bg-gallery-grid-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.bg-gallery-single-view {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
}

.bg-gallery-single-view.is-active {
    display: flex;
}

.bg-gallery-single-stage {
    flex: 1;
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-gallery-single-stage img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

.bg-gallery-single-nav {
    border: 0;
    background: rgba(255,255,255,.08);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .18s ease, transform .18s ease;
}

.bg-gallery-single-nav:hover {
    background: rgba(255,255,255,.16);
}

/* =========================================================
   GALERÍA MÓVIL SIMPLE
========================================================= */

.galeria-mobile-bumpy {
    display: none;
    position: relative;
}

.galeria-mobile-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scrollbar-width: none;
}

.galeria-mobile-track::-webkit-scrollbar {
    display: none;
}

.galeria-mobile-slide {
    min-width: 100%;
    scroll-snap-align: start;
}

.galeria-mobile-slide .bg-open-gallery-btn {
    width: 100%;
    height: 100%;
}

.galeria-mobile-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
}

.galeria-mobile-counter {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    background: rgba(12, 21, 28, 0.8);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */





.bumpy-explore-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.bumpy-explore-links a{
  display:inline-block;
  padding:10px 14px;
  border-radius:20px;
  font-size:14px;
  text-decoration:none;
  background:#f5f5f5;
  color:#333;
  transition:all .2s ease;
}

.bumpy-explore-links a:hover{
  background:#e9e9e9;
}

.ficha-inteligencia .info-principal{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	gap:16px;
}

.ficha-inteligencia .info-left{
	flex:1;
	min-width:0;
}

.ficha-inteligencia .precio{
	flex-shrink:0;
	white-space:nowrap;
	text-align:right;
	margin-top:3px;
}

.ficha-inteligencia .info-left h3{
	margin:0 0 8px;
	line-height:1.25;
}

.vendedor-datos a{
	color: var(--azul-bumpy);
	text-decoration:none;
}

.vendedor-datos a:hover{
	color: #1b448ccf;
}
.ficha-inteligencia--link{
	text-decoration:none;
}

/* =========================================================
   DIRECTORY CARDS
========================================================= */

.bumpy-directory-grid{
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bumpy-directory-card{
	min-height: 190px;
	justify-content: flex-start;
	border-width: 2px;
	border-radius: 22px;
}

.bumpy-directory-card h3{
	margin: 0 0 8px 0;
	font-size: 28px;
	line-height: 1.1;
	text-transform: none;
	letter-spacing: -0.6px;
	color: #111;
}

.bumpy-directory-card p{
	font-size: 15px;
	line-height: 1.55;
	color: #555;
	margin: 0;
	font-weight: 600;
}

.bumpy-directory-card__meta{
	margin-top: 14px;
	font-size: 12px;
	font-weight: 800;
	color: #7b8794;
	text-transform: uppercase;
	letter-spacing: .4px;
}

.bumpy-directory-card__icon{
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #eee;
	flex: 0 0 52px;
}

.bumpy-directory-card__icon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bumpy-directory-card__initials{
	font-size: 16px;
	font-weight: 1000;
	color: var(--azul-bumpy);
	letter-spacing: -0.3px;
}

.bumpy-empty-directory{
	text-align: center;
	padding: 30px 20px 10px;
}



.bumpy-directory-pagination{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:14px;
	flex-wrap:wrap;
	margin-top:36px;
}

.bumpy-page-numbers{
	display:flex;
	align-items:center;
	gap:8px;
	flex-wrap:wrap;
}

.bumpy-page-btn,
.bumpy-page-number{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:44px;
	height:44px;
	padding:0 16px;
	border-radius:999px;
	text-decoration:none;
	font-weight:900;
	font-size:13px;
	border:1px solid #eee;
	background:#fff;
	color:var(--azul-bumpy);
	transition:all .2s ease;
}

.bumpy-page-btn:hover,
.bumpy-page-number:hover{
	border-color:var(--azul-bumpy);
	box-shadow:4px 4px 0 rgba(27,68,140,.12);
	transform:translate(-2px,-2px);
}

.bumpy-page-number.is-active{
	background:rgba(233,30,99,0.10);
	color:var(--fucsia-bumpy);
	border-color:rgba(233,30,99,0.35);
	box-shadow:4px 4px 0 rgba(233,30,99,.12);
}

body.bumpy-lock .contenedor-bumpy-body {
    z-index: 10001;
}

#filter-seller .bumpy-pills {
    gap: 7px;
}

.bumpy-field{
  position: relative;
}

.bumpy-autocomplete{
  display: block;
  width: 100%;
  margin-top: 8px;

  background: #fff;
  border: 1px solid #d9e1ea;
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.bumpy-autocomplete__item{
  display: block;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;

  border: 0;
  background: #fff;
  color: #14212b;

  padding: 12px 14px;
  text-align: left;
  font: inherit;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;

  transition: background-color .18s ease, color .18s ease;
}

.bumpy-autocomplete__item + .bumpy-autocomplete__item{
  border-top: 1px solid #edf2f7;
}

.bumpy-autocomplete__item:hover,
.bumpy-autocomplete__item:focus-visible{
  background: #f4f8fc;
  color: #0b5cff;
  outline: none;
}

.bumpy-autocomplete__item:active{
  background: #eaf2fb;
}

.bumpy-chip.is-soft.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;

  /* visual */
  background: #f3f4f6; /* gris suave */
  color: #9ca3af;      /* texto apagado */
  border-color: #e5e7eb;

  /* evita efectos hover */
  transform: none;
  box-shadow: none;
}

.hero-bumpy-radar .search-field-location {
  position: relative;
}

.hero-bumpy-radar .search-field-location .bumpy-autocomplete {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  min-width: 260px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d9e2ef;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
  z-index: 30;
}

.hero-bumpy-radar .search-field-location .bumpy-autocomplete__item {
  width: 100%;
  display: block;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  font-size: 16px;
  cursor: pointer;
}

.hero-bumpy-radar .search-field-location .bumpy-autocomplete__item + .bumpy-autocomplete__item {
  border-top: 1px solid #edf2f7;
}

.hero-bumpy-radar .search-field-location .bumpy-autocomplete__item:hover {
  background: #f7faff;
}

.selector-vehiculo .opcion-v{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.contacto-secundario-mobile{
  display: none;
}

.contacto-secundario-desktop{
  display: block;
}

.nav-account-avatar{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
}

.nav-account-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bumpy-directory-intro.centered {
    max-width: 800px;
    margin: 14px auto 28px;
    text-align: center;
    color: #425466;
    line-height: 1.7;
    font-style: italic;
}

.bumpy-directory-intro.centered p {
	margin: 0 0 10px;
}

.bumpy-directory-intro.centered p:last-child {
	margin-bottom: 0;
}

.bg-gallery-modal__body--video {
    padding: 0;
}

.bg-gallery-video-stage {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.bg-gallery-video-stage iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.bg-mobile-video-row {
    display: none;
}

.acciones-ficha-top {
    position: relative;
}

.bumpy-share-menu[hidden] {
    display: none !important;
}

.bumpy-share-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    padding: 8px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bumpy-share-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    background: transparent;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.bumpy-share-item:hover {
    background: #f6f7fb;
}