:root {
  --primary: #1a1a1a;
  --secondary: #3c3c3b;
  --accent: #cb2a1d;
  --accent-dark: #991415;
  --neutral: #e6e6e6;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #1a1a1a;
  --radius: 8px;
  --space: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
}

a,
button {
  min-height: 44px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(181, 27, 24, 0.15);
  outline-offset: 2px;
}

.shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar {
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
}

.topbar-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: min(220px, 100%);
  height: 72px;
  display: flex;
  align-items: center;
  margin-right: 24px;
}

.brand img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.social-links,
.mobile-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a,
.mobile-social-links a {
  width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease;
}

.social-links a:hover,
.mobile-social-links a:hover {
  background: #fff;
  color: #141414;
}

.social-links i,
.mobile-social-links i {
  font-size: 16px;
  line-height: 1;
}

.nav-wrap {
  background: #3c3c3b;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

.main-nav {
  width: 100%;
}

.menu-root {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
}

.menu-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.menu-more {
  display: none;
}

.menu-link {
  border: 0;
  background: transparent;
  color: #e6e6e6;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 0 8px;
  min-width: 48px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.16s ease;
}

.menu-link:hover,
.menu-link[aria-expanded='true'],
.menu-link.is-active {
  color: #fff;
}

.menu-link.is-active {
  border-bottom: 4px solid var(--accent);
}

.menu-trigger {
  cursor: pointer;
}

.caret {
  font-size: 11px;
  margin-left: 8px;
}

.dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 220px;
  max-width: 280px;
  width: max-content;
  background: #2f2f2f;
  border: 1px solid #2b2b2b;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 30;
}

.dropdown a {
  display: block;
  color: #e6e6e6;
  text-decoration: none;
  padding: 12px 16px;
  min-height: 44px;
  font-size: 15px;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: #2f2f2f;
  color: #fff;
  border-left: 3px solid #b51b18;
  padding-left: 13px;
}

.menu-item:hover > .dropdown,
.menu-item:focus-within > .dropdown,
.menu-item.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.accent-strip {
  height: 4px;
  background: #b51b18;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-container {
  width: 100%;
  min-height: 430px;
  background-color: #1a1a1a;
  background-image: url('https://ayuraseminuevos.ayuragroup.com/wp-content/uploads/2026/05/banner_home-scaled.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 6%;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.hero-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.hero-heading {
  margin: 0 0 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.25);
}

.hero-heading-strong {
  font-weight: 700;
}

.hero-heading-line1,
.hero-heading-line2 {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-heading-line1 {
  font-size: 40px;
}

.hero-heading-line2 {
  font-size: 32px;
}

.hero-search {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding-left: 24px;
  padding-right: 3px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.hero-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  min-height: 52px;
  font-size: 16px;
  font-weight: 400;
  color: #4b4b4b;
}

.hero-search input::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #6f6f6f;
}

.hero-search button {
  width: 52px;
  height: 52px;
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  background: #000000;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-search button i {
  font-size: 18px;
  line-height: 1;
}

.hero-search button:hover {
  background: #111111;
  transform: scale(1.03);
}

.hero-right {
  width: 55%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.section-categorias {
  background: #f4f6f8;
  padding: 70px 6%;
}

.section-categorias-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.categorias-heading {
  margin: 0 0 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
}

.grid-categorias {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.categoria-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 110px;
  text-align: left;
}

.categoria-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.categoria-card-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
}

.categoria-card-content p {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 1.4;
}

.categoria-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #d92d20;
}

.categoria-card.is-active {
  background: #fff5f3;
  border: 1px solid #d92d20;
}

.categoria-card:focus-visible {
  outline: 3px solid rgba(217, 45, 32, 0.24);
  outline-offset: 2px;
}

.section-listado {
  background: #f4f6f8;
  padding: 60px 6%;
}

