/* 1 --- Reset */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Modelo de caja consistente */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Elimina márgenes por defecto */
* {
  margin: 0;
  padding: 0;
}

/* Ajustes base del documento */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* Base del body */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Imágenes y media responsivas */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Formularios heredan fuente */
input,
button,
textarea,
select {
  font: inherit;
}

/* Botones sin estilos raros */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Listas sin bullets */
ul,
ol {
  list-style: none;
}

/* Enlaces sin subrayado por defecto */
a {
  text-decoration: none;
  color: inherit;
}

/* 2 --- Variables */

:root {
  /* Colores base */
  --color-black: #0f0f0f; /* Negro principal (fondos) */
  --color-dark: #1a1a1a; /* Negro secundario */
  --color-gray-900: #222222;
  --color-gray-700: #444444;
  --color-gray-500: #777777;
  --color-gray-300: #cccccc;
  --color-gray-100: #f5f5f5;

  --color-white: #ffffff;

  /* Color acento (mockup) */
  --color-primary: #cfa54a; /* Dorado / premium */
  --color-primary-dark: #b8933f;
  --color-primary-light: #e0c37a;

  /* Estados */
  --color-success: #2ecc71; /* Disponível */
  --color-warning: #f1c40f; /* Reservado */
  --color-danger: #e74c3c; /* Vendido */

  /* Texto */
  --text-primary: var(--color-white);
  --text-secondary: var(--color-gray-300);
  --text-muted: var(--color-gray-500);
  --text-dark: var(--color-black);

  /* Fondos */
  --bg-body: var(--color-black);
  --bg-section: var(--color-dark);
  --bg-card: var(--color-gray-900);
  --bg-footer: #0b0b0b;

  /* Tipografía */
  --font-base:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Tamaños de fuente */
  --fs-xs: 0.75rem; /* 12px */
  --fs-sm: 0.875rem; /* 14px */
  --fs-md: 1rem; /* 16px */
  --fs-lg: 1.25rem; /* 20px */
  --fs-xl: 1.75rem; /* 28px */
  --fs-xxl: 2.25rem; /* 36px */

  /* Pesos */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Espaciados */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  /* Bordes y radios */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-cta: 0px;

  /* Sombras */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;

  /* Layout */
  --container-width: 1200px;
  --page-gutter: clamp(0.75rem, 2.2vw, 1.75rem);
}

/* 3 --- Tipografia */

body {
  font-family: var(--font-base);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  color: var(--text-primary);
  background-color: var(--bg-body);
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  color: var(--text-primary);
}

/* Jerarquía de títulos */
h1 {
  font-size: var(--fs-xxl);
}

h2 {
  font-size: var(--fs-xl);
}

h3 {
  font-size: var(--fs-lg);
}

h4 {
  font-size: var(--fs-md);
}

h5 {
  font-size: var(--fs-sm);
}

h6 {
  font-size: var(--fs-xs);
}

