/* =============================
   Estilos Vehículo Origen Seinto
   ============================= */

/* Contenedor general */
.vehiculo-origen-seinto {
  margin: 20px 0;
  background: #fff;
}
.svo-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.svo-divider {
  border: 0;
  height: 1px;
  background: #e5e5e5;
  margin: 10px 0 20px;
}

/* Caja de cada resultado */
.vos-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 15px;
  border-radius: 6px;
  background: #fff;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

/* Imagen producto izquierda */
.vos-product-image img {
  width: 100%; /* antes fijo a 300px */
  height: auto;
  display: block;
  max-width: 520px; /* límite opcional para no hacerla gigante */
  object-fit: cover;
  border-radius: 8px;
}

/* Columna derecha */
.vos-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.vos-manufacturer {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
}

/* Botón */
.vos-btn-consultar {
  padding: 10px 35px;
  border-radius: 6px;
  font-size: 16px;
}

/* =============================
   Estilos Recambios Recientes
   ============================= */

.recambios-recientes {
  max-width: 100%;
  margin: 0 auto;
}

.recambios-recientes__titulo {
  font-size: 1.875rem; /* 30px */
  font-weight: 600;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 32px;
}

/* Layout base: en móvil, columnas apiladas */
.recambios-recientes__body {
  display: flex;
  flex-direction: column;
}

.recambios-recientes__columna-info {
  width: 100%;
}

/* Bloque logo + texto */
.recambios-info {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.recambios-info__logo {
  height: 40px;
  width: auto;
  margin-right: 16px;
}
.recambios-info__texto h3 {
  font-size: 1rem; /* 16px */
  font-weight: 500;
  text-transform: uppercase;
  color: #111827;
  margin: 0;
}
.recambios-info__texto p {
  font-size: 0.875rem; /* 14px */
  color: #6B7280;
  margin: 4px 0 0;
}

/* Botón */
.recambios-recientes__btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: background-color 0.2s;
}
.btn-yellow {
  background-color: #FBBF24;
  color: #1F2937;
}
.btn-yellow:hover {
  background-color: #F59E0B;
}

/* Columna derecha */
.recambios-recientes__columna-img {
  width: 100%;
  margin-top: 16px;
  display: flex;
  justify-content: center; /* centra la imagen en móvil */
}

.recambios-recientes__columna-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  max-width: 520px; /* opcional */
}

/* Escritorio: columnas 70/30 */
@media (min-width: 1024px) {
  .recambios-recientes__body {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .recambios-recientes__columna-info {
    width: 70%;
  }
  .recambios-recientes__columna-img {
    width: 30%;
    margin-top: 0;
    justify-content: flex-end;
  }
}
