:root {
  --navy: #070b1d;
  --navy2: #111827;
  --green: #02c963;
  --green-dark: #029a4d;
  --orange: #ff4b0b;
  --blue: #0b72ff;
  --slate: #64748b;
  --soft: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 24px 55px rgba(15,23,42,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope,system-ui,sans-serif;
  color: #0f172a;
  background: #fff;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-wrap {
  max-width: 1200px;
  margin: auto;
  height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
}

.brand span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: #16a34a;
  font-weight: 800;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #334155;
}

.main-nav a:hover {
  color: #020617;
}

.nav-call {
  background: var(--green);
  color: #fff;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-call:hover {
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: #f1f5f9;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 19px;
  color: #0f172a;
}

.hero {
  position: relative;
  min-height: 650px;
  background: radial-gradient(circle at 75% 20%,#243044 0%,#111827 35%,#070b1d 100%);
  color: #fff;
  overflow: hidden;
  padding: 120px 20px 170px;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(7,11,29,.85),rgba(7,11,29,.2));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: auto;
  display: grid;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
}

.eyebrow.green {
  background: #dcfce7;
  color: #15803d;
  border: 0;
}

.brandline {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 18px 0 0;
}

.hero h1 {
  font-size: clamp(42px,7vw,72px);
  line-height: 1.02;
  margin: 14px 0 20px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.hero p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.76);
  max-width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 900;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: .2s;
}

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

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #0f172a;
}

.hero-actions, .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.offer-card {
  position: relative;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.offer-label {
  position: absolute;
  top: -14px;
  left: 18px;
  background: #ef233c;
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
}

.offer-card img {
  height: 255px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.offer-info {
  background: rgba(7,11,29,.86);
  border-radius: 18px;
  margin-top: -65px;
  position: relative;
  padding: 18px;
  text-align: center;
}

.offer-info p {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.offer-info strong {
  font-size: 28px;
  color: #fff;
}

.offer-info span {
  display: block;
  color: #cbd5e1;
  font-size: 12px;
  margin-top: 8px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  margin-top: 12px;
}

.countdown b {
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 120px;
  fill: #f8fafc;
}

.section {
  padding: 95px 20px;
}

.section-soft {
  background: #f8fafc;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}

.section-head h2, .why-grid h2, .inner-hero h1 {
  font-size: clamp(34px,5vw,56px);
  line-height: 1.05;
  margin: 18px 0 18px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.section-head p, .inner-hero p {
  color: #64748b;
  font-size: 18px;
  line-height: 1.75;
}

.cars-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 34px;
}

.car-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .25s;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(15,23,42,.18);
}

.car-media {
  position: relative;
  height: 285px;
  display: block;
  overflow: hidden;
}

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

.sold {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 34px;
  border: 4px solid #fff;
  margin: 110px;
  border-radius: 12px;
}

.carousel-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.82);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
}

.carousel-dot.left {
  left: 16px;
}

.carousel-dot.right {
  right: 16px;
}

.car-body {
  padding: 28px;
}

.car-price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.car-price-row span {
  color: #475569;
  font-size: 14px;
}

.car-price-row strong {
  font-size: 26px;
  color: #16a34a;
}

.car-body h3 {
  font-size: 30px;
  line-height: 1.1;
  margin: 16px 0 6px;
  font-weight: 900;
}

.version {
  font-size: 17px;
  color: #334155;
  font-weight: 800!important;
}

.car-body p {
  color: #64748b;
  line-height: 1.7;
}

.car-specs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: #334155;
}

.car-specs span {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.car-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.why-section {
  background: #f8fafc;
}

.why-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-grid p {
  color: #64748b;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.benefit-grid div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(15,23,42,.08);
}

.benefit-grid b {
  color: #16a34a;
  font-size: 24px;
}

.benefit-grid h3 {
  margin: 10px 0 6px;
}

.slider-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.slider-card img {
  height: 440px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
  width: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(15,23,42,.2);
  font-size: 28px;
  font-weight: 900;
}

.slider-btn.prev {
  left: 24px;
}

.slider-btn.next {
  right: 24px;
}

.slider-caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  background: rgba(255,255,255,.95);
  border-radius: 18px;
  padding: 18px;
}

.slider-caption span {
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 900;
}

.slider-caption strong {
  display: block;
  font-size: 22px;
  margin-top: 8px;
}

.testimonial-grid, .blog-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}

.testimonial-grid article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(15,23,42,.08);
  color: #f59e0b;
}

.testimonial-grid p {
  color: #475569;
  line-height: 1.8;
  margin: 24px 0;
}

