/* ===========================================================
   Lorraine SCA — Service Oficial Honda
   Hoja de estilos principal. Sin build tools: se edita directo.
   =========================================================== */

/* ---------- Tokens de marca (fuente: Honda Brand Guidelines PDF) --- */
:root {
  --honda-red: #cc0000;
  --honda-red-dark: #a30000;
  --honda-red-light: #e63946;
  --ink: #0d0d0d;
  --ink-soft: #242424;
  --white: #ffffff;

  --gray-50: #f7f7f8;
  --gray-100: #eeeeef;
  --gray-200: #dcdcde;
  --gray-300: #b8b8bc;
  --gray-500: #77777d;
  --gray-700: #46464a;
  --gray-900: #1a1a1c;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-condensed: "Oswald", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(13, 13, 13, 0.06), 0 1px 3px rgba(13, 13, 13, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 13, 13, 0.10);
  --shadow-lg: 0 20px 48px rgba(13, 13, 13, 0.16);

  --header-h: 76px;
}

/* ---------- Reset base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
}

svg {
  display: block;
  flex-shrink: 0;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Tipografía ---------- */
h1, h2, h3 {
  font-family: var(--font-condensed);
}

h1 {
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 1.35rem + 1.1vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honda-red);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--honda-red);
}

.lede {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  color: var(--gray-700);
  max-width: 60ch;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--honda-red);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--honda-red-dark);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--ink-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--ink);
}

.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1eb958;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: var(--gray-300);
  font-size: 0.82rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-300);
}

.topbar-contact a,
.topbar-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-300);
  transition: color 0.15s ease;
}

.topbar-contact a:hover,
.topbar-social a:hover {
  color: var(--white);
}

.topbar-social {
  display: flex;
  gap: 0.9rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  height: 30px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background: var(--gray-50);
  color: var(--honda-red);
}

.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.dropdown a:hover {
  background: var(--gray-50);
  color: var(--honda-red);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Recall banner (campaña de saneamiento) ---------- */
.recall-banner {
  background: var(--honda-red);
  color: var(--white);
}

.recall-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-block: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  flex-wrap: wrap;
}

.recall-banner a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 82% -10%, rgba(204, 0, 0, 0.35), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(204, 0, 0, 0.18), transparent 60%);
  pointer-events: none;
}

.hero-highway {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding-block: clamp(1.25rem, 2vw, 2.25rem);
  min-height: 420px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--honda-red-light);
}

.hero h1 {
  font-family: var(--font-condensed);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--honda-red-light);
}

.hero p.lede {
  color: var(--gray-300);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--gray-300);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
}

.hero-visual img {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -10%;
  width: 135%;
  max-width: none;
  transform: translateY(-50%);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-visual img.is-active {
  opacity: 1;
}

/* ---------- Secciones genéricas ---------- */
section {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 0.6rem;
}

.bg-soft {
  background: var(--gray-50);
}

.bg-ink {
  background: var(--ink);
  color: var(--white);
}

.bg-ink .lede {
  color: var(--gray-300);
}

.bg-ink .checklist li {
  color: var(--gray-200);
}

/* ---------- Grid de servicios ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card .icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: #fdeaea;
  color: var(--honda-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray-700);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.service-card .card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--honda-red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card .card-link svg {
  transition: transform 0.15s ease;
}

.service-card:hover .card-link svg {
  transform: translateX(3px);
}

/* ---------- Feature split (mantenimiento / aceite GEN) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.feature-split.reverse .feature-media {
  order: 2;
}

.checklist {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.checklist svg {
  color: var(--honda-red);
  margin-top: 3px;
}

.checklist-2col {
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
}

/* ---------- Callout destacado (precios, avisos) ---------- */
.price-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fdeaea;
  border: 1px solid #f6c8c8;
  border-left: 4px solid var(--honda-red);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.price-callout svg {
  color: var(--honda-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-callout strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-size: 1rem;
}

.price-callout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.price-callout .combo-list {
  margin: 0.6rem 0 0;
  gap: 0.4rem;
}

.price-callout .combo-list li {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--gray-900);
  position: relative;
}

.feature-media img,
.feature-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ---------- Video embebido en contenido de texto ---------- */
.video-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-900);
  margin: 1.75rem 0;
}

.video-embed video {
  display: block;
  width: 100%;
  height: auto;
}

.feature-media .badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ---------- Usados teaser ---------- */
.usados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vehicle-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vehicle-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.vehicle-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(150deg, var(--gray-100), var(--gray-50));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
}

.vehicle-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-card .body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.vehicle-card .tag {
  display: inline-block;
  background: #e9f8ee;
  color: #1a8a4a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.vehicle-card h3 {
  margin-bottom: 0.25rem;
}