.section-listado-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.sidebar-filtros {
  width: 320px;
  min-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e8e8e8;
  position: sticky;
  top: 108px;
  font-family: 'Barlow', sans-serif;
}

.sidebar-header-filtros {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sidebar-header-filtros h2 {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111111;
}

.clear-filters-btn {
  border: 0;
  background: transparent;
  padding: 0;
  min-height: auto;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  transition: 0.3s ease;
}

.clear-filters-btn:hover {
  color: #cb2a1d;
}

.sidebar-search-input,
.filter-select {
  width: 100%;
  height: 48px;
  border: 1px solid #dadada;
  border-radius: 8px;
  padding: 0 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  background: #ffffff;
}

.sidebar-search-input {
  margin-bottom: 28px;
}

.sidebar-search-input:focus,
.filter-select:focus {
  border-color: #cb2a1d;
  outline: none;
}

.filter-group {
  padding: 24px 0;
  border-top: 1px solid #ececec;
}

.filter-title {
  margin: 0 0 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
}

.select-wrap {
  position: relative;
}

.filter-select {
  font-size: 14px;
  padding: 0 44px 0 14px;
  appearance: none;
}

.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  pointer-events: none;
}

.filter-range {
  width: 100%;
  accent-color: #cb2a1d;
}

.filter-range::-webkit-slider-runnable-track {
  height: 4px;
  background: #e5e5e5;
  border-radius: 999px;
}

.filter-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #cb2a1d;
  margin-top: -6px;
}

.filter-range::-moz-range-track {
  height: 4px;
  background: #e5e5e5;
  border-radius: 999px;
}

.filter-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: #cb2a1d;
}

.range-value {
  margin: 10px 0 0;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #444444;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #444444;
}

.checkbox-item input[type='checkbox'] {
  accent-color: #cb2a1d;
}

.content-listing {
  flex: 1;
  min-width: 0;
}

.listing-topbar {
  margin-bottom: 22px;
}

.listing-topbar-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.topbar-left {
  min-width: 0;
  flex: 1;
}

.resultados-header {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555555;
  margin-bottom: 18px;
}

.filtros-activos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.filter-tag {
  background: #dcebff;
  color: #3567c8;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 0;
  min-height: auto;
}

.clear-top-filters {
  border: 0;
  background: transparent;
  color: #2563eb;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  min-height: auto;
  padding: 6px 4px;
}

.actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select-order {
  height: 42px;
  border: 1px solid #dadada;
  border-radius: 8px;
  padding: 0 14px;
  background: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #555555;
  min-width: 220px;
}

.view-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #dadada;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  min-height: 42px;
}

.view-btn:hover {
  transform: translateY(-1px);
}

.view-btn.is-active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

.sugerencias-row {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border: 1px solid #ececec;
  margin-bottom: 28px;
}

.sugerencias-title {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #555555;
}

.suggestion-chip {
  padding: 10px 16px;
  background: #f5f5f5;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  border: 0;
  min-height: auto;
}

.suggestion-chip:hover {
  background: #eaeaea;
}

.suggestion-chip.is-active {
  background: #111111;
  color: #ffffff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
}

.header {
  margin: 24px 0;
}