/* Texto general */
p {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Texto pequeño */
small {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* Enlaces */
a {
  font-weight: var(--fw-medium);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

/* Listas (cuando tengan texto) */
li {
  font-size: var(--fs-md);
  color: var(--text-secondary);
}

/* Precios (clase utilitaria) */
.price {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

/* Texto destacado */
.text-highlight {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

/* 4 --- Layout */

/* Contenedor principal reutilizable */
.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* Separación vertical estándar entre secciones */
section {
  padding-block: var(--space-xl);
}

/* Header, main y footer ocupan ancho completo */
header,
main,
footer {
  width: 100%;
}

/* Main como bloque principal */
main {
  display: block;
}

/* Secciones con fondo oscuro secundario */
.section-dark {
  background-color: var(--bg-section);
}

/* Cards base (para stock, destacados, ficha) */
.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Grids base reutilizables */
.grid {
  display: grid;
  gap: var(--space-lg);
}

/* Grid 2 columnas (desktop) */
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Grid 3 columnas (desktop) */
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Grid 4 columnas (desktop) */
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive: tablet y móvil */
@media (max-width: 1024px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  section {
    padding-block: var(--space-lg);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* 5 --- Secciones */

/* Top Banner */

.top-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 48px;
  padding-inline: clamp(0.75rem, 2vw, 2.2rem);
  background: linear-gradient(90deg, #2a2b32 0%, #1f2026 100%);
  color: #f4f4f4;
  font-size: clamp(0.84rem, 1vw, 0.9rem);
  border-bottom: 0;
}

.top-banner__left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.top-banner__link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #f4f4f4;
  line-height: 1.2;
}

.top-banner__link--message {
  pointer-events: none;
}

.top-banner__link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

.top-banner__link i {
  color: #d9d9d9;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.top-banner__right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex-shrink: 0;
  padding-left: 1.05rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.top-banner__link--phone i {
  color: #e12b2b;
  font-size: 1rem;
}

.top-banner__link--phone span {
  font-size: clamp(1.03rem, 0.3vw, 1.72rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 2rem);
  min-height: 78px;
  padding-inline: clamp(0.75rem, 2.6vw, 2rem);
  border: 0;
  border-bottom: 1px solid #e3e3e3;
  background: #ffffff;
}

.site-header__logo {
  flex: 0 0 auto;
}

.site-header__logo img {
  width: clamp(170px, 24vw, 150px);
  height: auto;
}

.site-header__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  color: #202020;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.site-header__menu-toggle:hover {
  color: #000000;
  border-color: #c8c8c8;
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.9rem, 1.8vw, 2.2rem);
}

.site-nav__link {
  color: #232323;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: color var(--transition-fast);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #000000;
}

.site-nav__item--cta {
  margin-left: 0.25rem;
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 1.2rem;
  border-radius: 10px;
  background: #cb2028;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  transition: background-color var(--transition-fast);
}

.site-nav__cta:hover {
  color: #ffffff;
  background: #ae1b22;
}

@media (max-width: 960px) {
  .top-banner {
    min-height: 44px;
    font-size: 0.8rem;
  }

  .top-banner__link--phone span {
    font-size: clamp(0.98rem, 2.7vw, 1.1rem);
  }

  .site-header {
    min-height: 70px;
  }

  .site-nav__list {
    gap: 1rem;
  }

  .site-nav__link {
    font-size: 0.98rem;
  }

  .site-nav__cta {
    min-height: 40px;
    padding-inline: 0.9rem;
    font-size: 0.94rem;
  }
}

.servicos {
  padding-block: clamp(2rem, 3.5vw, 3rem);
  border-top: 1px solid #ebebee;
  border-bottom: 1px solid #ebebee;
  background:
    linear-gradient(180deg, rgba(248, 248, 250, 0.98), rgba(242, 242, 245, 0.98)),
    url("../assets/mockups/fondo.png");
  background-size: cover;
  background-position: center;
}

.servicos__header {
  margin: 0 auto 1.4rem;
  padding-inline: var(--page-gutter);
  text-align: center;
}

.servicos__header h2 {
  color: #151820;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.servicos__grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.35rem);
}

.servico-item {
  min-height: 236px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #ececf1;
  box-shadow: 0 12px 24px rgba(25, 28, 36, 0.08);
  overflow: hidden;
}

.servico-item__icon {
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid #f0f0f3;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9fb 100%);
}

.servico-item__icon::after {
  content: "";
  position: absolute;
  width: 74%;
  height: 26px;
  left: 13%;
  bottom: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 31, 41, 0.12), rgba(27, 31, 41, 0));
}

.servico-item__icon i {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 2.65rem;
  color: #cf2029;
}

.servico-item h3 {
  margin: 0;
  padding: 0.78rem 0.85rem 0.15rem;
  color: #181b22;
  text-transform: none;
  font-size: clamp(1.48rem, 1.65vw, 1.92rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.servico-item p {
  margin: 0;
  padding: 0.2rem 0.95rem 1rem;
  color: #343844;
  font-size: clamp(1rem, 1.02vw, 1.12rem);
  line-height: 1.32;
}

@media (max-width: 960px) {
  .servicos__header h2 {
    font-size: clamp(1.65rem, 4.6vw, 2.1rem);
  }

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

@media (max-width: 700px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 0.45rem;
    padding-block: 0.55rem;
  }

  .site-header__logo {
    min-width: 0;
  }

  .site-header__logo img {
    width: clamp(180px, 47vw, 260px);
  }

  .site-header__menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.22s ease;
  }

  .site-header.is-menu-open .site-nav {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    padding-top: 0.6rem;
    border-top: 1px solid #e8e8e8;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.55rem;
    overflow: visible;
    padding-bottom: 0.35rem;
  }

  .site-nav__item {
    width: 100%;
  }

  .site-nav__link {
    display: inline-flex;
    width: 100%;
    padding: 0.24rem 0;
    font-size: 1rem;
  }

  .site-nav__item--cta {
    margin-left: 0;
    padding-top: 0.2rem;
  }

  .site-nav__cta {
    width: 100%;
  }

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

  .servico-item {
    min-height: 210px;
  }
}

/* Hero */
.hero {
  width: 100%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 249, 249, 0.96)),
    url("../assets/mockups/fondo.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 50%, rgba(207, 212, 219, 0.34), transparent 48%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.38) 54%, rgba(255, 255, 255, 0.08) 100%);
  pointer-events: none;
}

.hero__container {
  margin-inline: auto;
  min-height: clamp(420px, 56vh, 620px);
  padding: clamp(1.2rem, 3.2vw, 2.5rem) clamp(1rem, 3.2vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 46%);
  align-items: center;
  gap: clamp(0.6rem, 2vw, 2rem);
}

.hero__content {
  max-width: 620px;
  padding: clamp(0.1rem, 1vw, 0.4rem);
  color: #121319;
}

.hero__eyebrow {
  margin: 0 0 0.9rem;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #2e3038;
}

.hero__content h1 {
  font-size: clamp(2rem, 5.2vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-transform: none;
  color: #11131a;
}

.hero__description {
  max-width: 560px;
  color: #2b2d35;
  font-size: clamp(1.03rem, 1.42vw, 1.94rem);
  line-height: 1.4;
  margin-bottom: 1.9rem;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
}

.hero .hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b81b21;
  padding: 0.86rem 1.75rem;
  border-radius: 12px;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(180deg, #d8242d 0%, #bb1b22 100%);
  box-shadow: none;
}

.hero .hero__cta:hover {
  color: #fff;
  border-color: #a4161d;
  background: linear-gradient(180deg, #cc2028 0%, #ab171e 100%);
}

.hero__media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 100%;
  padding-right: clamp(0rem, 1vw, 0.9rem);
}

.hero__vehicle {
  width: min(100%, 820px);
  max-height: clamp(260px, 37vw, 460px);
  object-fit: contain;
  object-position: center right;
  filter: contrast(1.08) saturate(0.95) drop-shadow(0 12px 22px rgba(20, 22, 29, 0.24));
  opacity: 1;
  transform: translateX(0.4rem);
}

@media (max-width: 960px) {
  .hero__container {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 1.8rem;
    gap: 1rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__media {
    justify-content: center;
  }

  .hero__vehicle {
    width: min(100%, 560px);
    max-height: 300px;
    transform: none;
  }
}

@media (max-width: 700px) {
  .hero__container {
    padding-block: 1.4rem;
  }

  .hero__description {
    margin-bottom: 1.2rem;
  }
}

/* Ficha page */
.back-link {
  margin: 0 auto;
  padding: 0.65rem 1rem 0.55rem;
  border-top: 1px solid rgba(207, 165, 74, 0.24);
  border-bottom: 1px solid rgba(207, 165, 74, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #0d0a12;
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
}

.ficha {
  margin: 0 auto;
  padding: 0.72rem 1rem 1rem;
  border-bottom: 1px solid rgba(207, 165, 74, 0.24);
  background:
    radial-gradient(circle at 10% 0%, rgba(207, 165, 74, 0.1), transparent 42%),
    linear-gradient(135deg, #0b0810 0%, #100c18 50%, #09070e 100%);
}

.ficha__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 0.78rem;
}

.ficha__gallery,
.ficha__summary,
.ficha__details {
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #110d18;
}

.ficha__gallery {
  width: 100%;
  min-width: 0;
  padding: 0.44rem;
}

.ficha__main-image {
  position: relative;
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  border: 1px solid rgba(207, 165, 74, 0.22);
  border-radius: 4px;
  overflow: hidden;
  background: #0b0a10;
}

.ficha__main-image .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 100%;
  height: 100%;
  align-items: stretch;
  transition: transform 0.35s ease;
  will-change: transform;
}

.ficha__main-image .swiper-slide {
  flex: 0 0 auto;
  display: block;
  width: 100%;
  min-width: 0;
  height: 100%;
}

.ficha__slide {
  height: 100%;
}

.ficha__slide img {
  cursor: pointer;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ficha__status {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  padding: 0.18rem 0.4rem;
  border-radius: 3px;
  border: 1px solid rgba(59, 189, 128, 0.58);
  background: rgba(23, 101, 68, 0.86);
  color: #deffeb;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ficha__thumbnails {
  margin-top: 0.42rem;
  overflow: hidden;
  padding-bottom: 0.2rem;
}

.ficha__thumbnails .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 0.36rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ficha__thumbnails .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.ficha__thumbnails .swiper-slide {
  flex: 0 0 92px;
}

.ficha__thumb {
  border: 1px solid rgba(207, 165, 74, 0.26);
  border-radius: 3px;
  overflow: hidden;
  min-height: 58px;
  cursor: pointer;
  opacity: 0.56;
  transition: opacity var(--transition-fast), border-color var(--transition-fast);
}

.ficha__thumb.swiper-slide-thumb-active {
  opacity: 1;
  border-color: rgba(207, 165, 74, 0.7);
}

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

.ficha-swiper-prev,
.ficha-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(25, 25, 30, 0.82);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ficha-swiper-prev {
  left: 0.75rem;
}

.ficha-swiper-next {
  right: 0.75rem;
}

.ficha__counter {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 3;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: rgba(25, 25, 30, 0.86);
  color: #fff;
  font-size: 0.74rem;
}

body.is-lightbox-open {
  overflow: hidden;
}

.ficha-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(18, 18, 21, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem 7.2rem;
}

.ficha-lightbox[hidden] {
  display: none;
}

.ficha-lightbox__image {
  max-width: min(95vw, 1500px);
  max-height: calc(100vh - 9rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.45);
}

.ficha-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 0;
  background: rgba(34, 34, 38, 0.82);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ficha-lightbox__nav--prev {
  left: 1.1rem;
}

.ficha-lightbox__nav--next {
  right: 1.1rem;
}

.ficha-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ficha-lightbox__counter {
  position: absolute;
  right: 1.1rem;
  bottom: 6.2rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(28, 28, 34, 0.88);
  color: #fff;
  font-size: 0.8rem;
}

.ficha-lightbox__thumbs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 0.9rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ficha-lightbox__thumbs::-webkit-scrollbar {
  display: none;
}

.ficha-lightbox__thumb {
  flex: 0 0 120px;
  height: 78px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.58;
  cursor: pointer;
  background: #111;
}

.ficha-lightbox__thumb.is-active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.9);
}

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

.ficha__gallery-actions {
  margin-top: 0.46rem;
  text-align: center;
}

.ficha__gallery-cta {
  min-height: 28px;
  padding-inline: 1rem;
  border: 1px solid #a47d2d;
  border-radius: var(--radius-cta);
  background: linear-gradient(180deg, #a57d31 0%, #8c6621 100%);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ficha__details {
  margin-top: 0.58rem;
  padding: 0.55rem 0.56rem;
}

.ficha__details-header h2 {
  font-size: 1.2rem;
  color: #e6c46f;
  margin-bottom: 0.45rem;
}

.ficha__details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(207, 165, 74, 0.24);
}

.ficha__details-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.32rem;
  padding: 0.35rem 0.42rem;
  border-bottom: 1px solid rgba(207, 165, 74, 0.16);
}

.ficha__details-row:nth-child(odd) {
  border-right: 1px solid rgba(207, 165, 74, 0.16);
}

.ficha__details-row dt {
  color: rgba(236, 209, 141, 0.74);
  font-size: 0.7rem;
}

.ficha__details-row dd {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  margin: 0;
}

.ficha__details-row dd a {
  color: #e3bc62;
}

.ficha__details-extra {
  margin-top: 0.7rem;
  border: 1px solid rgba(207, 165, 74, 0.24);
  padding: 0.62rem 0.68rem;
  background: rgba(14, 11, 20, 0.68);
}

.ficha__details-subtitle {
  margin: 0 0 0.35rem;
  color: #e6c46f;
  font-size: 0.94rem;
  font-weight: 600;
}

.ficha__details-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  line-height: 1.55;
}

.ficha__details-disclaimer {
  margin: 0.52rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.45;
}

.ficha__details-notes {
  margin: 0.25rem 0 0.55rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.22rem;
}

.ficha__details-notes li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.5;
  list-style: disc;
}

.ficha__details-equipment {
  margin: 0.25rem 0 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.ficha__details-equipment li {
  padding: 0.2rem 0.42rem;
  border: 1px solid rgba(207, 165, 74, 0.3);
  background: rgba(18, 14, 26, 0.72);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  line-height: 1.3;
}

.ficha__details-meta {
  margin: 0 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
}

.ficha__details-meta span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.ficha__summary {
  padding: 0.62rem;
}

.ficha__title {
  color: #e6c46f;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}

.ficha__year {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.1rem;
}

.ficha__price {
  margin-top: 0.24rem;
  margin-bottom: 0.56rem;
  font-size: 1.72rem;
  font-weight: 600;
  color: #f6d277;
  line-height: 1;
}

.ficha__desc {
  margin-top: -0.18rem;
  margin-bottom: 0.52rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.ficha__desc--brief {
  margin-top: 0.1rem;
  margin-bottom: 0.58rem;
  padding: 0.48rem 0.56rem;
  border: 1px solid rgba(207, 165, 74, 0.22);
  background: rgba(20, 16, 29, 0.78);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.ficha__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.34rem;
  margin-bottom: 0.55rem;
}

.ficha__highlights li {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.2rem 0.34rem;
  border: 1px solid rgba(207, 165, 74, 0.2);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
}

.ficha__highlights i {
  color: #d5af5a;
  font-size: 0.68rem;
}

.ficha__ctas {
  border-top: 1px solid rgba(207, 165, 74, 0.16);
  padding-top: 0.52rem;
}

.ficha__cta {
  width: 100%;
  min-height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border: 1px solid #a47d2d;
  border-radius: var(--radius-cta);
  background: linear-gradient(180deg, #a57d31 0%, #8c6621 100%);
  color: #fff;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
}

.ficha__cta + .ficha__cta {
  margin-top: 0.34rem;
}

.ficha__phone {
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  text-align: center;
}

.ficha__direct {
  margin-top: 0.82rem;
  border-top: 1px solid rgba(207, 165, 74, 0.16);
  padding-top: 0.72rem;
}

.ficha__direct-title {
  font-size: 0.95rem;
  color: #e6c46f;
  margin-bottom: 0.42rem;
}

.ficha__direct-line {
  width: 100%;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid #a47d2d;
  border-radius: var(--radius-cta);
  background: linear-gradient(180deg, #a57d31 0%, #8c6621 100%);
  color: #fff;
  font-size: 0.72rem;
}

.ficha__direct-line + .ficha__direct-line {
  margin-top: 0.34rem;
}

.ficha__mini-map {
  margin-top: 1.85rem;
  border: 1px solid rgba(207, 165, 74, 0.22);
  border-radius: 4px;
  overflow: hidden;
}

.ficha__mini-map iframe {
  width: 100%;
  min-height: 128px;
  border: 0;
  filter: grayscale(0.5) sepia(0.28) contrast(1.05) brightness(0.76);
}

.ficha__hours {
  padding: 0.36rem 0.45rem 0.5rem;
  background: #0f0c16;
}

.ficha__address {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
}

.ficha__address--top {
  margin-top: 0.62rem;
  margin-bottom: 0.34rem;
  text-align: right;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.ficha__hours ul {
  display: grid;
  gap: 0.2rem;
}

.ficha__hours li {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.66rem;
}

/* Detail panel aligned with site style */
.sv-panel {
  margin-top: 0.58rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(207, 165, 74, 0.12), transparent 42%),
    linear-gradient(145deg, #120f19 0%, #181327 55%, #100d17 100%);
  border: 1px solid rgba(207, 165, 74, 0.28);
  color: rgba(255, 255, 255, 0.9);
}

.sv-panel .ficha__details-header {
  grid-column: 1 / -1;
}

.sv-panel h2,
.sv-panel h3,
.sv-panel h4,
.sv-panel p,
.sv-panel li,
.sv-panel dt,
.sv-panel dd,
.sv-panel span,
.sv-panel strong {
  color: inherit;
}

.sv-section {
  grid-column: span 6;
  padding: 0.85rem;
  border: 1px solid rgba(207, 165, 74, 0.22);
  /* background: rgba(12, 10, 17, 0.58); */
}

.sv-section:nth-of-type(1),
.sv-section:nth-of-type(4) {
  grid-column: 1 / -1;
}

.sv-section:nth-of-type(2) {
  grid-column: span 7;
}

.sv-section:nth-of-type(3) {
  grid-column: span 5;
}

.sv-section h3 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #e6c46f;
}

.sv-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.sv-report {
  font-size: 0.86rem;
  color: #f2b05f;
  font-weight: 600;
}

.sv-highlights {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
}

.sv-highlights li {
  display: grid;
  gap: 0.2rem;
  padding: 0.5rem 0.45rem;
  border: 1px solid rgba(207, 165, 74, 0.22);
  background: rgba(14, 11, 20, 0.72);
}

.sv-highlights i {
  font-size: 1.05rem;
  color: #c71f28;
}

.sv-highlights span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
}

.sv-highlights strong {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.sv-description {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.sv-notes {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  columns: 2;
  column-gap: 1.3rem;
}

.sv-notes li {
  list-style: disc;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  break-inside: avoid;
}

.sv-notes li + li {
  margin-top: 0.32rem;
}

.sv-disclaimer {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

.sv-meta {
  margin: 0.8rem 0 0;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}

.sv-subtitle {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #e6c46f;
}

.sv-basic {
  border-top: 1px solid rgba(207, 165, 74, 0.22);
}

.sv-basic div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  padding: 0.52rem 0;
  border-bottom: 1px solid rgba(207, 165, 74, 0.2);
}

.sv-basic dt {
  color: rgba(255, 255, 255, 0.66);
}

.sv-basic dd {
  margin: 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.sv-accordion {
  border-bottom: 1px solid rgba(207, 165, 74, 0.2);
}

.sv-accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.62rem 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.sv-accordion summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease;
}

.sv-accordion[open] summary::after {
  transform: rotate(180deg);
}

.sv-accordion summary::-webkit-details-marker {
  display: none;
}

.sv-accordion ul {
  margin: 0 0 0.6rem;
  padding-left: 1.05rem;
}

.sv-accordion li {
  list-style: disc;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.sv-accordion li + li {
  margin-top: 0.22rem;
}

.sv-accordion-bs .accordion-item {
  border: 1px solid rgba(207, 165, 74, 0.2);
  background: rgba(14, 11, 20, 0.62);
}

.sv-accordion-bs .accordion-item + .accordion-item {
  margin-top: 0.45rem;
}

.sv-accordion-bs .accordion-button {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  box-shadow: none;
}

.sv-accordion-bs .accordion-button:not(.collapsed) {
  background: rgba(207, 165, 74, 0.16);
  color: #f1d18a;
  box-shadow: inset 0 -1px 0 rgba(207, 165, 74, 0.2);
}

.sv-accordion-bs .accordion-button:focus {
  box-shadow: 0 0 0 0.15rem rgba(207, 165, 74, 0.22);
}

.sv-accordion-bs .accordion-button::after {
  filter: invert(82%) sepia(16%) saturate(496%) hue-rotate(358deg) brightness(101%) contrast(90%);
}

.sv-accordion-bs .accordion-body {
  background: rgba(10, 8, 16, 0.5);
}

.sv-accordion-bs .accordion-body ul {
  margin: 0;
  padding-left: 1rem;
}

.sv-accordion-bs .accordion-body li {
  list-style: disc;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

.sv-accordion-bs .accordion-body li + li {
  margin-top: 0.24rem;
}

@media (max-width: 920px) {
  .sv-panel {
    grid-template-columns: 1fr;
  }

  .sv-section,
  .sv-section:nth-of-type(1),
  .sv-section:nth-of-type(2),
  .sv-section:nth-of-type(3),
  .sv-section:nth-of-type(4) {
    grid-column: 1 / -1;
  }

  .sv-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sv-notes {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .sv-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-basic div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.ficha__hours--top {
  display: grid;
  gap: 0.26rem;
  margin: 0 0 0.15rem;
  text-align: right;
}

.ficha__hours--top li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
}

.ficha__hours--top li strong {
  color: rgba(255, 255, 255, 0.96);
}

.ficha__description {
  padding: 0.75rem 0.78rem;
}

.ficha__description-content {
  border: 1px solid rgba(207, 165, 74, 0.24);
  padding: 0.72rem 0.8rem;
  background: rgba(12, 10, 17, 0.62);
}

.ficha__description-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.62;
}

.ficha__description-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

@media (max-width: 960px) {
  .ficha__main-image {
    height: clamp(240px, 56vw, 440px);
  }

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

@media (max-width: 640px) {
  .ficha__main-image {
    height: clamp(220px, 72vw, 380px);
  }

  .back-link,
  .ficha {
    padding-inline: 0.75rem;
  }

  .ficha__thumbnails {
    margin-top: 0.38rem;
  }

  .ficha-swiper-prev,
  .ficha-swiper-next {
    width: 36px;
    height: 36px;
  }

  .ficha-lightbox {
    padding: 0.75rem 0.55rem 6.1rem;
  }

  .ficha-lightbox__image {
    max-height: calc(100vh - 7.7rem);
  }

  .ficha-lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .ficha-lightbox__counter {
    bottom: 5.1rem;
    right: 0.6rem;
    font-size: 0.74rem;
  }

  .ficha-lightbox__thumbs {
    padding: 0.5rem 0.55rem 0.7rem;
  }

  .ficha-lightbox__thumb {
    flex-basis: 94px;
    height: 64px;
  }

  .ficha__details-list {
    grid-template-columns: 1fr;
  }

  .ficha__details-row:nth-child(odd) {
    border-right: 0;
  }

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

/* Stock page */
.page-header {
  margin-inline: auto;
  padding: 0.75rem clamp(0.75rem, 2vw, 1.25rem) 0.45rem;
  border-top: 1px solid rgba(207, 165, 74, 0.24);
  border-bottom: 1px solid rgba(207, 165, 74, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #0d0a12;
}

.page-header h1 {
  color: #e9c56e;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stock {
  margin-inline: auto;
  padding: 0.7rem clamp(0.75rem, 2vw, 1.25rem) 1.1rem;
  border-bottom: 1px solid rgba(207, 165, 74, 0.24);
  background:
    radial-gradient(circle at 15% 10%, rgba(207, 165, 74, 0.08), transparent 45%),
    linear-gradient(135deg, #0b080f 0%, #110d18 50%, #0a0810 100%);
}

.stock__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.stock__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.9rem;
  border: 1px solid rgba(207, 165, 74, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.stock .veiculo-card {
  position: relative;
  border: 1px solid rgba(207, 165, 74, 0.38);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #0f0b15;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.stock .veiculo-card__status {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  font-size: 0.64rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
}

.stock .veiculo-card--reservado .veiculo-card__status {
  color: #ffe9a3;
  border-color: rgba(229, 181, 79, 0.62);
  background: rgba(143, 104, 26, 0.8);
}

.stock .veiculo-card--vendido .veiculo-card__status {
  color: #ffe0e0;
  border-color: rgba(214, 92, 92, 0.56);
  background: rgba(120, 28, 28, 0.84);
}

.stock .veiculo-card--disponivel .veiculo-card__status {
  color: #deffeb;
  border-color: rgba(59, 189, 128, 0.56);
  background: rgba(20, 99, 65, 0.82);
}

.stock .veiculo-card__image {
  border-bottom: 1px solid rgba(207, 165, 74, 0.22);
}

.stock .veiculo-card__image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
}

.stock .veiculo-card__content {
  padding: 0.52rem 0.56rem 0.64rem;
}

.stock .veiculo-card__title {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.stock .veiculo-card__price {
  margin-bottom: 0.42rem;
  color: #f6d277;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.1;
}

.stock .veiculo-card__link {
  min-height: 30px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  border-radius: var(--radius-cta);
}

.stock__pagination {
  margin-top: 0.95rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(207, 165, 74, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.stock__updated {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.77rem;
}

.stock__pages {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.stock__page {
  min-width: 24px;
  min-height: 24px;
  padding-inline: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-cta);
  border: 1px solid rgba(207, 165, 74, 0.36);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
}

.stock__page.is-active {
  color: #ffffff;
  background: #d3232d;
  border-color: #c41e27;
  border-radius: 6px;
}

@media (max-width: 980px) {
  .stock__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .stock {
    padding-inline: 0.75rem;
  }

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

  .stock__pagination {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Destaques */
.destaques {
  padding-block: clamp(2rem, 3.5vw, 3.1rem);
  border-top: 1px solid #eaeaf0;
  border-bottom: 1px solid #eaeaf0;
  background:
    linear-gradient(180deg, rgba(248, 248, 250, 0.97), rgba(242, 242, 245, 0.97)),
    url("../assets/mockups/fondo.png");
  background-size: cover;
  background-position: center;
}

.destaques__header {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(1.1rem, 2.2vw, 2.5rem);
  padding-inline: var(--page-gutter);
}

.destaques__header h2 {
  color: #151820;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.destaques__grid {
  margin: 0 auto;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.9vw, 1.45rem);
}

.destaques__footer {
  margin-top: clamp(1.1rem, 2.2vw, 2rem);
  text-align: center;
  padding-inline: var(--page-gutter);
}

.destaques .destaques__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.75rem 1.7rem;
  border-radius: 12px;
  border: 1px solid #b81b21;
  background: linear-gradient(180deg, #da2530 0%, #b91b23 100%);
  color: #ffffff;
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 10px 18px rgba(176, 24, 33, 0.26);
}

.destaques .destaques__cta:hover {
  color: #ffffff;
  border-color: #a9161e;
  background: linear-gradient(180deg, #ca212a 0%, #a4161d 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(160, 21, 29, 0.3);
}

.destaques .veiculo-card {
  border: 1px solid #ececf1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(22, 24, 31, 0.08);
  overflow: hidden;
}

.destaques .veiculo-card__image {
  border-bottom: 1px solid #f0f0f4;
  background: #f4f4f7;
}

.destaques .veiculo-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92);
}

.destaques .veiculo-card__content {
  padding: 0.95rem 1rem 1.05rem;
  text-align: center;
}

.destaques .veiculo-card__content h3 {
  font-size: clamp(1.2rem, 1.8vw, 1rem);
  font-weight: 600;
  color: #151820;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.destaques .veiculo-card__info {
  display: none;
}

.destaques .veiculo-card__price {
  margin: 0 0 0.95rem;
  color: #d4232d;
  font-size: clamp(1.9rem, 1.95vw, 1.28rem);
  font-weight: 700;
  line-height: 1.1;
}

.destaques .veiculo-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 240px);
  margin-inline: auto;
  align-self: center;
  min-height: 56px;
  border-radius: 12px;
  border: 1px solid #b81b21;
  background: linear-gradient(180deg, #da2530 0%, #b91b23 100%);
  color: #ffffff;
  font-size: clamp(1rem, 1.2vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
}

.destaques .veiculo-card__link:hover {
  color: #ffffff;
  border-color: #a9161e;
  background: linear-gradient(180deg, #ca212a 0%, #a4161d 100%);
}

.hero__cta,
.veiculo-card__link,
.destaques__cta,
.sobre__cta,
.contactos__cta,
.contact-form__button,
.ficha__cta,
.ficha__direct-line,
.ficha__gallery-cta {
  border-radius: var(--radius-cta);
  border: 1px solid #d8b266;
  background: linear-gradient(180deg, #d4aa57 0%, #b7852f 100%);
  color: #fff8e8;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero__cta:hover,
.veiculo-card__link:hover,
.destaques__cta:hover,
.sobre__cta:hover,
.contactos__cta:hover,
.contact-form__button:hover,
.ficha__cta:hover,
.ficha__direct-line:hover,
.ficha__gallery-cta:hover {
  color: #ffffff;
  border-color: #f0cd86;
  filter: brightness(1.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.hero__cta:focus-visible,
.veiculo-card__link:focus-visible,
.destaques__cta:focus-visible,
.sobre__cta:focus-visible,
.contactos__cta:focus-visible,
.contact-form__button:focus-visible,
.ficha__cta:focus-visible,
.ficha__direct-line:focus-visible,
.ficha__gallery-cta:focus-visible {
  outline: 2px solid #ffe19c;
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .destaques__header h2 {
    font-size: clamp(1.65rem, 4.6vw, 2.1rem);
  }

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

@media (max-width: 700px) {
  .destaques__grid {
    grid-template-columns: 1fr;
  }
}

/* Sobre */
.sobre {
  padding-block: 6rem;
  border-top: 1px solid rgba(207, 165, 74, 0.2);
  border-bottom: 1px solid rgba(207, 165, 74, 0.2);
  background: radial-gradient(circle at 16% 20%, rgba(207, 165, 74, 0.12), transparent 45%), radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.06), transparent 48%), linear-gradient(135deg, #0a070e 0%, #130f1c 50%, #0b0811 100%);
}

.sobre__content {
  margin-inline: auto;
  max-width: var(--container-width);
  padding-inline: clamp(0.75rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2.2rem);
  align-items: stretch;
}

.sobre__left h2 {
  font-size: clamp(2rem, 4.3vw, 3.9rem);
  line-height: 1.04;
  color: #f6f8fb;
  margin-bottom: clamp(1rem, 2.5vw, 1.8rem);
}

.sobre__features {
  display: grid;
  gap: 0.75rem;
}

.sobre-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  padding: 0.9rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 16% 20%, rgba(207, 165, 74, 0.12), transparent 45%), radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.06), transparent 48%), linear-gradient(135deg, #0a070e 0%, #130f1c 50%, #0b0811 100%);
}

.sobre-feature__num {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #f4fbff;
  background: var(--color-primary-dark);
  flex: 0 0 auto;
}

.sobre-feature__text h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.2;
  color: #f1f4fa;
  margin-bottom: 0.22rem;
}

.sobre-feature__text p {
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  color: rgba(255, 255, 255, 0.72);
}

.sobre__right {
  padding: clamp(0.5rem, 1.8vw, 1rem);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 16% 20%, rgba(207, 165, 74, 0.12), transparent 45%), radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.06), transparent 48%), linear-gradient(135deg, #0a070e 0%, #130f1c 50%, #0b0811 100%);
}

.sobre-post {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #f4f5f8;
  color: #121827;
  box-shadow: 0 24px 46px rgba(4, 7, 14, 0.45);
}

.sobre-post__media {
  position: relative;
  background: #cfd4dc;
}

.sobre-post__media img {
  width: 100%;
  object-fit: cover;
}

.sobre-post__pager {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
}

.sobre-post__pager span {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.sobre-post__pager span:first-child {
  background: #ffffff;
}

.sobre-post__counter {
  position: absolute;
  right: 0.75rem;
  bottom: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  min-height: 28px;
  padding-inline: 0.62rem;
  border-radius: 999px;
  background: rgba(24, 29, 38, 0.78);
  color: #f4f7fc;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.sobre-post__counter i {
  color: #c9d2df;
}

.sobre-post__body {
  padding: 0.85rem 0.9rem 0.6rem;
}

.sobre-post__body h3 {
  color: #0f172b;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.18;
  margin-bottom: 0.28rem;
}

.sobre-post__body p {
  color: #3a4356;
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  margin-bottom: 0.4rem;
}

.sobre-post__body strong {
  color: #d64525;
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
  line-height: 1;
}

.sobre-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0.55rem 0.9rem 0.88rem;
  border-top: 1px solid rgba(10, 16, 29, 0.12);
}

.sobre-post__meta span {
  font-size: 0.82rem;
  color: #2d364b;
}

.sobre-post__meta i {
  margin-right: 0.3rem;
}

.sobre-post__meta .fa-heart {
  color: #d23152;
}

.sobre-post__meta .fa-comment {
  color: #1874c4;
}

.sobre__lead {
  font-size: clamp(0.85rem, 1vw, 0.98rem);
  color: rgba(255, 255, 255, 0.76);
  margin-top: 0.85rem;
  margin-bottom: 0.85rem;
}

.sobre__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 42px;
  border-radius: var(--radius-cta);
  color: #f8fdff;
  font-size: 0.87rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sobre__cta:hover {
  color: #fff;
  border-color: #f0cd86;
}

@media (max-width: 960px) {
  .sobre__content {
    grid-template-columns: 1fr;
  }

  .sobre__left h2 {
    max-width: 16ch;
  }
}

/* Contactos */
.contactos {
  padding-block: clamp(1.3rem, 2.4vw, 2rem);
  border-top: 1px solid rgba(207, 165, 74, 0.22);
  border-bottom: 1px solid rgba(207, 165, 74, 0.22);
  background:
    radial-gradient(circle at 20% 10%, rgba(207, 165, 74, 0.1), transparent 52%),
    linear-gradient(135deg, #0a080e 0%, #12101a 52%, #0a0810 100%);
}

.contactos__grid {
  border-radius: 10px;
  max-width: var(--container-width);
  margin-inline: auto;
  display: grid;
  gap: 0;
  border: 1px solid rgba(207, 165, 74, 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.contactos__map {
  min-height: 270px;
  position: relative;
}

.contactos__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 8, 13, 0.18), rgba(11, 8, 13, 0.45)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      transparent 2px 6px
    );
  pointer-events: none;
}

.contactos__map iframe {
  width: 100%;
  height: 100%;
  min-height: 270px;
  border: 0;
  filter: grayscale(0.55) sepia(0.35) contrast(1.05) brightness(0.76);
}

.contactos__info {
  padding: clamp(1rem, 2.3vw, 1.45rem);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.06), transparent 42%),
    linear-gradient(145deg, #111018 0%, #171323 100%);
}

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

.contactos__block + .contactos__block {
  margin-top: 0.62rem;
}

.contactos__block address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 1.9vw, 1.9rem);
  line-height: 1.1;
  margin-bottom: 0.58rem;
}

.contactos__horario li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  margin-bottom: 0.24rem;
}

.contactos__horario li strong {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.93);
}

.contactos__actions {
  margin-top: 1.05rem;
  display: flex;
  gap: 0.62rem;
}

.contactos__cta {
  flex: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  padding-inline: 0.85rem;
  color: #f6f1df;
  font-size: clamp(0.85rem, 0.95vw, 0.94rem);
  letter-spacing: 0.02em;
}

.contactos__cta:hover {
  color: #fff;
  border-color: #ddba69;
  background: linear-gradient(180deg, #be9746 0%, #976f29 100%);
}

/* Footer + formulario */
.site-footer {
  background: #0b0a0f;
}

.site-footer__bottom {
  margin-inline: auto;
  padding: clamp(0.75rem, 1.6vw, 1rem) clamp(0.9rem, 2vw, 1.25rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.site-footer__copyright,
.site-footer__dev {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
}

.site-footer__dev a {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
}

.site-footer__dev a:hover {
  color: var(--color-primary-light);
}

.site-footer__top {
  max-width: var(--container-width);
  padding: 20px;
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 1.7vw, 1rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
}

.site-footer__contact,
.site-footer__form {
  border-radius: 10px;
  padding: clamp(0.85rem, 1.8vw, 1.2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #12101a;
}

.site-footer__contact h2,
.site-footer__form h2 {
  color: var(--color-primary);
  font-size: clamp(1.1rem, 1.8vw, 1.2rem);
  margin-bottom: 0.65rem;
}

.site-footer__list li + li {
  margin-top: 0.5rem;
}

.site-footer__list a {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
}

.site-footer__list i {
  color: var(--color-primary);
}

.site-footer__note,
.site-footer__privacy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 0.62rem;
}

.contact-form__contact-card {
  margin-bottom: 0.8rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(207, 165, 74, 0.26);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #171325;
}

.contact-form__contact-card h3 {
  color: var(--color-primary);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  margin-bottom: 0.55rem;
}

.contact-form__contact-list li + li {
  margin-top: 0.42rem;
}

.contact-form__contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.contact-form__contact-list i {
  color: var(--color-primary);
}

.contact-form__contact-note {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

.contact-form__flash {
  margin: 0 0 0.55rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.86rem;
}

.contact-form__flash--success {
  border: 1px solid rgba(46, 204, 113, 0.45);
  background: rgba(46, 204, 113, 0.12);
  color: #c8f3db;
}

.contact-form__flash--error {
  border: 1px solid rgba(231, 76, 60, 0.45);
  background: rgba(231, 76, 60, 0.12);
  color: #ffd2ce;
}

.contact-form__label {
  display: inline-block;
  margin-bottom: 0.22rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border: 1px solid rgba(207, 165, 74, 0.28);
  border-radius: 8px;
  background: rgba(7, 7, 10, 0.72);
  color: #ececec;
  padding: 0.62rem 0.7rem;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: 0;
  border-color: rgba(207, 165, 74, 0.76);
  box-shadow: 0 0 0 2px rgba(207, 165, 74, 0.17);
}

.contact-form__textarea {
  min-height: 108px;
  resize: vertical;
}

.contact-form__button {
  margin-top: 0.2rem;
  min-height: 42px;
  color: #f9f3e2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form__button:hover {
  color: #fff;
  border-color: #d9b362;
}

@media (max-width: 960px) {
  .contactos__grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .contactos__actions {
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  .top-banner {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.4rem;
    padding-block: 0.4rem;
  }

  .top-banner__right {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    background-position: center 50%;
  }

  .hero__benefits {
    margin-bottom: 1.3rem;
  }
}

@media (max-width: 640px) {
  .top-banner__link--message {
    display: none;
  }

  .site-header {
    padding-inline: 0.75rem;
  }

  .hero__container {
    padding-inline: 0.75rem;
  }

  .hero__content h1 {
    line-height: 1.1;
    margin-bottom: 1.05rem;
  }

  .hero__actions {
    gap: 0.5rem;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
  }

  .sobre {
    padding-block: 2.4rem;
  }

  .sobre__content {
    padding-inline: 0.75rem;
  }

  .contactos__horario li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
}

/* UX/UI fixes requested: alignment + readability */
.destaques .veiculo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destaques .veiculo-card__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 188px;
}

.destaques .veiculo-card__info {
  display: none;
}

.destaques .veiculo-card__price {
  margin-top: 0.1rem;
}

.destaques .veiculo-card__link {
  margin-top: auto;
  min-height: 56px;
}

.ficha__summary {
  padding: 0.9rem;
}

.ficha__title {
  font-size: clamp(1.72rem, 2.35vw, 2.25rem);
  line-height: 1.15;
}

.ficha__year {
  font-size: 0.9rem;
}

.ficha__price {
  font-size: clamp(1.78rem, 2.5vw, 2.38rem);
}

.ficha__desc {
  font-size: 0.94rem;
  line-height: 1.5;
}

.ficha__desc--brief {
  font-size: 0.88rem;
}

.ficha__highlights li {
  min-height: 38px;
  font-size: 0.86rem;
  padding-inline: 0.5rem;
}

.ficha__details-row dt {
  font-size: 0.88rem;
}

.ficha__details-row dd {
  font-size: 0.9rem;
}

.ficha__direct-title {
  font-size: 1.12rem;
}

.ficha__cta,
.ficha__direct-line {
  min-height: 40px;
  font-size: 0.82rem;
}

.ficha__phone {
  font-size: 0.84rem;
}

@media (max-width: 640px) {
  .destaques .veiculo-card__content {
    min-height: 0;
  }

  .ficha__title {
    font-size: 1.45rem;
  }

  .ficha__price {
    font-size: 1.58rem;
  }

  .ficha__details-row dt,
  .ficha__details-row dd {
    font-size: 0.86rem;
  }
}

/* Ficha responsive hardening */
.ficha,
.back-link {
}

.ficha__details-row dd,
.ficha__details-row dd a,
.ficha__desc,
.ficha__description-text {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1100px) {
  .ficha__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .ficha__summary {
    padding: 0.85rem;
  }
}

@media (max-width: 820px) {
  .ficha {
    padding: 0.62rem 0.72rem 0.9rem;
  }

  .back-link {
    padding: 0.52rem 0.72rem 0.45rem;
  }

  .ficha__title {
    font-size: 1.52rem;
  }

  .ficha__price {
    font-size: 1.66rem;
  }

  .ficha__highlights {
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .ficha__cta,
  .ficha__direct-line,
  .ficha__gallery-cta {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .ficha__details-list {
    grid-template-columns: 1fr;
  }

  .ficha__details-row {
    grid-template-columns: 1fr;
    gap: 0.12rem;
    padding: 0.5rem 0.56rem;
  }

  .ficha__details-row:nth-child(odd) {
    border-right: 0;
  }

  .ficha__details-row dt {
    font-weight: 600;
  }

  .ficha__thumb {
    min-height: 52px;
  }

  .ficha-swiper-prev {
    left: 0.38rem;
  }

  .ficha-swiper-next {
    right: 0.38rem;
  }
}

/* Homepage visual polish */
:root {
  --surface-0: #f7f7fa;
  --surface-1: #ffffff;
  --ink-1: #13151c;
  --ink-2: #2a2e39;
  --red-1: #d8212b;
  --red-2: #b01821;
}

.top-banner {
  min-height: 46px;
  background: linear-gradient(90deg, #272a31 0%, #1e2027 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.top-banner__link--phone span {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(130%) blur(4px);
  box-shadow: 0 10px 20px rgba(19, 21, 28, 0.06);
}

.site-nav__link {
  position: relative;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: #cb2028;
  transition: transform 0.2s ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-nav__cta {
  box-shadow: 0 9px 20px rgba(177, 24, 33, 0.24);
}

.hero {
  background:
    linear-gradient(180deg, rgba(251, 251, 252, 0.98), rgba(244, 244, 247, 0.96)),
    url("../assets/mockups/fondo.png");
}

.hero__content h1 {
  max-width: 14ch;
  text-wrap: balance;
}

.hero__description {
  max-width: 48ch;
}

.hero .hero__cta {
  box-shadow: 0 12px 22px rgba(176, 24, 33, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero .hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(166, 21, 30, 0.3);
}

.hero__vehicle {
  border-radius: 14px;
  box-shadow: 0 20px 36px rgba(17, 19, 25, 0.16);
}

.servicos {
  background:
    linear-gradient(180deg, rgba(248, 248, 251, 0.98), rgba(241, 241, 245, 0.98)),
    url("../assets/mockups/fondo.png");
}

.servico-item {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.servico-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(20, 23, 31, 0.12);
  border-color: #e4e4ea;
}

.servico-item h3 {
  color: var(--ink-1);
}

.servico-item p {
  color: var(--ink-2);
}

.destaques {
  background:
    linear-gradient(180deg, rgba(248, 248, 251, 0.98), rgba(241, 241, 245, 0.98)),
    url("../assets/mockups/fondo.png");
}

.destaques .veiculo-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.destaques .veiculo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(18, 20, 27, 0.14);
  border-color: #e3e4ea;
}

.destaques .veiculo-card__image {
  overflow: hidden;
}

.destaques .veiculo-card__image img {
  transition: transform 0.28s ease;
}

.destaques .veiculo-card:hover .veiculo-card__image img {
  transform: scale(1.03);
}

.destaques .veiculo-card__link {
  box-shadow: 0 10px 18px rgba(176, 24, 33, 0.26);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.destaques .veiculo-card__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(160, 21, 29, 0.3);
}

@media (max-width: 700px) {
  .site-header {
    position: relative;
    box-shadow: 0 8px 14px rgba(19, 21, 28, 0.05);
  }

  .hero__vehicle {
    border-radius: 10px;
  }
}

/* Sobre split section */
.sobre--split {
  padding-block: clamp(1.6rem, 3vw, 2.6rem);
  border-top: 1px solid #e9eaf0;
  border-bottom: 1px solid #e9eaf0;
  background:
    linear-gradient(180deg, rgba(244, 245, 248, 0.98), rgba(239, 240, 244, 0.98)),
    url("../assets/mockups/fondo.png");
  background-size: cover;
  background-position: center;
}

.sobre-split__content {
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: stretch;
}

.sobre-split__left {
  padding: clamp(1rem, 2.4vw, 2rem) clamp(0.2rem, 0.6vw, 0.5rem);
}

.sobre-split__eyebrow {
  margin: 0 0 0.35rem;
  color: #c26d1f;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(0.76rem, 0.95vw, 0.9rem);
}

.sobre-split__left h2 {
  margin: 0 0 0.95rem;
  color: #1a1d27;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 18ch;
}

.sobre-split__left p {
  margin: 0 0 0.7rem;
  color: #2f3441;
  font-size: clamp(1rem, 1.2vw, 1.26rem);
  line-height: 1.5;
  max-width: 56ch;
}

.sobre-split__features {
  margin: 1.05rem 0 1.3rem;
  display: grid;
  gap: 0.75rem;
}

.sobre-split__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.sobre-split__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #cb2028;
  color: #cb2028;
  background: rgba(194, 109, 31, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.06rem;
}

.sobre-split__features h3 {
  margin: 0 0 0.05rem;
  color: #151923;
  font-size: clamp(1.22rem, 1.45vw, 1.6rem);
  line-height: 1.2;
}

.sobre-split__features p {
  margin: 0;
  color: #2f3441;
  font-size: clamp(0.95rem, 1.05vw, 1.16rem);
  line-height: 1.4;
}

.sobre-split__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.72rem 1.5rem;
  margin-top: 30px;
  border-radius: 12px;
  border: 1px solid #b81b21;
  background: linear-gradient(180deg, #da2530 0%, #b91b23 100%);
  color: #ffffff;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(176, 24, 33, 0.24);
}

.sobre-split__cta:hover {
  color: #fff;
  background: linear-gradient(180deg, #ca212a 0%, #a4161d 100%);
}

.sobre-split__right {
  min-height: clamp(420px, 46vw, 680px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e3e5ec;
  box-shadow: 0 16px 30px rgba(23, 26, 34, 0.16);
}

.sobre-split__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .sobre-split__content {
    grid-template-columns: 1fr;
  }

  .sobre-split__right {
    min-height: 340px;
    order: -1;
  }
}

/* Hero video variant */
.hero.hero--video {
  position: relative;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  background: #0f1116;
}

.hero.hero--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 12, 17, 0.78) 0%, rgba(10, 12, 17, 0.55) 45%, rgba(10, 12, 17, 0.46) 100%),
    radial-gradient(circle at 18% 48%, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.hero.hero--video .hero__container {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  min-height: clamp(460px, 62vh, 740px);
  align-items: center;
}

.hero.hero--video .hero__content {
  max-width: 720px;
}

.hero.hero--video .hero__eyebrow,
.hero.hero--video .hero__content h1,
.hero.hero--video .hero__description {
  color: #ffffff;
}

.hero.hero--video .hero__description {
  color: rgba(255, 255, 255, 0.9);
}

.hero.hero--video .hero__media {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-video {
    display: none;
  }
}

/* Newsletter CTA */
.newsletter-cta {
  padding-block: clamp(1.8rem, 3.2vw, 2.8rem);
  border-top: 1px solid #e9eaf0;
  border-bottom: 1px solid #e9eaf0;
  background:
    linear-gradient(180deg, rgba(247, 247, 250, 0.98), rgba(242, 242, 246, 0.98)),
    url("../assets/mockups/fondo.png");
  background-size: cover;
  background-position: center;
}

.newsletter-cta__content {
  max-width: 980px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  text-align: center;
}

.newsletter-cta__content h2 {
  margin: 0 0 0.45rem;
  color: #141822;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.newsletter-cta__content p {
  margin: 0 auto 1.25rem;
  color: #2f3441;
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.3vw, 1.35rem);
}

.newsletter-cta__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 62px;
  border-radius: 12px;
  border: 1px solid #b81b21;
  overflow: hidden;
  background: linear-gradient(180deg, #da2530 0%, #b91b23 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgba(176, 24, 33, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.newsletter-cta__action:hover {
  color: #fff;
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ca212a 0%, #a4161d 100%);
  box-shadow: 0 14px 24px rgba(166, 21, 30, 0.3);
}

.newsletter-cta__left,
.newsletter-cta__right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  min-height: 62px;
  font-weight: 700;
  font-size: clamp(1rem, 1.2vw, 1.45rem);
}

.newsletter-cta__left {
  gap: 0.55rem;
}

.newsletter-cta__left i {
  font-size: 1.12em;
}

.newsletter-cta__right {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .newsletter-cta__action {
    width: 100%;
    max-width: 430px;
    flex-direction: column;
  }

  .newsletter-cta__left,
  .newsletter-cta__right {
    width: 100%;
    min-height: 50px;
    padding: 0.6rem 0.9rem;
  }

  .newsletter-cta__right {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }
}

/* Contactos + footer refresh */
.contactos {
  padding-block: clamp(2rem, 3.6vw, 3rem);
  border-top: 1px solid #e8e9ef;
  border-bottom: 1px solid #e8e9ef;
  background:
    linear-gradient(180deg, rgba(247, 247, 250, 0.98), rgba(242, 243, 247, 0.98)),
    url("../assets/mockups/fondo.png");
  background-size: cover;
}

.contactos__header {
  position: static;
  width: auto;
  height: auto;
  margin: 0 auto 1.05rem;
  padding-inline: var(--page-gutter);
  clip: auto;
  overflow: visible;
  white-space: normal;
  text-align: center;
}

.contactos__header h2 {
  margin: 0 0 0.35rem;
  color: #141822;
  font-size: clamp(1.7rem, 2.9vw, 2.7rem);
  letter-spacing: -0.015em;
}

.contactos__header p {
  margin: 0;
  color: #2f3441;
  font-size: clamp(0.98rem, 1.2vw, 1.2rem);
}

.contactos__panel {
  max-width: 1240px;
  margin-inline: auto;
}

.site-footer__top.contactos__panel {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(0.95rem, 2vw, 1.4rem);
}

.site-footer__contact,
.site-footer__form {
  border: 1px solid #e5e6ed;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(23, 26, 34, 0.08);
}

.site-footer__contact h2,
.site-footer__form h2 {
  color: #171a23;
}

.site-footer__note,
.site-footer__privacy small {
  color: #505566;
}

.contactos__grid {
  border: 1px solid #eaebf0;
  box-shadow: none;
  background: #ffffff;
}

.contactos__map iframe {
  filter: grayscale(0.15) contrast(1.02) brightness(0.98);
}

.contactos__map::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(16, 18, 24, 0.12));
}

.contactos__info {
  background: #ffffff;
}

.contactos__block address {
  color: #12151d;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.contactos__horario li {
  color: #2f3441;
}

.contactos__horario li strong {
  color: #131722;
}

.contactos__actions {
  gap: 0.7rem;
}

.contactos__cta {
  border-radius: 10px;
  border: 1px solid #b81b21;
  background: linear-gradient(180deg, #da2530 0%, #b91b23 100%);
  color: #ffffff;
  box-shadow: 0 9px 18px rgba(176, 24, 33, 0.2);
}

.contactos__cta:hover {
  color: #fff;
  border-color: #a9161e;
  background: linear-gradient(180deg, #ca212a 0%, #a4161d 100%);
}

.site-footer {
  background: #f2f3f7;
  border-top: 1px solid #e3e5ec;
}

.site-footer__inner {
  max-width: 1660px;
  margin-inline: auto;
  padding: clamp(1rem, 2vw, 1.3rem) var(--page-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.site-footer__brand h2 {
  margin: 0 0 0.2rem;
  color: #cb2028;
  font-size: 1.45rem;
}

.site-footer__brand p {
  margin: 0;
  color: #505566;
  font-size: 0.94rem;
  max-width: 45ch;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
}

.site-footer__links a {
  color: #232838;
  font-size: 0.92rem;
}

.site-footer__links a:hover {
  color: #000;
}

.site-footer__contactbar {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.site-footer__contactbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  border: 1px solid #d5d8e2;
  border-radius: 10px;
  color: #1c2230;
  font-size: 0.88rem;
  background: #ffffff;
}

.site-footer__contactbar a:hover {
  color: #111;
  border-color: #c4c9d8;
}

.site-footer__bottom {
  max-width: 1660px;
  margin-inline: auto;
  padding: 0.8rem var(--page-gutter) 1rem;
  border-top: 1px solid #e2e4ec;
  background: transparent;
  box-shadow: none;
}

.site-footer__copyright,
.site-footer__dev {
  color: #5a6174;
}

.site-footer__dev a {
  color: #2f3d66;
}

.site-footer__dev a:hover {
  color: #1f2a49;
}

@media (max-width: 980px) {
  .site-footer__top.contactos__panel,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__contactbar {
    justify-content: flex-start;
  }
}

/* Contact section layout (reference style) */
.contactos__panel.site-footer__top {
  max-width: 1620px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.15rem;
}

.contactos__form-pane,
.contactos__info-pane {
  border: 1px solid #cfd5e2;
  background: #e9edf3;
  box-shadow: none;
}

.contactos__form-pane {
  padding: 1rem 1rem 0.95rem;
}

.contactos__form-pane #form-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.contact-form {
  gap: 0.45rem;
}

.contact-form__label {
  color: #243a66;
  font-size: 1.04rem;
  margin-bottom: 0.28rem;
}

.contact-form__input,
.contact-form__textarea {
  border: 1px solid #b7c1d3;
  background: #f2f4f8;
  color: #182033;
  border-radius: 5px;
}

.contact-form__input {
  min-height: 42px;
}

.contact-form__textarea {
  min-height: 130px;
}

.contact-form__button {
  min-height: 44px;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  background: linear-gradient(180deg, #cb2028 0%, #cb2028 100%);
  box-shadow: 0 8px 16px rgba(221, 121, 0, 0.2);
}

.contact-form__button:hover {
  color: #fff;
  border: 0;
  background: linear-gradient(180deg, #cb2028 0%, #cb2028 100%);
}

.contact-form__button--call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form__button--call i {
  font-size: 0.95em;
}

.contactos__info-pane {
  padding: 0.95rem;
}

.contactos__contact-title {
  margin: 0 0 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #223f6d;
  font-size: clamp(1.35rem, 1.5vw, 1.62rem);
}

.contactos__line {
  margin: 0 0 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #223f6d;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.3vw, 1.2rem);
}

.contactos__line i,
.contactos__contact-title i,
.contactos__address-foot i {
  color: #cb2028;
}

.contactos__line a {
  color: inherit;
}

.contactos__map {
  margin-top: 0.55rem;
  border: 1px solid #cfd5e2;
}

.contactos__map iframe {
  min-height: 470px;
}

.contactos__address-foot {
  margin: 0;
  padding: 0.62rem 0.7rem;
  border: 1px solid #cfd5e2;
  border-top: 0;
  color: #31466e;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 0.52rem;
  background: #ecf0f6;
}

@media (max-width: 980px) {
  .contactos__panel.site-footer__top {
    grid-template-columns: 1fr;
  }

  .contactos__map iframe {
    min-height: 320px;
  }
}

/* Stock page refresh */
.page-header--stock {
  border-top: 1px solid #e8e9ef;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(247, 247, 250, 0.98), rgba(242, 243, 247, 0.98)),
    url("../assets/mockups/fondo.png");
  padding: 1.05rem var(--page-gutter) 0.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.page-header--stock h1 {
  color: #181c26;
  font-size: clamp(1.65rem, 2.3vw, 2.1rem);
  letter-spacing: -0.01em;
}

.stock-toolbar {
  display: flex;
  gap: 0.5rem;
  align-items: end;
}

.stock-toolbar__search {
  width: min(280px, 42vw);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
  border: 1px solid #cfd5e2;
  background: #f3f5f9;
  color: #6a7489;
}

.stock-toolbar__search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #293246;
  font-size: 0.78rem;
}

.stock-toolbar__sort {
  display: grid;
  gap: 0.25rem;
  color: #4e5a71;
  font-size: 0.72rem;
}

.stock-toolbar__sort select {
  min-height: 34px;
  border: 1px solid #cfd5e2;
  background: #f3f5f9;
  color: #283247;
  border-radius: 6px;
  padding: 0 0.5rem;
  font-size: 0.75rem;
}

.stock {
  padding: 0.55rem var(--page-gutter) 1.2rem;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(247, 247, 250, 0.98), rgba(242, 243, 247, 0.98)),
    url("../assets/mockups/fondo.png");
}

.stock .stock__grid {
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.stock .veiculo-card {
  border: 1px solid #e2e5ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(20, 24, 33, 0.08);
}

.stock .veiculo-card__status {
  display: none;
}

.stock .veiculo-card__image {
  border-bottom: 1px solid #eceff5;
}

.stock .veiculo-card__image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: none;
}

.stock .veiculo-card__content {
  padding: 0.45rem 0.5rem 0.55rem;
}

.stock .veiculo-card__title {
  margin-bottom: 0.08rem;
  color: #161b26;
  font-size: 1rem;
  font-weight: 600;
}

.stock .veiculo-card__meta {
  margin: 0 0 0.16rem;
  color: #6a7488;
  font-size: 0.68rem;
}

.stock .veiculo-card__price {
  margin: 0 0 0.35rem;
  color: #10141f;
  font-size: 1.07rem;
  font-weight: 700;
}

.stock .veiculo-card__link {
  min-height: 46px;
  width: min(100%, 210px);
  margin-inline: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.1rem;
  border-radius: 10px;
  border: 1px solid #b81b21;
  background: linear-gradient(180deg, #da2530 0%, #b91b23 100%);
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(176, 24, 33, 0.24);
}

.stock .veiculo-card__link:hover {
  color: #fff;
  border-color: #a9161e;
  background: linear-gradient(180deg, #ca212a 0%, #a4161d 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(160, 21, 29, 0.3);
}

.stock__pagination {
  /* max-width: 1240px; */
  margin: 0.9rem auto 0;
  border-top: 1px solid #e0e4ed;
}

.stock__updated {
  color: #6e778c;
}

.stock-contact-cta {
  padding: 0.4rem var(--page-gutter) 1.45rem;
  background:
    linear-gradient(180deg, rgba(247, 247, 250, 0.98), rgba(242, 243, 247, 0.98)),
    url("../assets/mockups/fondo.png");
  text-align: center;
}

.stock-contact-cta__title {
  margin: 0;
  color: #1a1f2b;
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
  font-weight: 700;
}

.stock-contact-cta__text {
  margin: 0.32rem auto 0.85rem;
  color: #4b5366;
  font-size: 0.9rem;
  max-width: 66ch;
}

.stock-contact-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid #b81b21;
  background: linear-gradient(180deg, #da2530 0%, #b91b23 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(176, 24, 33, 0.2);
}

.stock-contact-cta__button > span {
  padding: 0.65rem 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.stock-contact-cta__button > span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.stock-contact-cta__button:hover {
  color: #fff;
  background: linear-gradient(180deg, #ca212a 0%, #a4161d 100%);
}

@media (max-width: 980px) {
  .page-header--stock {
    flex-direction: column;
  }

  .stock-toolbar {
    width: 100%;
    flex-wrap: wrap;
  }

  .stock-toolbar__search {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .stock .stock__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stock-contact-cta__button {
    width: 100%;
    max-width: 420px;
    flex-direction: column;
  }

  .stock-contact-cta__button > span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 520px) {
  .stock .stock__grid {
    grid-template-columns: 1fr;
  }
}

/* Ficha visual refresh (light theme) */
.back-link {
  border-top: 1px solid #e8e9ef;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(247, 247, 250, 0.98), rgba(242, 243, 247, 0.98)),
    url("../assets/mockups/fondo.png");
}

.back-link a {
  color: #2a3348;
  font-size: 0.9rem;
}

.ficha {
  border-bottom: 1px solid #e8e9ef;
  background:
    linear-gradient(180deg, rgba(247, 247, 250, 0.98), rgba(242, 243, 247, 0.98)),
    url("../assets/mockups/fondo.png");
  padding: 0.95rem var(--page-gutter) 1.35rem;
}

.ficha__grid {
  margin-inline: auto;
  gap: 1rem;
}

.ficha__gallery,
.ficha__summary,
.ficha__details,
.sv-panel {
  border: 1px solid #e3e5ec;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(20, 24, 33, 0.08);
}

.ficha__status {
  border: 1px solid rgba(40, 151, 102, 0.32);
  color: #155b3f;
  background: rgba(37, 167, 112, 0.15);
}

.ficha__main-image,
.ficha__thumbnails {
  background: #fff;
}

.ficha__main-image .swiper-slide {
  background: #f3f5fa;
}

.ficha__slide img,
.ficha__thumb img {
  filter: none;
}

.ficha-swiper-prev,
.ficha-swiper-next {
  background: rgba(30, 35, 48, 0.86);
}

.ficha__counter {
  background: rgba(29, 34, 48, 0.88);
}

.ficha__summary {
  padding: 1rem;
}

.ficha__title {
  color: #141924;
}

.ficha__year {
  color: #5a647a;
}

.ficha__price {
  color: #131722;
}

.ficha__desc,
.ficha__desc--brief {
  color: #2f3441;
}

.ficha__highlights li {
  border: 1px solid #e3e6ef;
  background: #f6f7fb;
  color: #2a3347;
}

.ficha__highlights i {
  color: #c31e27;
}

.ficha__direct {
  /* border: 1px solid #e3e6ef; */
  background: #f6f7fb;
}

.ficha__direct-title {
  color: #141923;
}

.ficha__direct-line {
  border: 1px solid #b81b21;
  background: linear-gradient(180deg, #da2530 0%, #b91b23 100%);
  color: #ffffff;
  border-radius: 10px;
  min-height: 44px;
  box-shadow: 0 8px 16px rgba(176, 24, 33, 0.2);
}

.ficha__direct-line:hover {
  color: #fff;
  border-color: #a9161e;
  background: linear-gradient(180deg, #ca212a 0%, #a4161d 100%);
}

.ficha__address--top,
.ficha__hours--top li {
  color: #2f3543;
}

.ficha__mini-map {
  border: 1px solid #d9dde8;
}

.ficha__mini-map iframe {
  filter: grayscale(0.12) contrast(1.02) brightness(0.99);
}

.ficha__details {
  border: 1px solid #e3e5ec;
  background: #ffffff;
}

.ficha__details-header h2,
.sv-panel .ficha__details-header h2,
.sv-section h3,
.sv-subtitle {
  color: #161b26;
}

.sv-description,
.sv-disclaimer,
.sv-notes li,
.sv-meta span {
  color: #374056;
}

.sv-highlights li,
.sv-basic > div {
  border: 1px solid #e6e9f0;
  background: #f7f8fb;
}

.sv-highlights span,
.sv-basic dt {
  color: #5c667d;
}

.sv-highlights strong,
.sv-basic dd {
  color: #171c28;
}

.sv-accordion-bs .accordion-item {
  border: 1px solid #e4e8f0;
  background: #ffffff;
}

.sv-accordion-bs .accordion-button {
  background: #f7f8fb;
  color: #182031;
  font-weight: 600;
}

.sv-accordion-bs .accordion-button:not(.collapsed) {
  background: #eef2f8;
  color: #131a28;
}

.sv-accordion-bs .accordion-button::after {
  filter: invert(22%) sepia(83%) saturate(2557%) hue-rotate(342deg) brightness(92%) contrast(89%);
}

.sv-accordion-bs .accordion-button:not(.collapsed)::after {
  filter: invert(22%) sepia(83%) saturate(2557%) hue-rotate(342deg) brightness(92%) contrast(89%);
}

.sv-accordion-bs .accordion-body {
  background: #ffffff;
}

.sv-accordion-bs .accordion-body li {
  border-bottom: 1px solid #edf0f5;
}

.sv-accordion-bs .accordion-body li span {
  color: #445068;
}

.sv-accordion-bs .accordion-body li strong {
  color: #161d2b;
}

@media (max-width: 980px) {
  .ficha__grid {
    gap: 0.85rem;
  }
}