.vehicle-card .meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 0.85rem;
}

.vehicle-card .price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.usados-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-chip svg {
  color: var(--honda-red);
  flex-shrink: 0;
}

.usados-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.usados-cta h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.usados-cta p {
  color: var(--gray-300);
  max-width: 46ch;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-block: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 0.98rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--honda-red);
  transition: transform 0.2s ease;
}

.faq-item[open] summary .plus {
  transform: rotate(45deg);
}

.faq-item .answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--gray-700);
  font-size: 0.92rem;
  max-width: 68ch;
}

/* ---------- CTA final ---------- */
.cta-band {
  background: var(--honda-red);
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-condensed);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0.85rem auto 2rem;
  max-width: 52ch;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--gray-300);
  padding-block: 3.5rem 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 28px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-300);
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--gray-300);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.footer-contact svg {
  color: var(--honda-red-light);
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--gray-300);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.footer-social a:hover {
  background: var(--honda-red);
  color: var(--white);
  border-color: var(--honda-red);
}

/* ---------- Banner de marca (carrusel "45 años") ---------- */
.brand-banner {
  position: relative;
  height: clamp(260px, 42vw, 620px);
  overflow: hidden;
  background: var(--ink);
}

.brand-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.brand-banner img.is-active {
  opacity: 1;
}

.brand-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.brand-banner-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.brand-banner-dots span.is-active {
  background: var(--white);
  transform: scale(1.2);
}

/* ---------- Efectos "tech" (inspirados en reactbits.dev, hechos en CSS/JS puro) ---------- */

/* Aurora animada detrás del hero */
.hero::before {
  background-size: 200% 200%;
  animation: aurora-drift 18s ease-in-out infinite;
}

@keyframes aurora-drift {
  0%, 100% { background-position: 0% 0%, 100% 100%; }
  50% { background-position: 30% 20%, 70% 80%; }
}

/* Shine sweep en botones primarios */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 130%;
}

/* Spotlight cursor-glow en cards */
.service-card,
.vehicle-card {
  isolation: isolate;
}

.service-card::before,
.vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(204, 0, 0, 0.14),
    transparent 70%
  );
  pointer-events: none;
}

.service-card:hover::before,
.vehicle-card:hover::before {
  opacity: 1;
}

/* Scroll-reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group].is-visible > *:nth-child(1) { transition-delay: 0.03s; }
[data-reveal-group].is-visible > *:nth-child(2) { transition-delay: 0.09s; }
[data-reveal-group].is-visible > *:nth-child(3) { transition-delay: 0.15s; }
[data-reveal-group].is-visible > *:nth-child(4) { transition-delay: 0.21s; }
[data-reveal-group].is-visible > *:nth-child(5) { transition-delay: 0.27s; }
[data-reveal-group].is-visible > *:nth-child(6) { transition-delay: 0.33s; }

/* Click spark en CTAs primarios */
.spark {
  position: fixed;
  z-index: 200;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--honda-red-light);
  pointer-events: none;
  animation: spark-fly 0.55s ease-out forwards;
}

@keyframes spark-fly {
  to {
    transform: translate(var(--sx), var(--sy)) scale(0);
    opacity: 0;
  }
}

/* Texto con brillo (ShinyText-like) para la eyebrow del hero */
.hero-eyebrow span.dot {
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* ---------- Páginas internas: breadcrumb + hero compacto ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--gray-300);
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span[aria-current] {
  color: var(--white);
  font-weight: 600;
}

.breadcrumb svg {
  color: var(--gray-500);
}

.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(3rem, 8vw, 5rem) clamp(2.25rem, 6vw, 3.25rem);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 85% 0%, rgba(204, 0, 0, 0.18), transparent);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  max-width: 20ch;
}

.page-hero .lede {
  color: var(--gray-300);
  max-width: 62ch;
  margin-top: 0.85rem;
}

/* ---------- Prosa (contenido de texto largo) ---------- */
.prose {
  max-width: 720px;
}

.prose > * + * {
  margin-top: 1.15rem;
}

.prose h2 {
  font-size: 1.4rem;
  margin-top: 2.25rem;
}

.prose h3 {
  font-size: 1.05rem;
}

.prose p {
  color: var(--gray-700);
}

.prose-img-float {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.prose-clear {
  clear: both;
}

@media (min-width: 860px) {
  .prose-img-float {
    float: right;
    width: 300px;
    aspect-ratio: 3 / 4;
    margin: 0 0 1rem 1.75rem;
    box-shadow: var(--shadow-md);
  }

  .prose-img-float.is-left {
    float: left;
    margin: 0 1.75rem 1rem 0;
  }
}

.prose ul {
  display: grid;
  gap: 0.55rem;
}

.prose ul li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--gray-700);
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--honda-red);
}