.h1 {
  margin: 0 0 8px;
  color: var(--primary);
  font-family: Barlow, Montserrat, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

h2,
h3 {
  font-family: Barlow, Montserrat, sans-serif;
  color: var(--secondary);
}

.muted {
  color: var(--secondary);
}


.listing-loading-shell {
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.listing-loading-shell.is-visible {
  opacity: 1;
}

.listing-loading {
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 40px 20px;
}

.listing-loading-spinner {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 4px solid #e5e7eb;
  border-top-color: #0165fd;
  animation: listing-spin 0.9s linear infinite;
}

.listing-loading-text {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #3f3f3f;
  text-align: center;
  max-width: 400px;
  line-height: 1.5;
}

@keyframes listing-spin {
  to {
    transform: rotate(360deg);
  }
}

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

.card {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.col-image {
  width: 100%;
}

.vehicle-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  background: #f3f4f6;
}

.vehicle-thumb-placeholder {
  min-height: 220px;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.vehicle-title {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #111111;
  text-transform: uppercase;
}

.vehicle-secondary {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #3f3f3f;
}

.vehicle-price {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
}

.vehicle-category {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #718096;
}

.vehicle-btn {
  width: 100%;
  height: 52px;
  min-height: 52px;
  background: #0165fd;
  border: none;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.vehicle-btn:hover {
  background: #cb2a1d;
}

.grid.list-view {
  grid-template-columns: 1fr;
  gap: 20px;
}

.grid.list-view .listing-row {
  grid-column: 1 / -1;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 20px;
  display: grid;
  grid-template-columns: 180px 2fr 1fr 1fr 180px;
  gap: 24px;
  align-items: center;
  margin-bottom: 0;
}

.grid.list-view .col-image,
.grid.list-view .col-info,
.grid.list-view .col-price,
.grid.list-view .col-category,
.grid.list-view .col-action {
  display: flex;
  align-items: center;
}

.grid.list-view .col-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.grid.list-view .col-image {
  width: 180px;
  min-width: 180px;
}

.grid.list-view .vehicle-thumb {
  width: 100%;
  height: 120px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 8px;
}

.grid.list-view .col-action {
  justify-content: flex-end;
}

.grid.list-view .vehicle-btn {
  max-width: 180px;
}

.error {
  background: rgba(181, 27, 24, 0.06);
  color: #b51b18;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px;
}

.load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  gap: 10px;
}

.load-more-btn {
  min-width: 220px;
  height: 52px;
  min-height: 52px;
  padding: 0 32px;
  background: #1a1a1a;
  border: none;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: #0165fd;
  transform: translateY(-1px);
}

.load-more-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.load-more-state {
  margin: 0;
  min-height: 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555555;
}

.section-beneficios {
  background: #f5f5f5;
  padding: 80px 6%;
}

.route-single-usados .hero-container,
.route-single-usados .section-categorias,
.route-single-usados .section-listado,
.route-single-usados .section-beneficios {
  display: none !important;
}

.route-single-usados .single-vehicle-section {
  display: block !important;
}

.single-vehicle-section {
  width: 100%;
}

.single-vehiculo-wrapper {
  background: #f5f5f5;
  padding: 60px 6%;
}

.single-layout {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: start;
}

.single-main-image-frame {
  margin: 0;
}

.single-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: #e9edf3;
  transition: opacity 0.25s ease;
}

.single-main-image--empty {
  min-height: 320px;
}

.thumbnails-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
  margin-top: 18px;
  padding-bottom: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.thumbnails-scroll-container::-webkit-scrollbar {
  display: none;
}

.thumbnails-track {
  display: flex;
  gap: 14px;
  width: max-content;
  min-width: 100%;
}

.single-thumb {
  width: 110px;
  height: 82px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  border: 3px solid transparent;
  transition: 0.25s ease;
  padding: 0;
  background: transparent;
}

.single-thumb.is-active {
  border-color: #0165fd;
}

.single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.thumb-more-overlay i {
  font-size: 18px;
}

.single-gallery-track {
  width: 100%;
  height: 4px;
  background: #d9d9d9;
  border-radius: 999px;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.single-gallery-indicator {
  height: 100%;
  background: #0165fd;
  border-radius: 999px;
  transition: transform 0.25s ease, width 0.25s ease;
  width: 30%;
  min-width: 36px;
  transform: translateX(0);
}

.vehicle-sections-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f1f3f5;
  border-radius: 10px;
  padding: 12px;
  margin-top: 50px;
  margin-bottom: 50px;
  overflow-x: auto;
  scrollbar-width: none;
}

.vehicle-sections-nav::-webkit-scrollbar {
  display: none;
}

.vehicle-sections-nav-btn {
  min-width: 180px;
  height: 52px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

.vehicle-sections-nav-btn:hover,
.vehicle-sections-nav-btn.is-active {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.vehicle-details-section {
  scroll-margin-top: 130px;
}

.vehicle-details-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 40px;
}

.vehicle-details-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cb2a1d;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #cbd5e0;
  min-width: 0;
}

.detail-item-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-item-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.detail-item-label {
  margin: 0 0 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #1a1a1a;
}

.detail-item-value {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
}

.vehicle-features-section {
  background: #f6faff;
  border-radius: 18px;
  padding: 50px 55px;
  margin-top: 50px;
  scroll-margin-top: 130px;
}

.vehicle-features-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 70px;
}

.feature-block {
  min-width: 0;
}

.feature-block-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-block-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-block-title {
  margin: 0 0 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
}

.feature-block-list {
  margin: 0;
  padding-left: 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  color: #1a1a1a;
}

.vehicle-inspection-section {
  margin-top: 60px;
  scroll-margin-top: 130px;
}

.vehicle-inspection-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0 0 22px;
}