.testimonial-grid strong {
  display: block;
  color: #0f172a;
}

.testimonial-grid span {
  display: block;
  color: #16a34a;
  font-weight: 800;
  margin-top: 8px;
}

.dark-band {
  max-width: 1120px;
  margin: 44px auto 0;
  background: #070b1d;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 28px;
  font-size: 24px;
  font-weight: 900;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.blog-card div {
  padding: 26px;
}

.date {
  font-size: 12px;
  color: #ef4444;
  font-weight: 800;
}

.blog-card h3 {
  font-size: 23px;
  line-height: 1.25;
  margin: 14px 0;
}

.blog-card p {
  color: #64748b;
  line-height: 1.75;
}

.read-more {
  font-weight: 900;
  color: #16a34a;
}

.inner-hero {
  padding: 120px 20px 70px;
  text-align: center;
  background: #f8fafc;
}

.inner-hero.dark {
  background: #eef6ff;
}

.inner-hero p {
  max-width: 760px;
  margin: auto;
}

.page-content {
  max-width: 980px;
  margin: auto;
}

.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  margin-bottom: 28px;
}

.content-card.muted {
  background: #f8fafc;
}

.content-card h2 {
  font-size: 32px;
  margin: 0 0 16px;
}

.content-card p {
  color: #475569;
  line-height: 1.8;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  margin: 10px 0;
  color: #334155;
}

.check-list li:before {
  content: '✓';
  color: #16a34a;
  font-weight: 900;
  margin-right: 10px;
}

.faq-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(15,23,42,.06);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: #64748b;
  line-height: 1.75;
}

.site-footer {
  background: #070b1d;
  color: #fff;
  padding: 70px 20px 30px;
}

.footer-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 60px;
}

.site-footer h2, .site-footer h3 {
  margin-top: 0;
}

.footer-subtitle {
  color: #22c55e;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .17em;
  font-size: 12px;
}

.site-footer p, .site-footer a {
  color: #cbd5e1;
  line-height: 1.75;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-badges span {
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  height: 36px;
  width: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cta {
  max-width: 760px;
  margin: 45px auto 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 30px;
  text-align: center;
}

.copyright {
  max-width: 1120px;
  margin: 45px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
}

.copyright a {
  display: inline;
  color: #94a3b8;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  background: #16d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(22,211,102,.35);
}

.car-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 50px;
}

.breadcrumb {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #ea580c;
  font-weight: 800;
}

.car-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 38px;
  align-items: start;
}

.main-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #f1f5f9;
}

.main-gallery img {
  height: 520px;
  width: 100%;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 48px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  font-size: 32px;
}

.gallery-arrow.left {
  left: 18px;
}

.gallery-arrow.right {
  right: 18px;
}

.thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 14px;
}

.thumb {
  border: 3px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: none;
  min-width: 105px;
}

.thumb img {
  height: 70px;
  width: 105px;
  object-fit: cover;
}

.thumb.active {
  border-color: #ea580c;
}

.spec-panel {
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15,23,42,.05);
}

.spec-panel h2 {
  text-align: center;
  font-size: 20px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 12px;
}

.spec-grid div {
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.spec-grid i {
  font-size: 22px;
  color: #ef4444;
}

.spec-grid span {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin: 8px 0;
}

.spec-grid strong {
  font-size: 13px;
}

.equip-detail {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.equip-detail summary {
  font-weight: 900;
  font-style: italic;
  cursor: pointer;
}

.equip-detail li {
  margin: 8px 0;
  color: #475569;
}

.price-aside {
  position: sticky;
  top: 84px;
}

.price-aside h1 {
  font-size: 46px;
  line-height: 1;
  margin: 0 0 8px;
}

.price-aside > p {
  font-size: 20px;
  color: #334155;
}

.mini-specs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: #f1f5f9;
  border-radius: 14px;
  overflow: hidden;
  margin: 20px 0;
}

.mini-specs span {
  text-align: center;
  padding: 12px;
  font-size: 13px;
}

.price-box, .warranty-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.price-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-box span, .price-box del {
  display: block;
  color: #64748b;
}

.price-box strong {
  display: block;
  font-size: 32px;
  margin-top: 6px;
}

.price-box .btn {
  grid-column: 1/-1;
}

.warranty-highlight {
  background: #fff7ed;
  color: #9a3412;
  border-radius: 16px;
  padding: 18px;
  margin-top: 18px;
}

.recommended-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.recommended-grid .car-media {
  height: 160px;
}

.recommended-grid .car-body {
  padding: 18px;
}

.recommended-grid .car-body h3 {
  font-size: 20px;
}

.recommended-grid .car-body p, .recommended-grid .car-specs, .recommended-grid .car-actions {
  display: none;
}

.recommended-grid .sold {
  margin: 54px;
  font-size: 18px;
}

.article-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 20px 60px;
}