/* ---------- Layout de página interna con sidebar de contacto ---------- */
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card ul {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.contact-card svg {
  color: var(--honda-red);
  margin-top: 2px;
}

.contact-card .btn {
  width: 100%;
  justify-content: center;
}

.contact-card .btn + .btn {
  margin-top: 0.6rem;
}

/* ---------- Pasos numerados (turnos / presupuesto) ---------- */
.step-list {
  display: grid;
  gap: 1.1rem;
  margin: 1.5rem 0 2rem;
}

.step-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-list .num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--honda-red);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.step-list p {
  margin: 0;
  color: var(--gray-700);
}

.step-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

@media (max-width: 860px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-eyebrow span.dot {
    animation: none !important;
  }

  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .spark {
    display: none;
  }
}

/* ---------- Usados: llamadores (ribbons) ---------- */
.ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  box-sizing: border-box;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  z-index: 3;
  font-family: var(--font-condensed);
}

.ribbon-oportunidad { background: #1a8a4a; }
.ribbon-recien-ingresado { background: #2563eb; }
.ribbon-precio-actualizado { background: #d97706; }
.ribbon-reservado { background: #7c3aed; }
.ribbon-vendido { background: #cc0000; }

.vehicle-card.is-vendido {
  filter: grayscale(0.55);
  opacity: 0.82;
}

.vehicle-card.is-vendido:hover {
  transform: none;
  box-shadow: none;
}

/* ---------- Usados: filtros ---------- */
.usados-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 140px;
}

.filter-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.filter-field select,
.filter-field input {
  font: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--ink);
}

.filter-field.price-range {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
}

.filter-field.price-range input {
  width: 90px;
}

.filters-reset {
  margin-left: auto;
}

.usados-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-500);
}

.usados-results-count {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

/* ---------- Usados: ficha técnica ---------- */
.spec-table {
  display: grid;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-100);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:nth-child(even) {
  background: var(--gray-50);
}

.spec-row dt {
  color: var(--gray-500);
  font-weight: 600;
}

.spec-row dd {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

/* ---------- Usados: galería de fotos ---------- */
.gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 0.75rem;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--gray-100);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.gallery-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
}

.gallery-thumbs button.is-active {
  border-color: var(--honda-red);
}

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

.photo-slot[hidden] {
  display: none !important;
}

/* ---------- Usados: precio destacado / CTA ficha ---------- */
.price-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.price-box .amount {
  font-family: var(--font-condensed);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
}

.price-box .cta-group {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

/* ---------- Admin: formulario de carga ---------- */
.admin-shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.admin-form-group {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.admin-form-group h3 {
  margin-bottom: 1rem;
  text-transform: none;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.field small {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.92rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 70px;
}

.photo-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.photo-slot-input {
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
}

.photo-slot-input .slot-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  display: block;
}

.photo-slot-input .slot-preview {
  aspect-ratio: 4 / 3;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.5rem;
  color: var(--gray-300);
}

.photo-slot-input .slot-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slot-input .slot-filename {
  font-size: 0.7rem;
  color: var(--gray-500);
  word-break: break-all;
}

.admin-preview {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.output-box {
  margin-top: 1rem;
}

.output-box .output-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.output-box textarea {
  width: 100%;
  min-height: 220px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--gray-900);
  color: #d4d4d8;
  white-space: pre;
}

/* ---------- Botón flotante WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}

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

/* ---------- Mobile nav panel ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--ink);
  color: var(--white);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-nav-close {
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav ul {
  display: grid;
  gap: 0.25rem;
}

.mobile-nav > ul > li > a,
.mobile-nav-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  list-style: none;
}

.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group .sub-list {
  padding: 0.25rem 0 0.75rem 0.75rem;
  display: grid;
  gap: 0.1rem;
}

.mobile-nav-group .sub-list a {
  display: block;
  padding: 0.6rem 0.25rem;
  font-size: 0.95rem;
  color: var(--gray-300);
  font-weight: 600;
}

.mobile-nav-actions {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav,
  .header-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

  .checklist-2col {
    grid-template-columns: 1fr;
  }

  .feature-split,
  .feature-split.reverse .feature-media {
    grid-template-columns: 1fr;
    order: initial;
  }

  .feature-split {
    display: grid;
  }

  .hero .container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    aspect-ratio: 16 / 10;
    order: -1;
  }

  .hero-visual img {
    right: 0;
    width: 105%;
  }

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

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-preview {
    position: static;
  }
}

@media (max-width: 860px) {
  .topbar-hours {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar-social {
    display: none;
  }

  .services-grid,
  .usados-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .trust-strip .container {
    justify-content: flex-start;
  }

  .usados-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filters-reset {
    margin-left: 0;
  }

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

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