.vehicle-inspection-description {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  max-width: 900px;
  margin: 0 0 34px;
}

.inspection-cert-card {
  background: #f6faff;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.inspection-cert-logo {
  width: 64px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.inspection-cert-title {
  margin: 0 0 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
}

.inspection-cert-text {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
}

.inspection-checklist-card {
  background: #f6faff;
  border-radius: 16px;
  padding: 18px 0;
  margin-bottom: 24px;
  overflow: hidden;
}

.inspection-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  gap: 16px;
}

.inspection-row--last {
  border-bottom: 0;
}

.inspection-row-title {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
}

.inspection-row-status {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: right;
}

.inspection-check {
  color: #22c55e;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.related-vehicles-section {
  width: 100%;
  display: block;
  box-sizing: border-box;
  background: #f6faff;
  border-radius: 20px;
  padding: 60px 70px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 130px;
}

.related-vehicles-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 40px;
}

.related-slider {
  position: relative;
}

.related-slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.related-slider-viewport::-webkit-scrollbar {
  display: none;
}

.related-slider-track {
  display: flex;
  gap: 28px;
  width: max-content;
  min-width: 100%;
  align-items: stretch;
}

.related-slider-track .card {
  margin: 0;
  flex-shrink: 0;
}

.related-nav-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: #1a1a1a;
}

.related-nav-btn--prev {
  left: 24px;
}

.related-nav-btn--next {
  right: 24px;
}

.related-nav-btn:hover {
  background: #0165fd;
  border-color: #0165fd;
  color: #ffffff;
}

.related-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.related-nav-btn:disabled:hover {
  background: #ffffff;
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.vehicle-section-anchor-placeholder {
  min-height: 1px;
  scroll-margin-top: 130px;
}

.columna-info-sticky {
  position: sticky;
  top: 120px;
}

.single-info-card {
  background: #f6faff;
  border-radius: 10px;
  padding: 40px;
}

.single-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #718096;
  border-radius: 8px;
  margin-bottom: 28px;
}

.single-cert-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.single-cert-badge span {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #718096;
}

.single-vehicle-title {
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  text-transform: uppercase;
}