.article-head {
  text-align: center;
}

.article-head h1 {
  font-size: clamp(36px,6vw,58px);
  line-height: 1.05;
  margin: 20px 0;
}

.article-head p {
  font-size: 18px;
  line-height: 1.75;
  color: #64748b;
}

.article-head img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  margin: 34px 0;
}

.article-body {
  font-size: 18px;
  color: #334155;
  line-height: 1.85;
}

.article-body h2 {
  font-size: 32px;
  color: #0f172a;
}

.article-cta {
  background: #070b1d;
  color: #fff;
  border-radius: 22px;
  padding: 30px;
  margin-top: 30px;
}

.article-cta p {
  color: #cbd5e1;
}

.blog-archive {
  max-width: 1120px;
  margin: auto;
}

.blog-featured {
  margin-bottom: 35px;
}

.blog-featured .blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-featured .blog-card img {
  height: 100%;
}

@media (max-width:900px) {
  .nav-wrap {
    height: auto;
    min-height: 58px;
  }
}

@media (max-width:900px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width:900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width:900px) {
  .main-nav.open {
    display: flex;
  }
}

@media (max-width:900px) {
  .nav-call {
    font-size: 0;
    padding: 10px 12px;
  }
}

@media (max-width:900px) {
  .nav-call i {
    font-size: 15px;
  }
}

@media (max-width:900px) {
  .hero {
    padding-top: 105px;
  }
}

@media (max-width:900px) {
  .hero-inner, .why-grid, .car-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:900px) {
  .offer-card {
    max-width: 420px;
  }
}

@media (max-width:900px) {
  .cars-grid, .testimonial-grid, .blog-grid, .recommended-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width:900px) {
  .spec-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:900px) {
  .price-aside {
    position: static;
  }
}

@media (max-width:900px) {
  .main-gallery img {
    height: 360px;
  }
}

@media (max-width:900px) {
  .car-media {
    height: 230px;
  }
}

@media (max-width:900px) {
  .hero-actions, .cta-row {
    flex-direction: column;
  }
}

@media (max-width:900px) {
  .blog-featured .blog-card {
    display: block;
  }
}

@media (max-width:900px) {
  .footer-grid {
    gap: 30px;
  }
}

@media (max-width:900px) {
  .section {
    padding: 70px 16px;
  }
}

@media (max-width:900px) {
  .car-detail {
    padding-top: 80px;
  }
}

@media (max-width:900px) {
  .price-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width:900px) {
  .sold {
    margin: 80px;
    font-size: 24px;
  }
}

@media (max-width:560px) {
  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width:560px) {
  .section-head h2, .inner-hero h1 {
    font-size: 34px;
  }
}

@media (max-width:560px) {
  .car-body h3 {
    font-size: 25px;
  }
}

@media (max-width:560px) {
  .car-specs {
    grid-template-columns: repeat(2,1fr);
  }
}

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

@media (max-width:560px) {
  .offer-card img {
    height: 210px;
  }
}

@media (max-width:560px) {
  .price-aside h1 {
    font-size: 36px;
  }
}

/* Coches G23 - ajustes de marca y páginas nuevas */

.brand-logo-only {
  display: flex;
  align-items: center;
  min-width: 165px;
}

.brand-logo-image {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
}

.offer-info strong {
  display: block;
  font-size: 30px;
  color: #fff;
  margin: 4px 0;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: #334155;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: #0f172a;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  justify-self: start;
}

@media (max-width:900px) {
  .brand-logo-image {
    height: 38px;
  }
}

@media (max-width:900px) {
  .brand-logo-only {
    min-width: auto;
  }
}

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

@media (max-width:900px) {
  .nav-wrap {
    height: auto;
    min-height: 58px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (max-width:560px) {
  .brand-logo-image {
    height: 34px;
  }
}

@media (max-width:560px) {
  .car-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width:560px) {
  .price-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width:560px) {
  .price-box .btn {
    grid-column: auto;
  }
}

/* Separación visual para mantener coches nuevos arriba y antiguos abajo */

.old-cars-section {
  border-top: 1px solid rgba(15,23,42,.08);
  padding-top: 70px;
}

.old-cars-section .section-head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: var(--orange);
  border-radius: 20px;
  margin: 18px auto 0;
}