.single-vehicle-price {
  margin: 0 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.single-vehicle-meta-line {
  margin: 0 0 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
}

.single-btn-primary {
  width: 100%;
  height: 54px;
  background: #0165fd;
  border: none;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 14px;
}

.single-btn-primary:hover {
  background: #cb2a1d;
}

.single-btn-secondary {
  width: 100%;
  min-height: 54px;
  background: #ffffff;
  border: 2px solid #0165fd;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0165fd;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-align: center;
}

.single-btn-secondary:hover {
  background: #0165fd;
  color: #ffffff;
}

.single-legal-copy {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.7;
  color: #1a1a1a;
}

.vehicle-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.vehicle-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vehicle-modal-overlay-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.vehicle-modal {
  width: 100%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 480px 1fr;
  position: relative;
  z-index: 1;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.vehicle-modal-overlay.is-open .vehicle-modal {
  opacity: 1;
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: #0165fd;
  transition: 0.3s ease;
  z-index: 2;
  border: 0;
  background: transparent;
}

.modal-close:hover {
  transform: scale(1.08);
  color: #cb2a1d;
}

.modal-left {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.modal-left img,
.modal-left-image-empty {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  background: #eef3f8;
}

.modal-left-image-empty {
  min-height: 280px;
}

.modal-left-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: #718096;
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
}

.modal-right {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-right h2 {
  margin: 0 0 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  max-width: 320px;
}

.vehicle-lead-form input,
.vehicle-lead-form textarea {
  width: 100%;
  height: 54px;
  border-radius: 5px;
  border: 1px solid #718096;
  padding: 0 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  margin-bottom: 14px;
  transition: 0.3s ease;
}

.vehicle-lead-form textarea {
  min-height: 110px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: none;
}

.vehicle-lead-form input::placeholder,
.vehicle-lead-form textarea::placeholder {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #718096;
}

.vehicle-lead-form input:focus,
.vehicle-lead-form textarea:focus {
  border-color: #0165fd;
  outline: none;
}

.vehicle-terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 24px;
}

.vehicle-terms-check input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border-radius: 4px;
  accent-color: #0165fd;
}

.vehicle-terms-check span {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
}

.vehicle-terms-check a {
  color: #0165fd;
  text-decoration: none;
  font-weight: 500;
}

.vehicle-terms-check a:hover {
  text-decoration: underline;
}

.vehicle-submit-btn {
  width: 100%;
  height: 56px;
  background: #0165fd;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.vehicle-submit-btn:hover {
  background: #cb2a1d;
}

.vehicle-submit-btn i {
  font-size: 20px;
  line-height: 1;
}

.vehicle-submit-btn:disabled {
  opacity: 0.75;
  cursor: wait;
}

.vehicle-form-success {
  background: #f0fff4;
  border: 1px solid #38a169;
  padding: 16px 18px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #2f855a;
  margin-top: 20px;
  margin-bottom: 0;
}

.single-gallery-empty,
.single-content-placeholder {
  width: 100%;
  min-height: 220px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  color: #5a5a5a;
}

body.single-modal-open {
  overflow: hidden;
}

.section-beneficios-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

.beneficios-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.beneficios-title {
  margin: 0 0 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.beneficio-card {
  background: #f6faff;
  border-radius: 10px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-height: 210px;
}

.beneficio-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.beneficio-card h3 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
}

.beneficio-card p {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a4a4a;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
}

.clientes-card {
  background: rgba(203, 42, 29, 0.1);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.clientes-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.clientes-counter {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: #cb2a1d;
}

.clientes-label {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.testimonios-card {
  background: #f6faff;
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.testimonios-track {
  position: relative;
  min-height: 180px;
}

.testimonio-item {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.testimonio-item.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonio-text {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  color: #1a1a1a;
}

.testimonio-author {
  margin-top: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: #1a1a1a;
}

.testimonios-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.testimonios-arrow {
  width: 28px;
  height: 28px;
  min-height: 28px;
  border-radius: 6px;
  background: #bfd6ff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  border: 0;
}

.testimonios-arrow.is-active {
  background: #0165fd;
}

.testimonios-arrow:hover {
  transform: translateY(-1px);
}

.footer-main {
  width: 100%;
}

.footer-top {
  background: #111111;
  padding: 60px 6% 40px;
}

.footer-top-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-brand img {
  max-width: 220px;
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.footer-social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social-links a {
  width: 42px;
  height: 42px;
  min-height: 42px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
}

.footer-social-links a:hover {
  background: #0165fd;
  border-color: #0165fd;
  transform: translateY(-2px);
}

.footer-social-links i {
  font-size: 16px;
  line-height: 1;
}

.footer-col-title {
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.footer-col-text {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #ffffff;
}

.footer-sedes .footer-col-text {
  line-height: 1.55;
}

.footer-col-text strong {
  font-weight: 700;
}

.newsletter-form input {
  width: 100%;
  height: 58px;
  background: #d9d9d9;
  border: none;
  border-radius: 4px;
  padding: 0 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.newsletter-form input:focus {
  outline: none;
  border: 1px solid #0165fd;
}

.newsletter-form button {
  min-width: 210px;
  height: 52px;
  min-height: 52px;
  background: #0165fd;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 0 24px;
}

.newsletter-form button:hover {
  background: #cb2a1d;
  transform: translateY(-1px);
}

.footer-bottom {
  background: #3c3c3c;
  padding: 22px 6%;
}

.footer-bottom-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.footer-bottom-link,
.footer-bottom-copy {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom-link {
  display: block;
}

.footer-bottom-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-zeroazul {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.footer-zeroazul:hover {
  color: #0165fd;
}

.whatsapp-floating-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 72px;
  height: 72px;
  min-height: 72px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  transition: 0.3s ease;
  text-decoration: none;
}

.whatsapp-floating-button:hover {
  transform: scale(1.06);
}

.whatsapp-floating-button i {
  font-size: 34px;
  color: #ffffff;
}

.mobile-social-links {
  display: none;
}

@media (max-width: 1023px) {
  .shell {
    padding-inline: 16px;
  }

  .hero-container {
    min-height: 400px;
    padding: 0 4%;
  }

  .hero-inner {
    gap: 16px;
  }

  .hero-heading {
    font-size: clamp(28px, 5vw, 32px);
  }

  .hero-left {
    width: 48%;
  }

  .hero-right {
    width: 52%;
  }

  .topbar-inner {
    height: 64px;
  }

  .brand {
    width: min(180px, 100%);
    height: 56px;
    margin-right: 16px;
  }

  .brand img {
    max-height: 56px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .nav-inner {
    min-height: 56px;
  }

  .menu-root {
    gap: 16px;
    justify-content: center;
    overflow: visible;
  }

  .menu-link {
    min-height: 56px;
    white-space: nowrap;
  }

  .listing-topbar-main {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .actions-row {
    width: 100%;
  }

  .select-order {
    min-width: 0;
    flex: 1;
  }

  .section-beneficios-inner {
    grid-template-columns: 1fr;
  }

  .single-layout {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .vehicle-features-section {
    padding: 40px 36px;
  }

  .vehicle-inspection-section {
    margin-top: 46px;
  }

  .vehicle-inspection-description {
    font-size: 17px;
  }

  .inspection-cert-card {
    padding: 24px 26px;
  }

  .inspection-row {
    padding: 18px 26px;
  }

  .related-vehicles-section {
    padding: 50px 40px;
  }

  .related-nav-btn {
    width: 48px;
    height: 48px;
  }

  .related-nav-btn--prev {
    left: 12px;
  }

  .related-nav-btn--next {
    right: 12px;
  }

  .columna-info-sticky {
    position: relative;
    top: auto;
  }

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

  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .newsletter-form button {
    width: 100%;
    max-width: 320px;
  }

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

  .card {
    grid-column: span 4;
  }

  .grid.list-view .listing-row {
    grid-template-columns: 140px 1fr;
    align-items: start;
  }

  .grid.list-view .col-image {
    width: 140px;
    min-width: 140px;
  }

  .grid.list-view .col-price,
  .grid.list-view .col-category,
  .grid.list-view .col-action {
    grid-column: 2;
    justify-content: flex-start;
  }

  .grid.list-view .col-action .vehicle-btn {
    max-width: 220px;
  }

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

  .section-listado-inner {
    flex-direction: column;
  }

  .sidebar-filtros {
    width: 100%;
    min-width: 100%;
    position: static;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .tablet-collapse {
    display: none;
  }

  .menu-more {
    display: flex;
  }
}

@media (max-width: 599px) {
  .hero-container {
    min-height: auto;
    padding: 24px 16px;
  }

  .hero-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left {
    align-items: center;
    text-align: center;
    padding-top: 0;
  }

  .hero-heading {
    font-size: clamp(28px, 5vw, 32px);
  }

  .hero-right {
    justify-content: center;
  }

  .hero-right img {
    width: min(100%, 560px);
  }

  .hero-search {
    padding-left: 16px;
  }

  .hero-search input {
    font-size: 15px;
  }

  .topbar-inner {
    height: 56px;
  }

  .brand {
    width: min(160px, 100%);
    height: 48px;
    margin-right: 0;
  }

  .brand img {
    max-height: 48px;
  }

  .social-links {
    display: none;
  }

  .nav-inner {
    min-height: 48px;
    justify-content: flex-end;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 35;
    padding: 16px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
    overflow-y: auto;
  }

  body.menu-open .main-nav {
    transform: translateX(0);
  }

  .menu-root {
    flex-direction: column;
    gap: 0;
    margin-top: 56px;
    overflow: visible;
  }

  .menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    flex-direction: column;
  }

  .menu-link {
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 16px;
  }

  .menu-link.is-active {
    border-bottom: 0;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
  }

  .dropdown {
    position: static;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    border: 0;
    border-radius: 4px;
    box-shadow: none;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.2s ease;
  }

  .menu-item.is-open > .dropdown {
    max-height: 520px;
    padding: 8px 0;
  }

  .dropdown a {
    min-height: 52px;
    display: flex;
    align-items: center;
  }

  .mobile-social-links {
    display: flex;
    margin-top: 24px;
  }

  .mobile-social-links a {
    width: 28px;
    height: 28px;
    min-height: 28px;
  }

  .container {
    padding: 16px;
  }

  .section-categorias {
    padding: 40px 16px;
  }

  .section-listado {
    padding: 40px 16px;
  }

  .section-listado-inner {
    flex-direction: column;
  }

  .section-beneficios {
    padding: 48px 16px;
  }

  .single-vehiculo-wrapper {
    padding: 28px 16px 16px;
  }

  .single-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vehicle-sections-nav {
    margin-top: 34px;
    margin-bottom: 34px;
  }

  .vehicle-sections-nav-btn {
    min-width: 170px;
    height: 48px;
    font-size: 15px;
  }

  .vehicle-details-title {
    font-size: 19px;
    margin-bottom: 26px;
  }

  .vehicle-features-section {
    padding: 30px 18px;
    margin-top: 34px;
    border-radius: 14px;
  }

  .vehicle-features-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-block-head {
    gap: 14px;
  }

  .feature-block-icon {
    width: 36px;
    height: 36px;
  }

  .feature-block-title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .feature-block-list {
    font-size: 15px;
    line-height: 1.75;
    padding-left: 16px;
  }

  .vehicle-inspection-section {
    margin-top: 34px;
  }

  .vehicle-inspection-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .vehicle-inspection-description {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .inspection-cert-card {
    padding: 18px 16px;
    gap: 12px;
    margin-bottom: 16px;
    border-radius: 14px;
    align-items: flex-start;
  }

  .inspection-cert-logo {
    width: 52px;
  }

  .inspection-cert-title,
  .inspection-row-title,
  .inspection-row-status {
    font-size: 16px;
  }

  .inspection-cert-text {
    font-size: 15px;
  }

  .inspection-checklist-card {
    border-radius: 14px;
    padding: 8px 0;
    margin-bottom: 16px;
  }

  .inspection-row {
    padding: 14px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .inspection-row-status {
    text-align: left;
  }

  .inspection-check {
    font-size: 20px;
  }

  .related-vehicles-section {
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 16px;
  }

  .related-vehicles-title {
    font-size: 20px;
    margin-bottom: 26px;
  }

  .related-nav-btn {
    width: 42px;
    height: 42px;
  }

  .related-nav-btn--prev {
    left: 8px;
  }

  .related-nav-btn--next {
    right: 8px;
  }

  .details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .detail-item {
    gap: 10px;
    padding-bottom: 14px;
  }

  .detail-item-icon {
    width: 30px;
    height: 30px;
  }

  .detail-item-label {
    font-size: 14px;
  }

  .detail-item-value {
    font-size: 16px;
  }

  .columna-info-sticky {
    position: relative;
    top: auto;
  }

  .single-info-card {
    padding: 24px 18px;
  }

  .single-vehicle-title {
    font-size: 28px;
  }

  .single-vehicle-price {
    font-size: 24px;
  }

  .single-vehicle-meta-line,
  .single-legal-copy {
    font-size: 15px;
  }

  .thumbnails-scroll-container {
    margin-top: 14px;
  }

  .thumbnails-track {
    gap: 10px;
  }

  .single-thumb {
    width: 96px;
    height: 72px;
  }

  .single-btn-primary,
  .single-btn-secondary {
    width: 100%;
  }

  .vehicle-modal {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
  }

  .modal-left {
    padding: 20px 20px 8px;
  }

  .modal-left-title {
    font-size: 18px;
  }

  .modal-right {
    padding: 18px 20px 24px;
  }

  .modal-right h2 {
    margin-bottom: 22px;
    font-size: 19px;
    max-width: 100%;
  }

  .single-gallery-empty,
  .single-content-placeholder {
    min-height: 220px;
  }

  .section-beneficios-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .beneficios-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-top {
    padding: 48px 16px 32px;
  }

  .footer-bottom {
    padding: 22px 16px;
  }

  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand,
  .footer-sedes,
  .footer-contacto,
  .footer-newsletter {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col-text {
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .newsletter-form {
    width: 100%;
    max-width: 360px;
  }

  .newsletter-form button {
    width: 100%;
    max-width: 100%;
  }

  .whatsapp-floating-button {
    right: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
    min-height: 64px;
  }

  .whatsapp-floating-button i {
    font-size: 30px;
  }

  .testimonios-card {
    padding: 24px 18px;
    min-height: 280px;
  }

  .clientes-counter {
    font-size: 42px;
  }

  .listing-topbar-main {
    flex-direction: column;
    align-items: stretch;
  }

  .actions-row {
    width: 100%;
  }

  .select-order {
    flex: 1;
    min-width: 0;
    max-width: 100%;
  }

  .filtros-activos-row {
    margin-bottom: 16px;
  }

  .sugerencias-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    align-items: center;
    -webkit-overflow-scrolling: touch;
  }

  .sugerencias-row .sugerencias-title,
  .sugerencias-row .suggestion-chip {
    flex: 0 0 auto;
  }

  .grid-categorias {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .categoria-card {
    padding: 20px;
  }

  .sidebar-filtros {
    width: 100%;
    min-width: 100%;
    padding: 20px;
  }

  .listing-loading {
    min-height: 260px;
    padding: 24px 16px;
  }

  .listing-loading-text {
    font-size: 18px;
    max-width: 320px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    grid-column: auto;
  }

  .grid.list-view .listing-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .grid.list-view .col-image,
  .grid.list-view .col-info,
  .grid.list-view .col-price,
  .grid.list-view .col-category,
  .grid.list-view .col-action {
    width: 100%;
    min-width: 0;
  }

  .grid.list-view .vehicle-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .grid.list-view .col-action .vehicle-btn {
    width: 100%;
    max-width: 100%;
  }

  .load-more-btn {
    width: 100%;
    max-width: 320px;
  }
}
