@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
a:hover {
  color: #EB0A1E;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: #58595B;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.btn {
  padding: 12px 30px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: #EB0A1E;
  color: #FFFFFF;
  border-color: #EB0A1E;
}
.btn-primary:hover {
  background-color: #CC0000;
  border-color: #CC0000;
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}
.btn-outline:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.btn-white {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}
.btn-white:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(235, 10, 30, 0.9), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-scale {
  animation: scaleIn 0.6s ease-out forwards;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-red {
  color: #EB0A1E;
}

.bg-gray {
  background-color: #F5F5F5;
}

.bg-white {
  background-color: #FFFFFF;
}

.position-relative {
  position: relative;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

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

.justify-content-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.hover-lift {
  transition: transform 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-shadow {
  transition: box-shadow 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #E6E6E6;
}

::-webkit-scrollbar-thumb {
  background: #EB0A1E;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #CC0000;
}

::selection {
  background-color: #EB0A1E;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #EB0A1E;
  color: #FFFFFF;
}

.header-main {
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1020;
  padding: 10px 0;
}
.header-main .navbar {
  padding: 0;
}
.header-main .navbar-brand {
  padding: 0;
}
.header-main .navbar-brand .logo {
  height: 35px;
  width: auto;
}
.header-main .navbar-toggler {
  border: none;
  padding: 5px 10px;
}
.header-main .navbar-toggler:focus {
  box-shadow: none;
}
.header-main .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 20px;
}
.header-main .navbar-collapse {
  margin-top: 15px;
}
.header-main .navbar-nav {
  gap: 0;
}
.header-main .navbar-nav .nav-item .nav-link {
  color: #000000;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 15px;
  border-bottom: 1px solid #E6E6E6;
  transition: color 0.3s ease;
}
.header-main .navbar-nav .nav-item .nav-link:hover {
  color: #EB0A1E;
}
.header-main .navbar-nav .nav-item .nav-link.active {
  color: #EB0A1E;
  font-weight: 600;
}
.header-main .navbar-nav .nav-item-service {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header-main .navbar-nav .nav-item-service .service-link {
  flex: 1;
}
.header-main .navbar-nav .nav-item-service .service-link .service-link-arrow {
  display: none;
}
.header-main .navbar-nav .nav-item-service .service-submenu-toggle {
  width: 44px;
  height: 44px;
  border-bottom: 1px solid #E6E6E6;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-main .navbar-nav .nav-item-service .service-submenu-toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.header-main .navbar-nav .nav-item-service .service-submenu-toggle[aria-expanded=true] i {
  transform: rotate(180deg);
}
.header-main .navbar-nav .nav-item-service .service-submenu {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  border-bottom: 1px solid #E6E6E6;
}
.header-main .navbar-nav .nav-item-service .service-submenu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  border-top: 1px solid #ececec;
}
.header-main .navbar-nav .nav-item-service .service-submenu li a:hover {
  color: #EB0A1E;
}
.header-main .navbar-nav .nav-item-service .service-submenu li a.active {
  color: #EB0A1E;
  font-weight: 600;
}
.header-main .navbar-nav .nav-item-autos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header-main .navbar-nav .nav-item-autos .autos-link {
  flex: 1;
}
.header-main .navbar-nav .nav-item-autos .autos-link .autos-link-arrow {
  display: none;
}
.header-main .navbar-nav .nav-item-autos .autos-submenu-toggle {
  width: 44px;
  height: 44px;
  border-bottom: 1px solid #E6E6E6;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-main .navbar-nav .nav-item-autos .autos-submenu-toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.header-main .navbar-nav .nav-item-autos .autos-submenu-toggle[aria-expanded=true] i {
  transform: rotate(180deg);
}
.header-main .navbar-nav .nav-item-autos .autos-submenu {
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
  background-color: #efefef;
}
.header-main .autos-submenu-inner {
  background-color: #efefef;
}
.header-main .autos-submenu-tabs {
  margin: 0;
  border: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  background-color: #181818;
}
.header-main .autos-submenu-tabs .nav-item {
  flex: 0 0 auto;
}
.header-main .autos-submenu-tabs .autos-submenu-tab-btn {
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.8);
  background-color: transparent;
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.header-main .autos-submenu-tabs .autos-submenu-tab-btn.active {
  color: #FFFFFF;
  border-bottom-color: #EB0A1E;
}
.header-main .autos-submenu-content {
  padding: 14px;
}
.header-main .tab-content.autos-submenu-content {
  width: 100vw;
  max-width: 100vw;
  max-height: 600px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.header-main .autos-submenu-content .tab-pane {
  display: none;
}
.header-main .autos-submenu-content .tab-pane.active {
  display: block;
}
.header-main .autos-submenu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.header-main .autos-submenu-card {
  border-radius: 14px;
  background-color: #FFFFFF;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.header-main .autos-submenu-card-link {
  display: block;
  padding: 14px 12px 12px;
  color: #242424;
  text-align: center;
}
.header-main .autos-submenu-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
.header-main .autos-submenu-card-image {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin: 8px 0 6px;
}
.header-main .autos-submenu-card-price {
  margin: 0;
  font-size: 0.9rem;
  color: #232323;
  font-weight: 500;
}
.header-main .autos-submenu-card-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px 12px;
}
.header-main .autos-submenu-quote-btn {
  background-color: #EB0A1E;
  color: #FFFFFF;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.header-main .autos-submenu-arrow {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.header-main .autos-submenu-arrow i {
  font-size: 9px;
}
.header-main .autos-submenu-empty {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  color: #4a4a4a;
}
.header-main .header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 15px;
}
.header-main .header-actions .btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.2px;
}
.header-main .header-actions .btn i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #EB0A1E;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}
.header-main .header-actions .btn-call {
  background-color: #EB0A1E;
  color: #FFFFFF;
  border: 2px solid #EB0A1E;
  font-weight: 600;
}
.header-main .header-actions .btn-call:hover {
  background-color: #CC0000;
  border-color: #CC0000;
  color: #FFFFFF;
}
.header-main .header-actions .btn-contact {
  background-color: #EB0A1E;
  color: #FFFFFF;
  border: 2px solid #EB0A1E;
  font-weight: 600;
}
.header-main .header-actions .btn-contact:hover {
  background-color: #CC0000;
  border-color: #CC0000;
}
.header-main .header-call-dropdown {
  width: auto;
}
.header-main .header-actions .btn-call-dropdown {
  background-color: #EB0A1E;
  color: #fff;
  border-color: #EB0A1E;
  border-radius: 999px;
  box-shadow: none;
  font-weight: 700;
}
.header-main .header-actions .btn-call-dropdown:hover,
.header-main .header-actions .btn-call-dropdown:focus,
.header-main .header-actions .btn-call-dropdown.show {
  background-color: #CC0000;
  color: #fff;
  border-color: #CC0000;
}
.header-main .header-actions .btn-call-dropdown i {
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  color: #fff;
  font-size: 0.9rem;
}
.header-main .header-call-menu {
  width: 100%;
  min-width: 158px;
  margin-top: 4px;
  padding: 12px 10px;
  border: 1px solid #d7dbe2;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
}
.header-main .header-call-item {
  display: block;
  padding: 4px 0 8px;
  color: #2f343b;
  text-decoration: none;
}
.header-main .header-call-item:hover,
.header-main .header-call-item:focus {
  color: #EB0A1E;
}
.header-main .header-call-item strong,
.header-main .header-call-item span {
  display: block;
  line-height: 1.2;
}
.header-main .header-call-item strong {
  margin-bottom: 3px;
  font-size: 0.9rem;
  font-weight: 700;
}
.header-main .header-call-item span {
  font-size: 1rem;
  font-weight: 500;
}
.header-main .header-side-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid #EB0A1E;
  border-radius: 999px;
  background-color: #EB0A1E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  cursor: pointer;
}
.header-main .header-side-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.header-main .header-side-toggle span:nth-child(1) {
  top: 14px;
}
.header-main .header-side-toggle span:nth-child(2) {
  top: 20px;
}
.header-main .header-side-toggle span:nth-child(3) {
  top: 26px;
}
.header-main .header-side-toggle.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.header-main .header-side-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.header-main .header-side-toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}
.header-side-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background-color: rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.header-side-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.header-side-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1041;
  width: min(86vw, 360px);
  height: 100vh;
  padding: 28px 24px;
  background-color: #fff;
  box-shadow: 18px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(-100%);
  transition: transform 0.32s ease;
  overflow-y: auto;
}
.header-side-menu.is-open {
  transform: translateX(0);
}
.header-side-menu-head {
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e7e7e7;
}
.header-side-logo {
  display: block;
  width: auto;
  height: 42px;
}
.header-side-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header-side-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 0;
  border-bottom: 1px solid #eeeeee;
  color: #202020;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.header-side-nav a:hover,
.header-side-nav a:focus,
.header-side-nav a.active {
  color: #EB0A1E;
}
body.side-menu-open {
  overflow: hidden;
}

.hero-section {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: hidden;
}
.hero-section .hero-carousel {
  width: 100%;
  position: relative;
}
.hero-section .hero-slide {
  position: relative;
  width: 100%;
  display: none;
}
.hero-section .hero-slide.active {
  display: block;
}
.hero-section .hero-slide picture {
  width: 100%;
  display: block;
}
.hero-section .hero-slide .hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
}
.hero-section .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  padding: 20px;
}
.hero-section .hero-text {
  text-align: left;
  color: #FFFFFF;
  max-width: 100%;
}
.hero-section .hero-label {
  display: inline-block;
  background-color: #EB0A1E;
  color: #FFFFFF;
  padding: 5px 15px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-section .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-section .hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0.95;
}
.hero-section .btn-hero {
  background-color: #FFFFFF;
  color: #000000;
  padding: 12px 25px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  border: 2px solid #FFFFFF;
  transition: all 0.3s ease;
  display: inline-block;
}
.hero-section .btn-hero:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.hero-section .hero-prev,
.hero-section .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.hero-section .hero-prev:hover,
.hero-section .hero-next:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.hero-section .hero-prev i,
.hero-section .hero-next i {
  font-size: 1rem;
}
.hero-section .hero-prev {
  left: 15px;
}
.hero-section .hero-next {
  right: 15px;
}
.hero-section .hero-social {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}
.hero-section .hero-social a {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.hero-section .hero-social a:hover {
  background-color: #EB0A1E;
  transform: scale(1.1);
}
.hero-section .hero-social a i {
  font-size: 0.875rem;
}
.hero-section .hero-pagination {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-section .hero-pagination .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-section .hero-pagination .dot.active {
  background-color: #FFFFFF;
  width: 30px;
  border-radius: 9999px;
}
.hero-section .hero-pagination .dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.contact-center {
  padding: 50px 0;
  background-color: #EFEFEF;
}
.contact-center .contact-center-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  text-align: center;
}
.contact-center .contact-center-description {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}
.contact-center .contact-center-description strong {
  color: #EB0A1E;
  font-weight: 700;
}
.contact-center .contact-center-description br {
  display: none;
}
.contact-center .contact-items-row {
  margin-bottom: 0;
  --bs-gutter-x: 0.75rem;
  --bs-gutter-y: 0.75rem;
}
.contact-center .contact-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}
.contact-center .contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-center .contact-item.active {
  background-color: #FFFFFF;
  border-color: #EB0A1E;
  box-shadow: 0 4px 12px rgba(235, 10, 30, 0.15);
}
.contact-center .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-center .contact-item .contact-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.contact-center .contact-item p {
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.2px;
}
.contact-center .contact-info-container {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
.contact-center .contact-info {
  display: none;
  gap: 12px;
}
.contact-center .contact-info.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}
.contact-center .contact-info .contact-info-item {
  width: 48px;
  height: 48px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-center .contact-info .contact-info-item:nth-child(3) {
  background-color: #25D366;
}
.contact-center .contact-info .contact-info-item:nth-child(3):hover {
  background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
}
.contact-center .contact-info .contact-info-item:hover {
  background-color: #EB0A1E;
  transform: scale(1.1);
  color: #FFFFFF;
}
.contact-center .contact-info .contact-info-item i {
  font-size: 20px;
}

form[data-toggle=validator] .has-error input,
form[data-toggle=validator] .has-error select,
form[data-toggle=validator] .has-error textarea,
form[data-toggle=validator] input.is-invalid,
form[data-toggle=validator] select.is-invalid,
form[data-toggle=validator] textarea.is-invalid {
  border-color: #EB0A1E !important;
}

form[data-toggle=validator] .has-error input[type=checkbox],
form[data-toggle=validator] input[type=checkbox].is-invalid {
  outline: 1px solid #EB0A1E;
  outline-offset: 2px;
}

form[data-toggle=validator] .form-validation-message {
  margin-top: 6px;
  color: #EB0A1E;
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 600;
}

.promotions-section {
  padding: 50px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
.promotions-section .section-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #EB0A1E;
  font-weight: 700;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
}
.promotions-section .section-subtitle {
  font-size: 0.875rem;
  margin-bottom: 5px;
  color: #000000;
  text-align: left;
  font-weight: 700;
}
.promotions-section .section-description {
  font-size: 0.875rem;
  margin-bottom: 30px;
  color: #000000;
  text-align: left;
  font-weight: 400;
  font-style: italic;
}
.promotions-section .promotions-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 15px;
}
.promotions-section .carousel-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 20px;
}
.promotions-section .carousel-track::-webkit-scrollbar {
  display: none;
}
.promotions-section .promo-card {
  flex: 0 0 85%;
  max-width: 85%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.promotions-section .promo-card:hover {
  transform: scale(1.02);
}
.promotions-section .promo-card img {
  width: 100%;
  height: auto;
  display: block;
}
.promotions-section .promo-card .promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
}
.promotions-section .promo-card .promo-special {
  background-color: #FFFFFF;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.promotions-section .promo-card .promo-special .promo-logo {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}
.promotions-section .promo-card .promo-special h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.promotions-section .promo-card .promo-special .promo-vehicle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #EB0A1E;
  margin-bottom: 15px;
}
.promotions-section .promo-card .promo-special .promo-price {
  margin-bottom: 20px;
}
.promotions-section .promo-card .promo-special .promo-price .price-label {
  display: block;
  font-size: 0.875rem;
  color: #58595B;
  margin-bottom: 5px;
}
.promotions-section .promo-card .promo-special .promo-price .price-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
}
.promotions-section .promo-card .promo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #EB0A1E;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  z-index: 2;
}
.promotions-section .btn-promo {
  background-color: #FFFFFF;
  color: #000000;
  padding: 10px 25px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.promotions-section .btn-promo:hover {
  background-color: #EB0A1E;
  color: #FFFFFF;
  transform: scale(1.05);
}
.promotions-section .btn-promo-dark {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 25px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.promotions-section .btn-promo-dark:hover {
  background-color: #EB0A1E;
  transform: scale(1.05);
}
.promotions-section .carousel-prev,
.promotions-section .carousel-next {
  display: none;
}

.models-section {
  padding: 50px 0;
  background-color: #F5F5F5;
}
.models-section .models-header {
  margin-bottom: 30px;
}
.models-section .section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
}
.models-section .section-title br {
  display: none;
}
.models-section .models-tabs {
  border: none;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 8px;
}
.models-section .models-tabs::-webkit-scrollbar {
  display: none;
}
.models-section .models-tabs .nav-item {
  flex: 0 0 auto;
}
.models-section .models-tabs .nav-link {
  border: none;
  background-color: #FFFFFF;
  color: #58595B;
  padding: 10px 15px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.models-section .models-tabs .nav-link:hover {
  background-color: #E6E6E6;
  color: #000000;
}
.models-section .models-tabs .nav-link.active {
  background-color: #EB0A1E;
  color: #FFFFFF;
}
.models-section .model-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
}
.models-section .model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.models-section .model-card .model-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.models-section .model-card .model-info {
  padding: 20px;
}
.models-section .model-card .model-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}
.models-section .model-card .model-price {
  font-size: 1rem;
  color: #58595B;
  margin-bottom: 15px;
}
.models-section .model-card .model-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.models-section .model-card .btn-model {
  flex: 1;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  text-align: center;
  transition: all 0.3s ease;
}
.models-section .model-card .btn-model:hover {
  background-color: #EB0A1E;
}
.models-section .model-card .btn-icon {
  width: 40px;
  height: 40px;
  background-color: #E6E6E6;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.models-section .model-card .btn-icon:hover {
  background-color: #EB0A1E;
  color: #FFFFFF;
}
.models-section .model-card .btn-icon i {
  font-size: 0.875rem;
}

.services-section {
  padding: 40px 0;
  background-color: #1A1A1A;
}
.services-section .services-header {
  text-align: left;
  margin-bottom: 30px;
  padding: 0 15px;
}
.services-section .services-label {
  font-size: 12px;
  font-weight: 700;
  color: #EB0A1E;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.services-section .services-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.2;
}
.services-section .services-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}
.services-section .services-description strong {
  font-weight: 700;
}
.services-section .services-description br {
  display: none;
}
.services-section .service-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.services-section .service-card .service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.services-section .service-card:hover .service-image {
  transform: scale(1.1);
}
.services-section .service-card:hover .service-overlay {
  background: rgba(0, 0, 0, 0.75);
}
.services-section .service-card .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  transition: background 0.3s ease;
  z-index: 2;
}
.services-section .service-card .service-overlay-logo {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.services-section .service-card .service-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}
.services-section .service-card .service-logo {
  max-width: 120px;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
}
.services-section .service-card .btn-service {
  background-color: #EB0A1E;
  color: #FFFFFF;
  padding: 12px 25px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.services-section .service-card .btn-service-arrow {
  background-color: #EB0A1E;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-top: auto;
}
.services-section .service-card .btn-service-arrow i {
  font-size: 1.125rem;
}
.services-section .row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.form-section {
  padding: 40px 0;
  background-color: #EFEFEF;
}
.form-section .form-content {
  padding: 0;
  margin-bottom: 30px;
}
.form-section .form-label {
  font-size: 12px;
  font-weight: 700;
  color: #EB0A1E;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.form-section .form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
}
.form-section .form-description {
  font-size: 0.875rem;
  color: #6B6B6B;
  margin-bottom: 25px;
  line-height: 1.6;
}
.form-section .form-description br {
  display: none;
}
.form-section .contact-form input.form-control {
  height: 48px;
}
.form-section .contact-form .form-control,
.form-section .contact-form .form-select {
  border: 2px solid #D0D0D0;
  background-color: #FFFFFF;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  color: #000000;
  transition: border-color 0.3s ease;
}
.form-section .contact-form .form-control:focus,
.form-section .contact-form .form-select:focus {
  border-color: #EB0A1E;
  box-shadow: none;
  background-color: #FFFFFF;
}
.form-section .contact-form .form-control::placeholder,
.form-section .contact-form .form-select::placeholder {
  color: #000000;
  text-transform: uppercase;
  font-weight: 600;
}
.form-section .contact-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 10px;
  appearance: none;
  padding-right: 35px;
}
.form-section .contact-form .btn-submit {
  width: 100%;
  background-color: #EB0A1E;
  color: #FFFFFF;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  border: none;
  height: 48px;
  transition: all 0.3s ease;
}
.form-section .contact-form .form-check-recaptcha {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background-color: #F9F9F9;
  border: 2px solid #D0D0D0;
  border-radius: 6px;
  margin-top: 10px;
}
.form-section .contact-form .form-check-recaptcha .recaptcha-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.form-section .contact-form .form-check-recaptcha .recaptcha-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  flex: 1;
}
.form-section .contact-form .form-check-recaptcha .recaptcha-label i {
  font-size: 18px;
  color: #000000;
}
.form-section .contact-form .form-check-recaptcha .recaptcha-label span {
  font-size: 12px;
  font-weight: 500;
  color: #000000;
}
.form-section .contact-form .form-check-recaptcha .recaptcha-logo {
  display: none;
}
.form-section .map-container {
  position: relative;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}
.form-section .map-container iframe {
  width: 100%;
  height: 100%;
}
.form-section .map-container .map-shape {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background-color: #EB0A1E;
  border-radius: 50%;
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
}
.form-section .map-container .map-card {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.form-section .map-container .map-card .map-card-image {
  width: 120px;
  height: 90px;
}
.form-section .map-container .map-card .map-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: solid 4px #fff;
}

.footer {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 40px 0 30px;
}
.footer .footer-top {
  text-align: center;
  margin-bottom: 30px;
}
.footer .footer-logo-section {
  margin-bottom: 25px;
  max-width: 250px;
}
.footer .footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer .toyota-logo-box {
  width: 50px;
  height: 50px;
  background-color: #EB0A1E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .toyota-logo-box .toyota-icon {
  width: 32px;
  height: auto;
}
.footer .footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 2px;
}
.footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.footer .footer-nav a {
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.footer .footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 30px 0;
}
.footer .footer-middle {
  margin-bottom: 30px;
  text-align: center;
}
.footer .footer-address {
  margin: 0 auto;
}
.footer .footer-section-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 6px 15px;
  border-radius: 6px;
}
.footer .footer-address-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}
.footer .footer-address-text br {
  display: none;
}
.footer .footer-privacy-link {
  display: inline-block;
  margin-top: 12px;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.footer .footer-privacy-link:hover,
.footer .footer-privacy-link:focus {
  color: #EB0A1E;
}
.footer .footer-schedule {
  margin-bottom: 30px;
}
.footer .schedule-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: center;
}
.footer .schedule-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.footer .schedule-time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}
.footer .schedule-time:last-child {
  margin-bottom: 0;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-premier {
  margin-bottom: 25px;
}
.footer .footer-premier .premier-logo {
  height: 50px;
  width: auto;
}
.footer .footer-social-section {
  text-align: center;
}
.footer .footer-social-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}
.footer .footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer .footer-social a {
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer .footer-social a i {
  font-size: 1rem;
}

.service-hero {
  position: relative;
  min-height: 68vh;
  background-image: url("../img/banner-servicio.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-hero-overlay {
  min-height: inherit;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: center;
  position: relative;
  padding: 54px 0 96px;
}

.service-hero-content {
  max-width: 100%;
  color: #FFFFFF;
}

.service-hero-kicker {
  margin: 0 0 10px;
  color: #EB0A1E;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
}

.service-hero-title {
  margin: 0 0 14px;
  color: #FFFFFF;
  font-size: clamp(2rem, 8.6vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 760px;
}

.service-hero-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  max-width: 760px;
}

.service-hero-social {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 1040;
}

.service-hero-social-toggle,
.service-hero-social-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.service-hero-social-toggle {
  position: relative;
  z-index: 2;
  transition: transform 0.28s ease;
}
.service-hero-social-toggle i {
  font-size: 1.1rem;
  transition: transform 0.28s ease;
}

.service-hero-social-items {
  position: absolute;
  right: 0;
  bottom: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.service-hero-social-item {
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: opacity 0.28s ease, transform 0.28s ease, background-color 0.28s ease;
}
.service-hero-social-item i {
  font-size: 1.14rem;
}
.service-hero-social-item:hover {
  background-color: #EB0A1E;
  color: #FFFFFF;
}

.service-hero-social.is-open .service-hero-social-items {
  pointer-events: auto;
}
.service-hero-social.is-open .service-hero-social-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.service-hero-social.is-open .service-hero-social-item:nth-child(1) {
  transition-delay: 0.02s;
}
.service-hero-social.is-open .service-hero-social-item:nth-child(2) {
  transition-delay: 0.06s;
}
.service-hero-social.is-open .service-hero-social-item:nth-child(3) {
  transition-delay: 0.1s;
}
.service-hero-social.is-open .service-hero-social-item:nth-child(4) {
  transition-delay: 0.14s;
}
.service-hero-social.is-open .service-hero-social-toggle i {
  transform: rotate(180deg);
}

.service-assurance {
  background-color: #FFFFFF;
  padding: 34px 0;
}

.service-assurance-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.service-assurance-logo {
  width: 90px;
  height: auto;
  margin: 0 auto 16px;
}

.service-assurance-text {
  margin: 0 0 8px;
  color: #262626;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
}

.service-assurance-highlight {
  margin: 0;
  color: #202020;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.32;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.service-assurance-highlight strong {
  font-weight: 700;
}

.service-price-list {
  background-color: #FFFFFF;
  padding: 0 0 34px;
}

.service-price-list-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.service-price-card {
  background-color: #FFFFFF;
  border: 1px solid #dcdcdc;
  margin-bottom: 12px;
  overflow: hidden;
}
.service-price-card:last-child {
  margin-bottom: 0;
}

.service-price-image {
  width: 100%;
  height: auto;
  display: block;
}

.service-payment-options {
  background-color: #efefef;
  padding: 10px 0 30px;
}

.service-payment-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0 auto 18px;
  max-width: 980px;
}
.service-payment-head h2 {
  margin: 0;
  color: #242424;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.25;
}
.service-payment-head h2 span {
  color: #EB0A1E;
  font-size: 1.55em;
  font-weight: 700;
}

.service-payment-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #2ea73b;
  color: #FFFFFF;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}
.service-payment-whatsapp i {
  font-size: 1.15rem;
}
.service-payment-whatsapp:hover {
  color: #FFFFFF;
  background-color: #258f31;
}

.service-payment-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-payment-card,
.service-payment-feature-card {
  border-radius: 10px;
  background-color: #1C1C1C;
  color: #FFFFFF;
}

.service-payment-card {
  padding: 14px 16px;
}
.service-payment-card h3 {
  margin: 0 0 9px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
.service-payment-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 42px;
  height: 2px;
  background-color: #EB0A1E;
}
.service-payment-card p,
.service-payment-card ul {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.3;
}
.service-payment-card ul {
  padding-left: 16px;
}

.service-payment-feature-card {
  max-width: 760px;
  margin: 14px auto 0;
  text-align: center;
  padding: 18px 16px 16px;
}
.service-payment-feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-payment-feature-copy {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
}

.service-payment-feature-title {
  margin: 12px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.service-payment-feature-line {
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background-color: #EB0A1E;
  margin-top: 7px;
}

.service-payment-banks-image {
  width: min(100%, 430px);
  height: auto;
  display: block;
  margin: 12px auto 0;
}

.service-payment-feature-footer {
  margin: 8px 0 0;
  color: #a7a7a7;
  font-size: 0.84rem;
  line-height: 1.2;
}

.service-booking {
  background-color: #efefef;
  padding: 12px 0 40px;
}

.service-booking-card {
  max-width: 880px;
  margin: 0 auto;
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 24px 14px 22px;
}

.service-booking-head {
  text-align: center;
  margin-bottom: 16px;
}
.service-booking-head h2 {
  margin: 0 0 4px;
  color: #EB0A1E;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
}
.service-booking-head p {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.82rem;
  line-height: 1.35;
}

.service-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.service-field input,
.service-field select,
.service-field textarea {
  width: 100%;
  border: 1px solid #c4c9d1;
  border-radius: 2px;
  background-color: #f5f5f5;
  color: #4c5561;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 12px;
  line-height: 1.2;
  outline: none;
  transition: border-color 0.2s ease;
}
.service-field input:focus,
.service-field select:focus,
.service-field textarea:focus {
  border-color: #9ca4af;
}
.service-field textarea {
  min-height: 94px;
  resize: vertical;
}

.service-fake-recaptcha {
  margin: 14px auto 12px;
  border: 1px solid #d1d1d1;
  background-color: #ffffff;
  max-width: 300px;
  min-height: 74px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}

.service-fake-box {
  width: 24px;
  height: 24px;
  border: 2px solid #666;
  border-radius: 2px;
  flex-shrink: 0;
}

.service-fake-label {
  color: #1f1f1f;
  font-size: 0.9rem;
  font-weight: 500;
}

.service-fake-brand {
  margin-left: auto;
  color: #5f6368;
  font-size: 0.72rem;
}

.service-privacy-check {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 14px;
  color: #1f1f1f;
  font-size: 0.9rem;
  line-height: 1.35;
}
.service-privacy-check input {
  margin-top: 2px;
}
.service-privacy-check a {
  color: #0d6efd;
  font-weight: 600;
}
.service-privacy-check a:hover {
  color: #0b5ed7;
}

.service-consent-box {
  max-width: 760px;
  margin: 0 auto;
  background-color: #e3e3e3;
  border-radius: 14px;
  padding: 16px 14px 18px;
}

.service-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 18px;
}
.service-consent-check input {
  margin-top: 3px;
  flex-shrink: 0;
}
.service-consent-check span {
  color: #343434;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.3;
}
.service-consent-check strong {
  font-weight: 700;
}

.service-booking-submit {
  display: block;
  margin: 0 auto;
  min-width: 198px;
  border: 0;
  border-radius: 999px;
  background-color: #EB0A1E;
  color: #FFFFFF;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  padding: 13px 28px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  transition: background-color 0.2s ease;
}
.service-booking-submit:hover {
  background-color: #c90719;
}

.thanks-page {
  background-color: #FFFFFF;
}

.thanks-section {
  padding: 44px 0 56px;
}

.thanks-card {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: 0 auto 18px;
}
.thanks-icon-error {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  color: #EB0A1E;
  font-size: 56px;
}

.thanks-title {
  margin: 0 0 12px;
  color: #EB0A1E;
  font-size: clamp(2rem, 6.2vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}

.thanks-text {
  margin: 0 0 8px;
  color: #2f2f33;
  font-size: 1rem;
  line-height: 1.35;
}

.thanks-text-strong {
  margin-top: 2px;
  font-weight: 700;
}

.thanks-close-btn {
  margin: 24px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: #EB0A1E;
  color: #FFFFFF;
  border-radius: 999px;
  padding: 12px 22px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}
.thanks-close-btn i {
  font-size: 0.9rem;
}
.thanks-close-btn:hover {
  color: #FFFFFF;
  background-color: #CC0000;
}

.finance-plans-highlight {
  background-color: #e7e7e7;
  padding: 30px 0 34px;
}

.finance-plans-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.finance-plans-copy h1 {
  margin: 0;
  color: #2d2f33;
  font-size: clamp(1.75rem, 6.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.2px;
  max-width: 620px;
}

.finance-plans-media {
  margin: 0;
}

.finance-plans-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.finance-products {
  background-color: #d4d9df;
  padding: 30px 0 36px;
}

.finance-products-title {
  margin: 0 0 18px;
  color: #2f3238;
  font-size: clamp(1.35rem, 4.8vw, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 780px;
}

.finance-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  grid-auto-rows: 1fr;
}

.finance-product-card {
  background-color: #ececec;
  border-radius: 14px;
  font-size: 18px;
  padding: 16px 14px 14px;
  min-height: 252px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.finance-product-card h3 {
  margin: 0 0 12px;
  color: #333437;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.06;
  min-height: 3.9rem;
  position: relative;
}
.finance-product-card h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  border-radius: 2px;
  background-color: #EB0A1E;
  margin-top: 4px;
}
.finance-product-card h3 span {
  display: inline-block;
  font-weight: 700;
}
.finance-product-card p {
  margin: 0;
  color: #2f3238;
  font-size: 1.05rem;
  line-height: 1.25;
}

.finance-product-btn {
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  border-radius: 999px;
  background-color: #EB0A1E;
  color: #FFFFFF;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}
.finance-product-btn:hover {
  color: #FFFFFF;
  background-color: #c90719;
}

.finance-section {
  background-color: #ededed;
  padding: 34px 0 38px;
}

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

.finance-kicker {
  margin: 0 0 10px;
  color: #EB0A1E;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  line-height: 1.1;
}

.finance-title {
  margin: 0 0 12px;
  color: #222;
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  line-height: 1.15;
  font-weight: 700;
}

.finance-description {
  margin: 0;
  color: #222;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 570px;
}

.finance-benefits-title {
  margin: 30px 0 16px;
  color: #1f1f1f;
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.finance-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.finance-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.finance-benefits-list img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-top: 1px;
  flex-shrink: 0;
}
.finance-benefits-list p {
  margin: 0;
  color: #202020;
  font-size: 1.03rem;
  line-height: 1.3;
}

.finance-form-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.finance-logo {
  width: 128px;
  height: auto;
  align-self: flex-end;
}

.finance-card {
  background-color: #f3f3f3;
  border-radius: 12px;
  padding: 20px 16px;
}
.finance-card h3 {
  margin: 0 0 12px;
  color: #222;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 700;
}

.finance-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.finance-form-field label {
  display: block;
  margin: 0 0 2px;
  color: #5a5a5a;
  font-size: 0.78rem;
  line-height: 1.15;
  font-weight: 500;
}
.finance-form-field input,
.finance-form-field select {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #d0d0d0;
  background: transparent;
  color: #222;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 4px 0 3px;
  border-radius: 0;
  outline: none;
}
.finance-form-field input:focus,
.finance-form-field select:focus {
  border-bottom-color: #b4b4b4;
}

.finance-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
}
.finance-check input {
  margin-top: 2px;
  flex-shrink: 0;
}
.finance-check span {
  color: #414141;
  font-size: 0.78rem;
  line-height: 1.25;
}
.finance-check a {
  color: #EB0A1E;
  font-weight: 500;
}

.consent-check {
  background-color: #e9e9e9;
  border-radius: 10px;
  padding: 12px;
}

.finance-submit-btn {
  width: 180px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background-color: #EB0A1E;
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1;
  margin: 16px auto 0;
  display: block;
  transition: background-color 0.25s ease;
}
.finance-submit-btn:hover {
  background-color: #c90719;
}

.finance-closing {
  margin: 30px 0 0;
  text-align: center;
  color: #1d1d1d;
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
}
.finance-closing span {
  color: #EB0A1E;
}

.refacciones-hero {
  position: relative;
  min-height: 60vh;
  background-image: url("../img/banner-refacciones.jpg");
  background-size: cover;
  background-position: 52% center;
  background-repeat: no-repeat;
}

.refacciones-hero-overlay {
  min-height: inherit;
  background: linear-gradient(90deg, rgba(3, 9, 20, 0.8) 0%, rgba(3, 9, 20, 0.58) 45%, rgba(3, 9, 20, 0.38) 100%);
  display: flex;
  align-items: center;
  padding: 46px 0;
}

.refacciones-hero-content {
  max-width: 100%;
  color: #FFFFFF;
}

.refacciones-hero-kicker {
  margin: 0 0 10px;
  color: #EB0A1E;
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
}

.refacciones-hero-title {
  margin: 0 0 14px;
  color: #FFFFFF;
  font-size: clamp(2rem, 8.2vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  max-width: 740px;
}

.refacciones-hero-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.125rem;
  line-height: 1.32;
  font-weight: 500;
  max-width: 760px;
}

.model-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 360px;
  overflow: hidden;
  background-color: #000;
}

.model-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}

.model-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}

.model-banner-image.is-hidden {
  display: none;
}

.model-banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 2;
}

.model-banner-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.model-banner-content-wrap .container {
  width: 100%;
}

.model-banner-content {
  max-width: 760px;
  padding-bottom: 0;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.model-banner-kicker {
  margin: 0 0 10px;
  font-size: clamp(0.82rem, 2.6vw, 1rem);
  line-height: 1.2;
  font-weight: 500;
}

.model-banner-title {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 10.5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 700;
}

.model-banner-description {
  margin: 0;
  max-width: 560px;
  font-size: clamp(0.98rem, 3.7vw, 1.35rem);
  line-height: 1.2;
  font-weight: 600;
}

.model-banner-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #fff;
}

.scroll-indicator-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator-wheel {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background-color: #fff;
  animation: bannerScrollWheel 1.8s ease-in-out infinite;
}

.scroll-indicator-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.9;
}

@keyframes bannerScrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  65% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
.model-showcase {
  background-color: #ffffff;
  padding: 24px 0 26px;
}

.showcase-shell {
  background-color: #ffffff;
  border: 1px solid #cfcfcf;
}

.model-showcase.is-loading .showcase-main,
.model-showcase.is-loading .showcase-colors {
  opacity: 0.8;
}

.showcase-main {
  padding: 22px 16px 20px;
}

.showcase-heading {
  margin-bottom: 14px;
}

.showcase-title {
  margin: 0 0 4px;
  color: #1d1d1d;
  font-size: clamp(2rem, 8vw, 2.45rem);
  line-height: 1;
  font-weight: 700;
}

.showcase-subtitle {
  margin: 0;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.3;
}

.showcase-preview-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.showcase-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background-color: #1a1a1a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.showcase-nav-btn:active {
  transform: scale(0.95);
}
.showcase-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.showcase-preview {
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-preview img {
  max-height: 480px;
  max-width: 92%;
  width: auto;
  object-fit: contain;
  transition: opacity 0.26s ease, transform 0.32s ease;
}
.showcase-preview img.is-changing {
  opacity: 0.08;
  transform: translateY(6px) scale(0.992);
}

.showcase-copy-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.showcase-copy-title {
  margin: 0 0 2px;
  color: #151515;
  font-size: 1.45rem;
  line-height: 1.05;
  font-weight: 700;
}

.showcase-copy-text {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.95rem;
  line-height: 1.3;
}

.showcase-tech-btn {
  align-self: flex-start;
  min-width: 164px;
  min-height: 42px;
  border-radius: 999px;
  background-color: #141414;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.showcase-tech-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.showcase-versions-wrap {
  text-align: center;
}

.showcase-versions-title {
  margin: 0 0 12px;
  color: #5a5a5a;
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 600;
}

.showcase-versions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.showcase-version-item {
  padding: 8px 6px;
}

.showcase-version-name {
  margin: 0 0 3px;
  color: #1a1a1a;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
}

.showcase-version-price {
  margin: 0;
  color: #EB0A1E;
  font-size: 1.12rem;
  line-height: 1;
  font-weight: 600;
}

.showcase-colors {
  border-top: 1px solid #cfcfcf;
  padding: 16px;
}

.showcase-colors-title {
  margin: 0 0 12px;
  color: #202020;
  font-size: 1.14rem;
  line-height: 1.1;
  font-weight: 700;
}

.showcase-colors-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.showcase-color-item {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  padding: 6px 4px;
  border-radius: 8px;
}

.showcase-color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  position: relative;
}

.showcase-color-label {
  color: #2a2a2a;
  font-size: 0.96rem;
  line-height: 1.2;
  font-weight: 500;
}

.showcase-color-item.is-active {
  background-color: rgba(0, 0, 0, 0.04);
}
.showcase-color-item.is-active .showcase-color-swatch::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #111;
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.showcase-empty {
  margin: 0;
  color: #6c6c6c;
  font-size: 0.95rem;
  line-height: 1.35;
}

.model-technology {
  background-color: #ececec;
  padding: 0;
}

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

.technology-media {
  min-height: 320px;
}

.technology-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.technology-content {
  padding: 30px 22px 36px;
}

.technology-kicker {
  margin: 0 0 10px;
  color: #EB0A1E;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-title {
  margin: 0 0 16px;
  color: #0f0f0f;
  font-size: clamp(2rem, 8.3vw, 2.8rem);
  line-height: 1.04;
  font-weight: 700;
}

.technology-description {
  margin: 0;
  max-width: 640px;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 500;
}

.model-gallery {
  background-color: #191919;
  padding: 34px 0 36px;
}

.model-gallery-head {
  margin-bottom: 18px;
}

.model-gallery-kicker {
  margin: 0 0 8px;
  color: #EB0A1E;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.model-gallery-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2rem, 8vw, 2.8rem);
  line-height: 1.08;
  font-weight: 700;
}

.model-gallery-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  max-width: 740px;
}

.model-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.model-gallery-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background-color: #1d1f25;
  aspect-ratio: 16/10;
}
.model-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.model-gallery-item:hover img {
  transform: scale(1.03);
}

.model-gallery-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.96rem;
  line-height: 1.4;
}

.model-static-feature {
  background-color: #f3f3f3;
  padding: 28px 0;
}

.model-static-feature-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background-color: #fff;
}

.model-static-feature-media {
  min-height: 280px;
}

.model-static-feature-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.model-static-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 22px 32px;
}

.model-static-feature-kicker {
  margin: 0 0 12px;
  color: #EB0A1E;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-static-feature-title {
  margin: 0 0 18px;
  color: #000;
  font-size: clamp(2rem, 8.5vw, 2.75rem);
  line-height: 1.08;
  font-weight: 700;
}

.model-static-feature-description {
  margin: 0;
  max-width: 640px;
  color: #000;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
}

.model-static-feature-technology .model-static-feature-title {
  font-size: clamp(1.85rem, 7.2vw, 2.45rem);
}

.model-static-feature-interior .model-static-feature-title {
  font-size: clamp(1.9rem, 7.4vw, 2.55rem);
}

.model-security {
  background-color: #ffffff;
  padding: 34px 0 38px;
}

.security-head {
  margin-bottom: 20px;
}

.security-kicker {
  margin: 0 0 10px;
  color: #EB0A1E;
  font-size: 0.84rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.security-title {
  margin: 0 0 12px;
  color: #0f0f0f;
  font-size: clamp(1.8rem, 8.4vw, 2.6rem);
  line-height: 1.08;
  font-weight: 700;
}

.security-description {
  margin: 0;
  max-width: 900px;
  color: #444;
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 500;
}

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

.security-side-card {
  border: 1px solid #cfcfcf;
  border-radius: 14px;
  padding: 24px 18px;
  background-color: #ffffff;
}

.security-side-title {
  margin: 0 0 18px;
  color: #141414;
  font-size: 1.46rem;
  line-height: 1.22;
  font-weight: 700;
}

.security-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.security-feature-item {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 30px;
  color: #1b1b1b;
  font-size: 1.14rem;
  line-height: 1.35;
  font-weight: 500;
  border-bottom: 1px solid #d7d7d7;
}
.security-feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 13px;
  color: #EB0A1E;
  font-weight: 700;
  font-size: 1rem;
}
.security-feature-item:last-child {
  border-bottom: 0;
}

.security-slider {
  min-width: 0;
}

.security-slider-track {
  position: relative;
  overflow: hidden;
}

.security-slide {
  border: 1px solid #cfcfcf;
  border-radius: 14px;
  overflow: hidden;
  background-color: #ffffff;
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(42px);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.security-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}
.security-slide.is-leaving {
  visibility: visible;
  opacity: 0;
  transform: translateX(-42px);
  z-index: 1;
}

.security-slide-image-wrap {
  width: 100%;
  height: 250px;
}

.security-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.security-slide-copy {
  padding: 18px 18px 20px;
}

.security-slide-title {
  margin: 0;
  color: #0f0f0f;
  font-size: 1.6rem;
  line-height: 1.14;
  font-weight: 700;
}

.security-slide-description {
  margin: 14px 0 0;
  color: #343434;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 500;
}

.security-slider-controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.security-progress {
  position: relative;
  flex: 1;
  height: 2px;
  background-color: #c8c8c8;
  overflow: hidden;
}

.security-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 33.3333%;
  background-color: #151515;
  transition: width 0.3s ease;
}

.security-nav-buttons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.security-nav-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background-color: #EB0A1E;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.security-nav-btn:active {
  transform: scale(0.95);
}
.security-nav-btn:disabled {
  background-color: #d0d0d0;
  cursor: not-allowed;
}

.security-note {
  margin: 16px 0 0;
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
}

.model-security-compact {
  padding: 28px 0 32px;
}

.model-security-compact .security-head {
  margin-bottom: 22px;
}

.model-security-compact .security-slide-image-wrap {
  height: clamp(260px, 34vh, 390px);
}

.model-security-compact .security-slide-copy {
  min-height: 92px;
}

.model-security-compact .security-note {
  margin-top: 18px;
}

.model-security-single .security-slide-image-wrap {
  height: clamp(260px, 34vh, 380px);
}

.model-security-single .security-slide-copy {
  min-height: 80px;
}

.model-economy {
  background-color: #fff;
  overflow: hidden;
}

.model-economy-layout {
  display: grid;
  grid-template-columns: 1fr;
}

.model-economy-media {
  min-height: 320px;
  background-color: #fff;
}

.model-economy-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.model-economy-performance .model-economy-media {
  background-color: #050505;
}

.model-economy-performance .model-economy-image {
  object-fit: cover;
  object-position: center;
}

.model-economy-content {
  padding: 32px 22px 40px;
}

.model-economy-kicker {
  margin: 0 0 12px;
  color: #EB0A1E;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-economy-title {
  margin: 0 0 16px;
  color: #000;
  font-size: clamp(2rem, 8.5vw, 2.75rem);
  line-height: 1.08;
  font-weight: 700;
}

.model-economy-description {
  margin: 0;
  max-width: 640px;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
}

.model-economy-card {
  margin-top: 34px;
  border-radius: 18px;
  background-color: #f1f1f1;
  overflow: hidden;
}

.model-economy-card-head,
.model-economy-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.model-economy-card-head {
  padding: 24px 22px 18px;
  color: #000;
  font-size: 1.2rem;
  line-height: 1.05;
  font-weight: 700;
}

.model-economy-row {
  margin: 0 22px;
  padding: 22px 0;
  border-top: 1px solid #cfcfcf;
  color: #5a5a5a;
}

.model-economy-row span {
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.model-economy-row strong {
  color: inherit;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.model-economy-row small {
  margin-left: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.model-economy-row.is-highlighted {
  color: #EB0A1E;
}

.model-economy-card-single .model-economy-row {
  padding-bottom: 30px;
}

.model-economy-disclaimer {
  margin: 0;
  padding: 18px 22px 22px;
  border-top: 1px solid #cfcfcf;
  color: #5f5f5f;
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: left;
}

.model-economy-disclaimer strong {
  color: #222;
}

.model-design-collage {
  background-color: #dedede;
  padding: 34px 0;
}

.model-design-collage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.model-design-collage-intro {
  align-self: start;
}

.model-design-collage-kicker {
  margin: 0 0 16px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.model-design-collage-title {
  margin: 0 0 18px;
  color: #000;
  font-size: clamp(2.6rem, 10vw, 3.8rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.model-design-collage-description {
  margin: 0 0 15px;
  max-width: 700px;
  color: #111;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
}

.model-design-collage-image {
  overflow: hidden;
  background-color: #cfcfcf;
}

.model-design-collage-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.model-design-collage-image-main,
.model-design-collage-image-top,
.model-design-collage-image-bottom {
  min-height: 260px;
}

.model-innovation {
  background-color: #fff;
  padding: 44px 0 50px;
}

.model-innovation-head {
  margin-bottom: 30px;
}

.model-innovation-kicker {
  margin: 0 0 12px;
  color: #EB0A1E;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.model-innovation-title {
  margin: 0;
  max-width: 820px;
  color: #000;
  font-size: clamp(2.25rem, 8.5vw, 3.35rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.model-innovation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.model-innovation-card {
  display: grid;
  gap: 18px;
}

.model-innovation-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.model-innovation-copy h3 {
  margin: 0 0 16px;
  color: #000;
  font-size: clamp(1.45rem, 5vw, 1.9rem);
  line-height: 1.08;
  font-weight: 800;
}

.model-innovation-copy p {
  margin: 0;
  color: #111;
  font-size: 0.98rem;
  line-height: 1.38;
  font-weight: 500;
}

.model-adventure-collage {
  background-color: #dedede;
  padding: 34px 0;
}

.model-adventure-collage-light {
  background-color: #fff;
}

.model-adventure-collage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.model-adventure-collage-kicker {
  margin: 0 0 16px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.model-adventure-collage-title {
  margin: 0 0 18px;
  color: #000;
  font-size: clamp(2.8rem, 11vw, 4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.model-adventure-collage-description {
  margin: 0 0 15px;
  max-width: 660px;
  color: #111;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
}

.model-adventure-collage-image {
  overflow: hidden;
  background-color: #cfcfcf;
}

.model-adventure-collage-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.model-adventure-collage-image-main,
.model-adventure-collage-image-top,
.model-adventure-collage-image-bottom,
.model-adventure-collage-image-side {
  min-height: 260px;
}

.model-financing-cta {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: #000;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)), url("../img/financiamiento-cta.png");
  background-size: cover;
  background-position: center right;
  padding: 34px 0;
}

.model-financing-cta-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 640px;
}

.model-financing-cta-kicker {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.model-financing-cta-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2rem, 9.4vw, 3.2rem);
  line-height: 1.06;
  font-weight: 700;
}

.model-financing-cta-description {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.38;
  font-weight: 500;
}

.model-financing-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 22px;
  background-color: #fff;
  color: #111;
  font-size: 0.86rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-versions {
  background-color: #ffffff;
  padding: 36px 0 40px;
}

.model-versions-head {
  margin-bottom: 18px;
}

.model-versions-kicker {
  margin: 0 0 10px;
  color: #EB0A1E;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-versions-title {
  margin: 0;
  color: #101010;
  font-size: clamp(1.75rem, 7.8vw, 2.6rem);
  line-height: 1.08;
  font-weight: 700;
}

.model-versions-carousel {
  position: relative;
}

.model-versions-viewport {
  overflow: hidden;
  padding: 1px 1px 6px;
}

.model-versions-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.model-versions-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.model-versions-carousel.is-static .model-versions-controls {
  display: none;
}

.model-versions-progress {
  position: relative;
  flex: 1;
  height: 2px;
  background-color: #d7d7d7;
  overflow: hidden;
}

.model-versions-progress span {
  display: block;
  width: 0;
  height: 100%;
  background-color: #111;
  transition: width 0.35s ease;
}

.model-versions-buttons {
  display: flex;
  gap: 10px;
}

.model-versions-nav {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background-color: #EB0A1E;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.model-versions-nav:disabled {
  background-color: #cfcfcf;
  cursor: not-allowed;
}

.model-versions-nav:not(:disabled):hover {
  background-color: #c80014;
  transform: translateY(-1px);
}

.model-version-card {
  flex: 0 0 100%;
  min-width: 0;
  border: 1px solid #cfcfcf;
  border-radius: 14px;
  overflow: hidden;
  background-color: #ffffff;
}

.model-version-card-media {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.model-version-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.model-version-card-body {
  padding: 0 18px 18px;
}

.model-version-card-title {
  margin: 0 0 6px;
  color: #111;
  font-size: 1.42rem;
  line-height: 1.18;
  font-weight: 700;
}

.model-version-card-price {
  margin: 0;
  color: #EB0A1E;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
}

.model-version-card-separator {
  display: block;
  width: 100%;
  border-top: 1px solid #cfcfcf;
  margin: 12px 0 12px;
}

.model-version-card-features {
  margin: 0;
  padding-left: 18px;
  color: #444;
}
.model-version-card-features li {
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 500;
}

.model-versions-empty {
  flex: 0 0 100%;
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

.model-performance {
  background-color: #ececec;
  padding: 32px 0 40px;
}

.performance-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.performance-title {
  margin: 0 0 6px;
  color: #1f1f1f;
  font-size: clamp(1.85rem, 8vw, 2.4rem);
  line-height: 1;
  font-weight: 700;
}

.performance-subtitle {
  margin: 0;
  color: #6f6f6f;
  font-size: 0.98rem;
  line-height: 1.3;
}

.performance-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 999px;
  background-color: #EB0A1E;
  color: #FFFFFF;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.performance-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.performance-card {
  background-color: #f3f3f3;
  border-radius: 12px;
  padding: 22px 20px 20px;
  min-height: 198px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.performance-card-label {
  margin: 0;
  color: #EB0A1E;
  font-size: 1.02rem;
  line-height: 1.16;
  font-weight: 500;
  min-height: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.performance-value {
  margin: 18px 0 0;
  color: #1d1f24;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.performance-value-number {
  font-size: clamp(3rem, 13vw, 4rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.performance-value-unit {
  font-size: clamp(1.8rem, 8vw, 2.3rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.performance-value-single {
  margin: 20px 0 0;
  color: #1d1f24;
  font-size: clamp(3rem, 13vw, 4.5rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.performance-card-line {
  width: 100%;
  max-width: 204px;
  margin: auto auto 0;
  border-top: 1px solid #d2d2d2;
}

.performance-fuel {
  text-align: center;
}

.performance-fuel-title {
  margin: 0 0 14px;
  color: #1f1f1f;
  font-size: clamp(1.8rem, 8vw, 2.4rem);
  line-height: 1.05;
  font-weight: 700;
}

.performance-fuel-grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

.performance-fuel-item {
  margin: 0;
  padding: 12px 0;
  color: #656565;
  font-size: 1.22rem;
  line-height: 1.15;
  font-weight: 500;
  border-top: 1px solid #d2d2d2;
}
.performance-fuel-item:first-child {
  border-top: 0;
}

.lifestyle-products {
  background-color: #ececec;
  padding: 34px 0 36px;
}

.lifestyle-head {
  margin-bottom: 22px;
}

.lifestyle-title {
  margin: 0 0 10px;
  color: #EB0A1E;
  font-size: clamp(1.9rem, 7.5vw, 2.7rem);
  line-height: 1.1;
  font-weight: 700;
}

.lifestyle-text {
  margin: 0 0 12px;
  color: #262626;
  font-size: 1.04rem;
  line-height: 1.35;
}
.lifestyle-text strong {
  font-weight: 700;
}

.lifestyle-text-strong {
  margin-bottom: 0;
  font-weight: 700;
}

.lifestyle-products .lifestyle-gallery {
  padding: 0;
}
.lifestyle-products .lifestyle-gallery .galeria-contenedor {
  padding: 0;
  gap: 16px;
}
.lifestyle-products .lifestyle-gallery .tarjeta {
  flex: 0 0 86%;
  height: 340px;
  border-radius: 14px;
  align-items: flex-end;
  justify-content: center;
  background-color: #bcbcbc;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.lifestyle-products .lifestyle-gallery .tarjeta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 55%, rgba(0, 0, 0, 0.28) 100%);
  z-index: 1;
}
.lifestyle-products .lifestyle-gallery .tarjeta .lifestyle-card-btn {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  min-width: 160px;
  background-color: #1b1b1b;
  color: #FFFFFF;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.86rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.lifestyle-products .lifestyle-gallery .lifestyle-gallery-controls {
  margin-top: 12px;
}
.lifestyle-products .lifestyle-gallery .barra-progreso {
  width: 100%;
  margin: 0;
  height: 4px;
  border-bottom: 0;
  background-color: #b8b8b8;
}
.lifestyle-products .lifestyle-gallery .barra-progreso .barra {
  background-color: #5f5f5f;
}
.lifestyle-products .lifestyle-gallery .flecha {
  width: 44px;
  height: 44px;
  font-size: 26px;
  background-color: #d0d0d0;
  color: #FFFFFF;
  margin-left: 8px;
}
.lifestyle-products .lifestyle-gallery .flecha.derecha {
  background-color: #EB0A1E;
}

.refacciones-form-section {
  background-color: #efefef;
  padding: 12px 0 42px;
}

.refacciones-form-card {
  max-width: 760px;
  margin: 0 auto;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 26px 16px 22px;
}

.refacciones-form-title {
  margin: 0 0 18px;
  text-align: center;
  color: #EB0A1E;
  font-size: clamp(1.6rem, 6.2vw, 2.05rem);
  line-height: 1.15;
  font-weight: 600;
}

.refacciones-form-label {
  margin: 0 0 9px;
  color: #232323;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
}

.refacciones-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-bottom: 14px;
}

.refacciones-form-field input,
.refacciones-form-field select,
.refacciones-form-field textarea {
  width: 100%;
  background-color: #f5f5f5;
  border: 1px solid #c4c9d1;
  border-radius: 2px;
  color: #4c5561;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s ease;
}
.refacciones-form-field input::placeholder,
.refacciones-form-field select::placeholder,
.refacciones-form-field textarea::placeholder {
  color: #7b8490;
}
.refacciones-form-field input:focus,
.refacciones-form-field select:focus,
.refacciones-form-field textarea:focus {
  border-color: #9ca4af;
}
.refacciones-form-field select {
  appearance: auto;
  background-image: none;
  padding-right: 12px;
}
.refacciones-form-field textarea {
  resize: vertical;
  min-height: 94px;
}

.refacciones-form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.refacciones-form-check input {
  margin-top: 2px;
  flex-shrink: 0;
}
.refacciones-form-check span {
  color: #404040;
  font-size: 0.8rem;
  line-height: 1.25;
}
.refacciones-form-check a {
  color: #EB0A1E;
  font-weight: 600;
}

.refacciones-check-privacy {
  justify-content: center;
  margin: 2px 0 12px;
}

.refacciones-check-consent {
  background-color: #e9e9e9;
  border-radius: 10px;
  padding: 12px 13px;
  margin-bottom: 14px;
}

.refacciones-form-submit {
  display: block;
  margin: 0 auto;
  min-width: 184px;
  border: 0;
  border-radius: 999px;
  background-color: #EB0A1E;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  padding: 12px 22px;
  letter-spacing: 0.1px;
  transition: background-color 0.2s ease;
}
.refacciones-form-submit:hover {
  background-color: #c90719;
}

.directory-page {
  background-color: #e8e8e8;
  padding: 30px 0 60px;
}

.directory-section + .directory-section {
  margin-top: 44px;
}

.directory-section-head {
  text-align: center;
  margin-bottom: 30px;
}

.directory-title {
  color: #1c1d22;
  font-size: clamp(2rem, 5.2vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.directory-title-line {
  display: inline-block;
  width: 74px;
  height: 4px;
  border-radius: 3px;
  background-color: #EB0A1E;
  margin-top: 14px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px 20px;
}

.advisor-card {
  text-align: center;
}

.advisor-photo-wrap {
  width: min(100%, 182px);
  margin: 0 auto 10px;
  border: 5px solid #f4f4f4;
  border-radius: 14px;
  overflow: hidden;
  background-color: #dcdcdc;
  aspect-ratio: 0.8;
}

.advisor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor-name {
  color: #EB0A1E;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.2px;
  margin: 0 0 6px;
}

.advisor-phone {
  margin: 0;
  color: #1d1d1f;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.advisor-phone i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background-color: #FFFFFF;
  color: #EB0A1E;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.advisor-phone a,
.advisor-phone span {
  color: inherit;
}

.advisor-email {
  margin: 4px 0 0;
  color: #1d1d1f;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
  word-break: break-word;
}
.advisor-email a {
  color: inherit;
}

.advisor-comonuevos-badge {
  width: min(112px, 100%);
  margin: 10px auto 0;
  display: block;
}

.directory-empty {
  text-align: center;
  color: #505155;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 576px) {
  .header-main {
    padding: 15px 0;
  }
  .header-main .navbar-brand .logo {
    height: 40px;
  }
  .header-main .header-actions {
    flex-direction: row;
    padding: 15px;
  }
  .header-main .header-actions .btn {
    width: auto;
    padding: 12px 24px;
    font-size: 0.875rem;
  }
  .header-main .header-call-dropdown {
    width: auto;
  }
  .header-main .header-call-menu {
    width: 170px;
  }
  .header-main .autos-submenu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-section {
    height: auto;
    min-height: 0;
  }
  .hero-section .hero-title {
    font-size: 3rem;
  }
  .hero-section .hero-subtitle {
    font-size: 1.125rem;
  }
  .hero-section .btn-hero {
    padding: 14px 30px;
    font-size: 1rem;
  }
  .hero-section .hero-prev,
  .hero-section .hero-next {
    width: 45px;
    height: 45px;
  }
  .hero-section .hero-prev {
    left: 20px;
  }
  .hero-section .hero-next {
    right: 20px;
  }
  .hero-section .hero-social {
    right: 20px;
    gap: 15px;
  }
  .hero-section .hero-social a {
    width: 40px;
    height: 40px;
  }
  .hero-section .hero-social a i {
    font-size: 1rem;
  }
  .hero-section .hero-pagination {
    bottom: 30px;
    gap: 12px;
  }
  .hero-section .hero-pagination .dot {
    width: 12px;
    height: 12px;
  }
  .hero-section .hero-pagination .dot.active {
    width: 35px;
  }
  .contact-center {
    padding: 50px 0;
  }
  .contact-center .contact-center-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .contact-center .contact-center-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .contact-center .contact-center-description br {
    display: block;
  }
  .contact-center .contact-items-row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
  .contact-center .contact-item .contact-icon {
    width: 60px;
    height: 60px;
  }
  .contact-center .contact-item p {
    font-size: 13px;
  }
  .contact-center .contact-info-container {
    margin-top: 30px;
  }
  .contact-center .contact-info {
    gap: 14px;
  }
  .contact-center .contact-info .contact-info-item {
    width: 52px;
    height: 52px;
  }
  .contact-center .contact-info .contact-info-item i {
    font-size: 21px;
  }
  .promotions-section {
    padding: 50px 0;
  }
  .promotions-section .section-title {
    font-size: 2rem;
  }
  .promotions-section .section-subtitle {
    font-size: 1rem;
  }
  .promotions-section .section-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .promotions-section .carousel-track {
    gap: 20px;
  }
  .promotions-section .promo-card {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .promotions-section .promo-card .promo-special {
    padding: 40px 25px;
  }
  .promotions-section .promo-card .promo-special .promo-logo {
    width: 100px;
  }
  .promotions-section .promo-card .promo-special h3 {
    font-size: 1.25rem;
  }
  .promotions-section .promo-card .promo-special .promo-vehicle {
    font-size: 2rem;
  }
  .promotions-section .promo-card .promo-special .promo-price .price-label {
    font-size: 1rem;
  }
  .promotions-section .promo-card .promo-special .promo-price .price-value {
    font-size: 2.5rem;
  }
  .promotions-section .promo-card .btn-promo,
  .promotions-section .promo-card .btn-promo-dark {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .models-section {
    padding: 50px 0;
  }
  .models-section .models-header {
    margin-bottom: 40px;
  }
  .models-section .section-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .models-section .section-title br {
    display: inline;
  }
  .models-section .models-tabs {
    justify-content: center;
    gap: 10px;
  }
  .models-section .models-tabs .nav-link {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
  .models-section .model-card .model-image {
    height: 200px;
  }
  .models-section .model-card .model-info {
    padding: 25px;
  }
  .models-section .model-card .model-name {
    font-size: 1.5rem;
  }
  .models-section .model-card .model-price {
    font-size: 1.125rem;
  }
  .models-section .model-card .btn-model {
    padding: 12px 25px;
    font-size: 0.875rem;
  }
  .models-section .model-card .btn-icon {
    width: 45px;
    height: 45px;
  }
  .models-section .model-card .btn-icon i {
    font-size: 1rem;
  }
  .services-section {
    padding: 60px 0;
  }
  .services-section .services-header {
    margin-bottom: 40px;
  }
  .services-section .services-label {
    font-size: 13px;
  }
  .services-section .services-title {
    font-size: 2rem;
  }
  .services-section .services-description {
    font-size: 1rem;
  }
  .services-section .services-description br {
    display: block;
  }
  .services-section .service-card {
    height: 380px;
  }
  .services-section .service-card .service-overlay {
    padding: 30px;
  }
  .services-section .service-card .service-title {
    font-size: 32px;
  }
  .services-section .service-card .service-logo {
    max-width: 150px;
  }
  .services-section .service-card .btn-service {
    padding: 14px 30px;
    font-size: 0.875rem;
  }
  .services-section .service-card .btn-service-arrow {
    width: 55px;
    height: 55px;
  }
  .services-section .service-card .btn-service-arrow i {
    font-size: 1.25rem;
  }
  .form-section .form-content {
    padding: 50px 30px;
  }
  .form-section .form-title {
    font-size: 2rem;
  }
  .form-section .form-description {
    font-size: 1rem;
  }
  .form-section .form-description br {
    display: block;
  }
  .form-section .map-container {
    height: 500px;
  }
  .footer {
    padding: 50px 0 35px;
  }
  .footer .footer-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer .footer-brand-name {
    font-size: 28px;
  }
  .footer .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer .footer-nav a {
    font-size: 1rem;
  }
  .footer .footer-address-text br {
    display: block;
  }
  .footer .schedule-card {
    text-align: left;
  }
  .footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer .footer-social-section {
    text-align: right;
  }
  .footer .footer-social {
    justify-content: flex-end;
  }
  .service-hero {
    min-height: 72vh;
  }
  .service-hero-overlay {
    padding: 70px 0 72px;
  }
  .service-hero-content {
    max-width: 84%;
  }
  .service-hero-kicker {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .service-hero-title {
    font-size: clamp(2.5rem, 6.2vw, 3.5rem);
    margin-bottom: 16px;
  }
  .service-hero-description {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  .service-hero-social {
    right: 24px;
    bottom: 24px;
  }
  .service-hero-social-toggle,
  .service-hero-social-item {
    width: 52px;
    height: 52px;
  }
  .service-hero-social-items {
    bottom: 64px;
    gap: 12px;
  }
  .service-hero-social-item i,
  .service-hero-social-toggle i {
    font-size: 1.25rem;
  }
  .service-assurance {
    padding: 40px 0;
  }
  .service-assurance-logo {
    width: 96px;
    margin-bottom: 18px;
  }
  .service-assurance-text {
    font-size: 1.02rem;
    margin-bottom: 10px;
  }
  .service-assurance-highlight {
    font-size: 1.1rem;
  }
  .service-price-list {
    padding-bottom: 42px;
  }
  .service-price-card {
    margin-bottom: 14px;
  }
  .service-booking {
    padding: 16px 0 48px;
  }
  .service-booking-card {
    padding: 30px 22px 26px;
  }
  .service-booking-head {
    margin-bottom: 20px;
  }
  .service-booking-head h2 {
    font-size: 1.62rem;
  }
  .service-booking-head p {
    font-size: 0.88rem;
  }
  .service-field input,
  .service-field select,
  .service-field textarea {
    font-size: 0.96rem;
    padding: 11px 13px;
  }
  .service-fake-recaptcha {
    max-width: 330px;
  }
  .finance-section {
    padding: 40px 0 44px;
  }
  .finance-kicker {
    font-size: 0.9rem;
  }
  .finance-title {
    font-size: clamp(1.95rem, 4.4vw, 2.5rem);
  }
  .finance-description {
    font-size: 1.05rem;
  }
  .finance-benefits-title {
    font-size: 2.1rem;
  }
  .finance-card {
    padding: 24px 20px;
  }
  .finance-card h3 {
    font-size: 2.2rem;
  }
  .finance-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }
  .finance-field-full {
    grid-column: 1/-1;
  }
  .finance-closing {
    margin-top: 34px;
    font-size: 2rem;
  }
  .refacciones-hero {
    min-height: 64vh;
  }
  .refacciones-hero-overlay {
    padding: 62px 0;
  }
  .refacciones-hero-content {
    max-width: 86%;
  }
  .refacciones-hero-kicker {
    font-size: 1.95rem;
  }
  .refacciones-hero-title {
    font-size: clamp(2.5rem, 6.3vw, 3.35rem);
  }
  .refacciones-hero-description {
    font-size: 1.35rem;
  }
  .lifestyle-products {
    padding: 42px 0 44px;
  }
  .lifestyle-products .lifestyle-gallery .galeria-contenedor {
    gap: 18px;
  }
  .lifestyle-products .lifestyle-gallery .tarjeta {
    flex: 0 0 58%;
    height: 380px;
  }
  .model-performance {
    padding: 40px 0 44px;
  }
  .showcase-main {
    padding: 26px 24px 28px;
  }
  .showcase-preview {
    min-height: 440px;
  }
  .showcase-preview img {
    max-height: 480px;
  }
  .showcase-versions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .showcase-colors {
    padding: 18px 24px;
  }
  .performance-download-btn {
    align-self: flex-start;
  }
  .performance-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .performance-card:last-child {
    grid-column: 1/-1;
  }
  .refacciones-form-section {
    padding: 14px 0 50px;
  }
  .refacciones-form-card {
    padding: 30px 24px 24px;
  }
  .refacciones-form-title {
    margin-bottom: 20px;
    font-size: 2.05rem;
  }
  .refacciones-form-grid {
    gap: 10px;
  }
  .refacciones-form-field input,
  .refacciones-form-field select,
  .refacciones-form-field textarea {
    font-size: 0.92rem;
    padding: 10px 12px;
  }
}
@media (min-width: 768px) {
  .header-main .navbar-collapse {
    margin-top: 0;
  }
  .header-main .navbar-nav .nav-item .nav-link {
    border-bottom: none;
    padding: 8px 15px;
  }
  .header-main .header-actions {
    padding: 0;
  }
  .header-main .autos-submenu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-section {
    height: auto;
    min-height: 0;
  }
  .contact-center {
    padding: 50px 0;
  }
  .contact-center .contact-description {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-center .contact-items {
    margin-bottom: 30px;
  }
  .promotions-section {
    padding: 50px 0;
  }
  .promotions-section .promotions-carousel {
    padding: 0 50px;
  }
  .promotions-section .carousel-track {
    gap: 25px;
    overflow-x: hidden;
    scroll-snap-type: none;
  }
  .promotions-section .promo-card {
    flex: 0 0 calc(33.333% - 17px);
    max-width: calc(33.333% - 17px);
  }
  .promotions-section .carousel-prev,
  .promotions-section .carousel-next {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  .promotions-section .carousel-prev:hover,
  .promotions-section .carousel-next:hover {
    background-color: #EB0A1E;
  }
  .promotions-section .carousel-prev i,
  .promotions-section .carousel-next i {
    font-size: 1.125rem;
  }
  .promotions-section .carousel-prev {
    left: 10px;
  }
  .promotions-section .carousel-next {
    right: 10px;
  }
  .models-section {
    padding: 50px 0;
  }
  .models-section .model-card .model-image {
    height: 220px;
  }
  .services-section {
    padding: 60px 0;
  }
  .services-section .service-card {
    height: 400px;
  }
  .form-section {
    padding: 60px 0;
  }
  .form-section .form-content {
    padding: 40px;
  }
  .form-section .map-container {
    height: 100%;
    min-height: 500px;
  }
  .footer {
    padding: 60px 0 30px;
  }
  .service-hero {
    min-height: 76vh;
  }
  .service-hero-overlay {
    padding: 88px 0;
  }
  .service-hero-content {
    max-width: 68%;
  }
  .service-hero-title {
    font-size: clamp(3rem, 5.3vw, 4.1rem);
  }
  .service-hero-description {
    max-width: 700px;
  }
  .service-hero-social {
    right: 28px;
    bottom: 28px;
  }
  .service-hero-social-toggle,
  .service-hero-social-item {
    width: 54px;
    height: 54px;
  }
  .service-hero-social-items {
    bottom: 68px;
    gap: 14px;
  }
  .service-assurance {
    padding: 46px 0;
  }
  .service-assurance-logo {
    width: 102px;
    margin-bottom: 20px;
  }
  .service-assurance-text {
    font-size: 1.08rem;
  }
  .service-assurance-highlight {
    font-size: 1.22rem;
  }
  .service-payment-options {
    padding: 14px 0 42px;
  }
  .service-payment-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }
  .service-payment-head h2 {
    font-size: 1.34rem;
    line-height: 1.15;
  }
  .service-payment-head h2 span {
    font-size: 1.42em;
  }
  .service-payment-whatsapp {
    padding: 9px 18px;
    font-size: 0.94rem;
    flex-shrink: 0;
  }
  .service-payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .service-payment-card {
    min-height: 120px;
  }
  .service-payment-card h3 {
    font-size: 1.14rem;
  }
  .service-payment-card p,
  .service-payment-card ul {
    font-size: 0.9rem;
  }
  .service-payment-feature-card {
    width: 86%;
    margin-top: 14px;
    padding: 22px 30px 20px;
  }
  .service-payment-feature-card h3 {
    font-size: 1.42rem;
  }
  .service-payment-feature-copy,
  .service-payment-feature-title {
    font-size: 0.96rem;
  }
  .service-payment-banks-image {
    width: min(100%, 520px);
  }
  .service-booking {
    padding: 18px 0 56px;
  }
  .service-booking-card {
    width: 86%;
    max-width: 760px;
    padding: 34px 34px 30px;
  }
  .service-booking-head {
    margin-bottom: 22px;
  }
  .service-booking-head h2 {
    font-size: 1.74rem;
  }
  .service-booking-head p {
    font-size: 0.92rem;
  }
  .service-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .service-field-full {
    grid-column: 1/-1;
  }
  .service-field input,
  .service-field select,
  .service-field textarea {
    font-size: 1rem;
    padding: 12px 14px;
  }
  .service-field textarea {
    min-height: 110px;
  }
  .service-fake-recaptcha {
    margin-top: 18px;
    max-width: 356px;
  }
  .service-consent-box {
    padding: 18px 24px 22px;
  }
  .service-consent-check {
    margin-bottom: 20px;
  }
  .service-consent-check span {
    font-size: 0.95rem;
    line-height: 1.32;
  }
  .service-booking-submit {
    min-width: 220px;
    font-size: 0.9rem;
  }
  .thanks-section {
    padding: 58px 0 72px;
  }
  .thanks-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 20px;
  }
  .thanks-title {
    margin-bottom: 14px;
    font-size: 3rem;
  }
  .thanks-text {
    font-size: 1.14rem;
  }
  .thanks-close-btn {
    margin-top: 30px;
    padding: 13px 26px;
  }
  .finance-plans-highlight {
    padding: 40px 0 42px;
  }
  .finance-plans-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
  }
  .finance-plans-copy h1 {
    font-size: clamp(2rem, 3.6vw, 2.6rem);
    max-width: 390px;
  }
  .finance-plans-image {
    border-radius: 16px;
  }
  .finance-products {
    padding: 36px 0 44px;
  }
  .finance-products-title {
    margin-bottom: 22px;
    font-size: 2.05rem;
    max-width: 640px;
  }
  .finance-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .finance-product-card {
    font-size: 18px;
    min-height: 276px;
    padding: 18px 16px 16px;
  }
  .finance-product-card h3 {
    font-size: 2.1rem;
    min-height: 4.2rem;
  }
  .finance-product-card p {
    font-size: 1.08rem;
  }
  .finance-product-btn {
    min-width: 154px;
    font-size: 16px;
    padding: 10px 20px;
  }
  .finance-section {
    padding: 52px 0 52px;
  }
  .finance-layout {
    gap: 28px;
  }
  .finance-kicker {
    font-size: 0.96rem;
    letter-spacing: 0.8px;
  }
  .finance-title {
    font-size: clamp(2.25rem, 3.7vw, 2.9rem);
  }
  .finance-description {
    font-size: 1.1rem;
  }
  .finance-benefits-title {
    margin-top: 34px;
    font-size: 2.25rem;
  }
  .finance-benefits-list {
    gap: 17px;
  }
  .finance-benefits-list p {
    font-size: 1.08rem;
  }
  .finance-logo {
    width: 148px;
  }
  .finance-card {
    padding: 26px 22px;
  }
  .finance-card h3 {
    font-size: 2.36rem;
    margin-bottom: 14px;
  }
  .finance-form-field input,
  .finance-form-field select {
    font-size: 1.08rem;
  }
  .finance-check span {
    font-size: 0.8rem;
  }
  .finance-submit-btn {
    width: 195px;
    height: 46px;
    font-size: 0.92rem;
  }
  .finance-closing {
    margin-top: 40px;
    font-size: 2.2rem;
  }
  .refacciones-hero {
    min-height: 68vh;
  }
  .refacciones-hero-overlay {
    padding: 78px 0;
  }
  .refacciones-hero-content {
    max-width: 72%;
  }
  .refacciones-hero-title {
    font-size: clamp(3rem, 5.1vw, 4rem);
  }
  .refacciones-hero-description {
    font-size: 1.5rem;
  }
  .lifestyle-products {
    padding: 48px 0 50px;
  }
  .lifestyle-head {
    margin-bottom: 26px;
  }
  .lifestyle-title {
    font-size: clamp(2.1rem, 4.6vw, 2.8rem);
  }
  .lifestyle-text {
    font-size: 1.08rem;
    max-width: 900px;
  }
  .lifestyle-products .lifestyle-gallery .tarjeta {
    flex: 0 0 44%;
    height: 400px;
    border-radius: 16px;
  }
  .lifestyle-products .lifestyle-gallery .lifestyle-gallery-controls {
    margin-top: 16px;
  }
  .model-performance {
    padding: 44px 0 50px;
  }
  .model-banner-title {
    font-size: clamp(3rem, 7.6vw, 4.7rem);
  }
  .model-banner-description {
    max-width: 590px;
    font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  }
  .showcase-shell {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  }
  .showcase-main {
    padding: 28px 30px 26px;
  }
  .showcase-preview-row {
    gap: 16px;
    margin-bottom: 18px;
  }
  .showcase-preview {
    min-height: 600px;
  }
  .showcase-preview img {
    max-height: 480px;
    max-width: 90%;
  }
  .showcase-copy-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
  }
  .showcase-copy-title {
    font-size: 1.48rem;
  }
  .showcase-copy-text {
    font-size: 0.95rem;
  }
  .showcase-tech-btn {
    min-width: 136px;
    min-height: 40px;
    font-size: 0.76rem;
  }
  .showcase-versions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .showcase-versions-title {
    font-size: 1.02rem;
  }
  .showcase-version-name {
    font-size: 1.8rem;
  }
  .showcase-version-price {
    font-size: 1.1rem;
  }
  .showcase-colors {
    border-top: 0;
    border-left: 1px solid #cfcfcf;
    padding: 24px 18px;
  }
  .showcase-colors-list {
    gap: 12px;
  }
  .technology-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 600px;
  }
  .technology-media {
    min-height: 600px;
  }
  .technology-content {
    padding: 64px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .technology-kicker {
    font-size: 0.86rem;
    margin-bottom: 14px;
  }
  .technology-title {
    font-size: clamp(2.6rem, 4.4vw, 3.5rem);
    margin-bottom: 20px;
  }
  .technology-description {
    font-size: 1.16rem;
    line-height: 1.4;
  }
  .model-gallery {
    padding: 46px 0 52px;
  }
  .model-gallery-head {
    margin-bottom: 22px;
  }
  .model-gallery-title {
    font-size: clamp(2.35rem, 4.8vw, 3.2rem);
  }
  .model-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .model-static-feature {
    padding: 40px 0;
  }
  .model-static-feature-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    min-height: 500px;
  }
  .model-static-feature-media {
    min-height: 500px;
  }
  .model-static-feature-content {
    padding: 56px 52px;
  }
  .model-static-feature-title {
    font-size: clamp(2.4rem, 4.8vw, 3.45rem);
  }
  .model-static-feature-technology .model-static-feature-title {
    font-size: clamp(2.15rem, 3.6vw, 2.75rem);
  }
  .model-static-feature-interior .model-static-feature-title {
    font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  }
  .model-static-feature-technology .model-static-feature-layout,
  .model-static-feature-technology .model-static-feature-media {
    min-height: 70vh;
    height: 70vh;
  }
  .model-static-feature-description {
    font-size: 1.08rem;
  }
  .model-security {
    padding: 44px 0 50px;
  }
  .security-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.85fr);
    gap: 18px;
  }
  .security-side-card {
    padding: 28px 22px;
  }
  .security-side-title {
    font-size: 1.62rem;
    margin-bottom: 20px;
  }
  .security-feature-item {
    font-size: 1.05rem;
  }
  .security-slide-image-wrap {
    height: 330px;
  }
  .security-slide-copy {
    padding: 20px 24px 22px;
  }
  .security-slide-title {
    font-size: 1.72rem;
  }
  .security-slider-controls {
    margin-top: 16px;
  }
  .security-note {
    margin-top: 18px;
    font-size: 0.84rem;
  }
  .model-security-compact {
    padding: 30px 0 34px;
  }
  .model-security-compact .security-head {
    margin-bottom: 24px;
  }
  .model-security-compact .security-side-card {
    padding: 28px 28px;
  }
  .model-security-compact .security-side-title {
    font-size: 1.28rem;
    margin-bottom: 20px;
  }
  .model-security-compact .security-feature-item {
    font-size: 0.9rem;
    padding: 11px 0 11px 28px;
  }
  .model-security-compact .security-feature-item::before {
    top: 11px;
  }
  .model-security-compact .security-slide-image-wrap {
    height: clamp(300px, 35vh, 390px);
  }
  .model-security-compact .security-slide-copy {
    min-height: 86px;
    padding: 20px 28px;
  }
  .model-security-compact .security-slide-title {
    font-size: clamp(1.6rem, 2.7vw, 2rem);
  }
  .model-security-compact .security-slide-description {
    font-size: 0.86rem;
  }
  .model-security-compact .security-slider-controls {
    margin-top: 14px;
  }
  .model-security-compact .security-note {
    margin-top: 16px;
  }
  .model-economy-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 580px;
  }
  .model-economy-media {
    min-height: 580px;
  }
  .model-economy-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px 52px;
  }
  .model-economy-title {
    font-size: clamp(2.3rem, 4.5vw, 3.2rem);
  }
  .model-economy-description {
    font-size: 1.06rem;
  }
  .model-economy-card {
    max-width: 620px;
    margin-top: 54px;
    border-radius: 18px;
  }
  .model-economy-card-head {
    padding: 30px 26px 22px;
    font-size: 1.32rem;
  }
  .model-economy-row {
    margin: 0 26px;
    padding: 28px 0;
  }
  .model-economy-row strong {
    font-size: 2.65rem;
  }
  .model-economy-card-single .model-economy-row {
    padding-bottom: 34px;
  }
  .model-design-collage {
    padding: 40px 0;
  }
  .model-design-collage-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto minmax(220px, 1fr) minmax(220px, 1fr);
    gap: 26px;
    align-items: stretch;
  }
  .model-design-collage-intro {
    grid-column: 1;
    grid-row: 1;
  }
  .model-design-collage-image-main {
    grid-column: 1;
    grid-row: 2 / span 2;
    min-height: 460px;
  }
  .model-design-collage-image-top {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 300px;
  }
  .model-design-collage-image-bottom {
    grid-column: 2;
    grid-row: 3;
    min-height: 260px;
  }
  .model-design-collage-title {
    font-size: clamp(3.1rem, 5.5vw, 4.1rem);
  }
  .model-design-collage-description {
    font-size: 0.95rem;
  }
  .model-innovation {
    padding: 54px 0 60px;
  }
  .model-innovation-head {
    margin-bottom: 36px;
  }
  .model-innovation-title {
    font-size: clamp(2.8rem, 4.4vw, 3.45rem);
  }
  .model-innovation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 760px;
  }
  .model-innovation-copy h3 {
    font-size: 1.75rem;
  }
  .model-innovation-copy p {
    font-size: 0.92rem;
  }
  .model-adventure-collage {
    padding: 40px 0;
  }
  .model-adventure-collage-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto minmax(220px, 1fr) minmax(220px, 1fr);
    gap: 26px;
    align-items: stretch;
  }
  .model-adventure-collage-intro {
    grid-column: 1;
    grid-row: 1;
  }
  .model-adventure-collage-image-main {
    grid-column: 1;
    grid-row: 2 / span 2;
    min-height: 460px;
  }
  .model-adventure-collage-image-top {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 300px;
  }
  .model-adventure-collage-image-bottom {
    grid-column: 2;
    grid-row: 3;
    min-height: 260px;
  }
  .model-adventure-collage-grid-two {
    grid-template-rows: auto minmax(310px, 1fr);
  }
  .model-adventure-collage-grid-two .model-adventure-collage-image-main {
    grid-column: 1;
    grid-row: 2;
    min-height: 320px;
  }
  .model-adventure-collage-image-side {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 520px;
  }
  .model-adventure-collage-title {
    font-size: clamp(3.4rem, 6vw, 4.4rem);
  }
  .model-adventure-collage-description {
    font-size: 0.95rem;
  }
  .model-financing-cta {
    background-image: linear-gradient(100deg, #000 0%, #000 51%, rgba(0, 0, 0, 0) 63%), url("../img/financiamiento-cta.png");
    background-size: cover;
    background-position: center right;
    padding: 42px 0;
  }
  .model-financing-cta-content {
    max-width: 520px;
  }
  .model-financing-cta-title {
    font-size: clamp(2.7rem, 5.4vw, 3.8rem);
    margin-bottom: 14px;
  }
  .model-financing-cta-description {
    font-size: 1.1rem;
    margin-bottom: 22px;
  }
  .model-versions {
    padding: 46px 0 52px;
  }
  .model-versions-head {
    margin-bottom: 22px;
  }
  .model-versions-track {
    gap: 16px;
  }
  .model-version-card {
    flex-basis: calc((100% - 16px) / 2);
  }
  .model-version-card-media {
    height: 250px;
  }
  .model-version-card-title {
    font-size: 1.58rem;
  }
  .model-version-card-price {
    font-size: 1.24rem;
  }
  .performance-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .performance-subtitle {
    max-width: 520px;
  }
  .performance-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .performance-card {
    min-height: 250px;
  }
  .performance-card:last-child {
    grid-column: auto;
  }
  .performance-value-number {
    font-size: clamp(3.2rem, 7vw, 3.8rem);
  }
  .performance-value-unit {
    font-size: clamp(1.8rem, 3.4vw, 2.1rem);
  }
  .performance-value-single {
    font-size: clamp(3.6rem, 7.6vw, 4.2rem);
  }
  .performance-fuel-grid {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .performance-fuel-item {
    border-top: 0;
    border-right: 1px solid #d2d2d2;
    padding: 0 20px;
  }
  .performance-fuel-item:last-child {
    border-right: 0;
  }
  .refacciones-form-section {
    padding: 16px 0 58px;
  }
  .refacciones-form-card {
    max-width: 760px;
    padding: 34px 34px 28px;
  }
  .refacciones-form-title {
    font-size: 2.15rem;
    margin-bottom: 22px;
  }
  .refacciones-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 16px;
  }
  .refacciones-field-full {
    grid-column: 1/-1;
  }
  .refacciones-form-field input,
  .refacciones-form-field select,
  .refacciones-form-field textarea {
    font-size: 0.96rem;
    padding: 10px 12px;
  }
  .refacciones-form-field textarea {
    min-height: 94px;
  }
  .refacciones-check-privacy {
    margin: 4px 0 12px;
  }
  .refacciones-check-consent {
    padding: 14px 15px;
    margin-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .header-main {
    padding: 15px 0;
  }
  .header-main .container-fluid {
    position: static;
  }
  .header-main .navbar {
    padding: 0 20px;
  }
  .header-main .navbar-brand .logo {
    height: 45px;
  }
  .header-main .navbar-nav {
    gap: 5px;
  }
  .header-main .navbar-nav .nav-item .nav-link {
    position: relative;
    padding: 10px 18px;
    font-size: 0.875rem;
  }
  .header-main .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -15px;
    height: 4px;
    background-color: #EB0A1E;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .header-main .navbar-nav .nav-item .nav-link.active {
    color: #000000;
    font-weight: 600;
  }
  .header-main .navbar-nav .nav-item .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
  }
  .header-main .navbar-nav .nav-item-service {
    position: relative;
  }
  .header-main .navbar-nav .nav-item-service .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .header-main .navbar-nav .nav-item-service .service-link .service-link-arrow {
    display: inline-flex;
    font-size: 10px;
    color: inherit;
    transform: translateY(1px);
    transition: transform 0.2s ease;
  }
  .header-main .navbar-nav .nav-item-service .service-submenu-toggle {
    display: none;
  }
  .header-main .navbar-nav .nav-item-service .service-submenu {
    list-style: none;
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 8px;
    background-color: #FFFFFF;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
    z-index: 1000;
  }
  .header-main .navbar-nav .nav-item-service .service-submenu li a {
    display: block;
    padding: 11px 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .header-main .navbar-nav .nav-item-service .service-submenu li a:hover {
    color: #EB0A1E;
    background-color: #f4f4f4;
  }
  .header-main .navbar-nav .nav-item-service .service-submenu li a.active {
    color: #EB0A1E;
    background-color: #fff5f6;
  }
  .header-main .navbar-nav .nav-item-service:hover .service-submenu, .header-main .navbar-nav .nav-item-service:focus-within .service-submenu {
    display: block !important;
  }
  .header-main .navbar-nav .nav-item-service:hover .service-link-arrow, .header-main .navbar-nav .nav-item-service:focus-within .service-link-arrow {
    transform: translateY(1px) rotate(180deg);
  }
  .header-main .navbar-nav .nav-item-autos {
    position: static;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }
  .header-main .navbar-nav .nav-item-autos .autos-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .header-main .navbar-nav .nav-item-autos .autos-link .autos-link-arrow {
    display: inline-flex;
    font-size: 10px;
    color: inherit;
    transform: translateY(1px);
    transition: transform 0.2s ease;
  }
  .header-main .navbar-nav .nav-item-autos .autos-submenu-toggle {
    display: none;
  }
  .header-main .navbar-nav .nav-item-autos .autos-submenu {
    display: none !important;
    position: absolute;
    top: calc(130% - 10px);
    left: 0;
    transform: none;
    width: 100vw;
    margin: 0;
    background-color: #e7e7e7;
    border: 0;
    border-top: 1px solid #d8d8d8;
    border-radius: 0;
    box-shadow: none;
    z-index: 1000;
    overflow: hidden;
  }
  .header-main .navbar-nav .nav-item-autos:hover .autos-submenu, .header-main .navbar-nav .nav-item-autos:focus-within .autos-submenu {
    display: block !important;
  }
  .header-main .navbar-nav .nav-item-autos:hover .autos-link-arrow, .header-main .navbar-nav .nav-item-autos:focus-within .autos-link-arrow {
    transform: translateY(1px) rotate(180deg);
  }
  .header-main .header-actions {
    gap: 12px;
  }
  .header-main .header-actions .btn {
    padding: 12px 26px;
    font-size: 0.875rem;
  }
  .header-main .autos-submenu-tabs {
    justify-content: space-between;
  }
  .header-main .autos-submenu-tabs .nav-item {
    flex: 1;
  }
  .header-main .autos-submenu-tabs .autos-submenu-tab-btn {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    padding: 12px 10px;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    line-height: 1.15;
  }
  .header-main .autos-submenu-tabs .autos-submenu-tab-btn::after {
    content: none !important;
  }
  .header-main .autos-submenu-tabs .autos-submenu-tab-btn:hover {
    color: #FFFFFF;
  }
  .header-main .autos-submenu-tabs .autos-submenu-tab-btn.active {
    color: #FFFFFF;
    border-bottom-color: #EB0A1E;
  }
  .header-main .autos-submenu-content {
    padding: 18px 24px 22px;
    width: min(1380px, 100%);
    margin: 0 auto;
  }
  .header-main .autos-submenu-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }
  .header-main .autos-submenu-card {
    border-radius: 16px;
    background-color: #FFFFFF;
    min-height: 262px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .header-main .autos-submenu-card:hover {
    border-color: #222;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  }
  .header-main .autos-submenu-card-link {
    padding: 18px 14px 14px;
  }
  .header-main .autos-submenu-card-title {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.08;
  }
  .header-main .autos-submenu-card-image {
    height: 96px;
    margin: 10px 0 10px;
  }
  .header-main .autos-submenu-card-price {
    font-size: 1.4rem;
    font-weight: 600;
  }
  .header-main .autos-submenu-card-actions {
    margin-top: 12px;
  }
  .header-main .autos-submenu-quote-btn {
    font-size: 1rem;
    padding: 8px 18px;
  }
  .header-main .autos-submenu-arrow {
    width: 20px;
    height: 20px;
  }
  .header-main .autos-submenu-arrow i {
    font-size: 10px;
  }
  .hero-section {
    height: auto;
    min-height: 0;
  }
  .hero-section .hero-content {
    padding: 40px;
  }
  .hero-section .hero-text {
    max-width: 550px;
  }
  .hero-section .hero-label {
    padding: 6px 18px;
    font-size: 0.875rem;
    margin-bottom: 15px;
  }
  .hero-section .hero-title {
    font-size: 72px;
    margin-bottom: 12px;
    letter-spacing: 2px;
  }
  .hero-section .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
  .hero-section .btn-hero {
    padding: 15px 35px;
    font-size: 1rem;
  }
  .hero-section .hero-prev,
  .hero-section .hero-next {
    width: 50px;
    height: 50px;
  }
  .hero-section .hero-prev i,
  .hero-section .hero-next i {
    font-size: 1.125rem;
  }
  .hero-section .hero-prev {
    left: 30px;
  }
  .hero-section .hero-next {
    right: 30px;
  }
  .hero-section .hero-social {
    right: 30px;
    gap: 18px;
  }
  .hero-section .hero-social a {
    width: 45px;
    height: 45px;
  }
  .hero-section .hero-social a i {
    font-size: 1.125rem;
  }
  .hero-section .hero-pagination {
    bottom: 40px;
    gap: 14px;
  }
  .hero-section .hero-pagination .dot {
    width: 12px;
    height: 12px;
  }
  .hero-section .hero-pagination .dot.active {
    width: 40px;
  }
  .contact-center {
    padding: 50px 0;
    background-color: #EFEFEF;
  }
  .contact-center .contact-center-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    text-align: left;
  }
  .contact-center .contact-center-description {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 50px;
    text-align: left;
  }
  .contact-center .contact-center-description strong {
    color: #EB0A1E;
    font-weight: 700;
  }
  .contact-center .contact-center-description br {
    display: block;
  }
  .contact-center .contact-items-row {
    margin-bottom: 0;
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
  .contact-center .contact-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #E0E0E0;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .contact-center .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #E6E6E6;
  }
  .contact-center .contact-item.active {
    background-color: #FFFFFF;
    border-color: #EB0A1E;
    box-shadow: 0 4px 12px rgba(235, 10, 30, 0.15);
  }
  .contact-center .contact-item .contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-center .contact-item .contact-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .contact-center .contact-item p {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-align: left;
  }
  .contact-center .contact-info-container {
    margin-top: 35px;
    display: flex;
    justify-content: center;
  }
  .contact-center .contact-info {
    display: none;
    gap: 15px;
  }
  .contact-center .contact-info.active {
    display: flex;
    animation: fadeIn 0.4s ease;
  }
  .contact-center .contact-info .contact-info-item {
    width: 55px;
    height: 55px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  .contact-center .contact-info .contact-info-item:nth-child(3) {
    background-color: #25D366;
  }
  .contact-center .contact-info .contact-info-item:nth-child(3):hover {
    background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
  }
  .contact-center .contact-info .contact-info-item:hover {
    background-color: #EB0A1E;
    transform: scale(1.1);
    color: #FFFFFF;
  }
  .contact-center .contact-info .contact-info-item i {
    font-size: 22px;
  }
  .promotions-section {
    padding: 50px 0;
  }
  .promotions-section .section-title {
    font-size: 42px;
  }
  .promotions-section .section-subtitle {
    font-size: 1.125rem;
  }
  .promotions-section .section-description {
    font-size: 1.125rem;
  }
  .promotions-section .promotions-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
  }
  .promotions-section .carousel-track {
    gap: 30px;
  }
  .promotions-section .promo-card {
    flex: 0 0 calc(25% - 23px);
    max-width: calc(25% - 23px);
  }
  .promotions-section .promo-card .promo-special {
    padding: 50px 30px;
  }
  .promotions-section .promo-card .promo-special .promo-logo {
    width: 120px;
    margin-bottom: 20px;
  }
  .promotions-section .promo-card .promo-special h3 {
    font-size: 1.25rem;
  }
  .promotions-section .promo-card .promo-special .promo-vehicle {
    font-size: 40px;
  }
  .promotions-section .promo-card .promo-special .promo-price .price-label {
    font-size: 1.125rem;
  }
  .promotions-section .promo-card .promo-special .promo-price .price-value {
    font-size: 48px;
  }
  .promotions-section .promo-card .promo-badge {
    top: 25px;
    right: 25px;
    padding: 12px 25px;
    font-size: 1.25rem;
  }
  .promotions-section .promo-card .btn-promo,
  .promotions-section .promo-card .btn-promo-dark {
    padding: 14px 35px;
    font-size: 1rem;
  }
  .promotions-section .carousel-prev {
    left: 15px;
  }
  .promotions-section .carousel-next {
    right: 15px;
  }
  .models-section {
    padding: 50px 0;
    background-color: #F5F5F5;
  }
  .models-section .models-header {
    margin-bottom: 50px;
    text-align: left;
    padding: 0 15px;
  }
  .models-section .section-title {
    font-size: 16px;
    font-weight: 700;
    color: #EB0A1E;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: left;
  }
  .models-section .section-title::before {
    content: "NUESTROS MODELOS";
    display: block;
  }
  .models-section .section-title br {
    display: none;
  }
  .models-section h2.models-subtitle {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 40px 0;
    text-align: left;
    line-height: 1.2;
  }
  .models-section .models-tabs {
    justify-content: flex-start;
    gap: 0;
    border-bottom: 2px solid #D9D9D9;
    margin-bottom: 50px;
  }
  .models-section .models-tabs .nav-item {
    margin: 0;
  }
  .models-section .models-tabs .nav-link {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    background-color: transparent;
    color: #000000;
    border: none;
    border-bottom: 3px solid transparent;
    position: relative;
    bottom: -2px;
  }
  .models-section .models-tabs .nav-link:hover {
    background-color: transparent;
    color: #EB0A1E;
  }
  .models-section .models-tabs .nav-link.active {
    background-color: transparent;
    color: #EB0A1E;
    border-bottom-color: #EB0A1E;
  }
  .models-section .model-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
  }
  .models-section .model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #E0E0E0;
  }
  .models-section .model-card .model-image {
    width: 100%;
    height: 240px;
    object-fit: contain;
    padding: 30px 20px 20px;
    background-color: #FFFFFF;
  }
  .models-section .model-card .model-info {
    padding: 25px 30px 30px;
    text-align: center;
  }
  .models-section .model-card .model-name {
    font-size: 28px;
    font-weight: 700;
    color: #EB0A1E;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  .models-section .model-card .model-price {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 25px;
  }
  .models-section .model-card .model-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }
  .models-section .model-card .btn-model {
    flex: 0 0 auto;
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9999px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  .models-section .model-card .btn-model:hover {
    background-color: #EB0A1E;
    transform: scale(1.05);
  }
  .models-section .model-card .btn-icon {
    width: 48px;
    height: 48px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .models-section .model-card .btn-icon:hover {
    background-color: #EB0A1E;
    transform: scale(1.1);
  }
  .models-section .model-card .btn-icon i {
    font-size: 16px;
  }
  .models-section .row > div:hover .model-card {
    border: 2px solid #000000;
  }
  .models-section .row > div:hover .model-card .model-name {
    color: #000000;
  }
  .models-section .row > div:hover .model-card .btn-model {
    background-color: #EB0A1E;
  }
  .models-section .row > div:hover .model-card .btn-model:hover {
    background-color: #000000;
  }
  .services-section {
    padding: 80px 0;
    background-color: #1A1A1A;
  }
  .services-section .services-header {
    text-align: left;
    margin-bottom: 50px;
    padding: 0 15px;
  }
  .services-section .services-label {
    font-size: 14px;
    font-weight: 700;
    color: #EB0A1E;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  .services-section .services-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .services-section .services-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
  }
  .services-section .services-description strong {
    font-weight: 700;
  }
  .services-section .services-description br {
    display: block;
  }
  .services-section .service-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
  }
  .services-section .service-card .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .services-section .service-card:hover .service-image {
    transform: scale(1.1);
  }
  .services-section .service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.75);
  }
  .services-section .service-card:hover .btn-service,
  .services-section .service-card:hover .btn-service-arrow {
    transform: scale(1.1);
  }
  .services-section .service-card .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px;
    transition: background 0.3s ease;
    z-index: 2;
  }
  .services-section .service-card .service-overlay-logo {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
  .services-section .service-card .service-title {
    color: #FFFFFF;
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-align: left;
  }
  .services-section .service-card .service-logo {
    max-width: 180px;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
  }
  .services-section .service-card .btn-service {
    background-color: #EB0A1E;
    color: #FFFFFF;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
  }
  .services-section .service-card .btn-service:hover {
    background-color: rgb(186.0816326531, 7.9183673469, 23.7551020408);
  }
  .services-section .service-card .btn-service-arrow {
    background-color: #EB0A1E;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-top: auto;
  }
  .services-section .service-card .btn-service-arrow:hover {
    background-color: rgb(186.0816326531, 7.9183673469, 23.7551020408);
  }
  .services-section .service-card .btn-service-arrow i {
    font-size: 24px;
  }
  .services-section .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
  .form-section {
    padding: 80px 0;
    background-color: #EFEFEF;
  }
  .form-section .row {
    align-items: stretch;
  }
  .form-section .form-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }
  .form-section .form-label {
    font-size: 14px;
    font-weight: 700;
    color: #EB0A1E;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  .form-section .form-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .form-section .form-description {
    font-size: 18px;
    color: #6B6B6B;
    margin-bottom: 35px;
    line-height: 1.6;
  }
  .form-section .form-description br {
    display: block;
  }
  .form-section .contact-form input.form-control {
    height: 50px;
  }
  .form-section .contact-form .form-control,
  .form-section .contact-form .form-select {
    border: 2px solid #D0D0D0;
    background-color: #FFFFFF;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    color: #000000;
    transition: border-color 0.3s ease;
  }
  .form-section .contact-form .form-control:focus,
  .form-section .contact-form .form-select:focus {
    border-color: #EB0A1E;
    box-shadow: none;
    background-color: #FFFFFF;
    outline: none;
  }
  .form-section .contact-form .form-control::placeholder,
  .form-section .contact-form .form-select::placeholder {
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
  }
  .form-section .contact-form .form-control option,
  .form-section .contact-form .form-select option {
    color: #000000;
  }
  .form-section .contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    appearance: none;
    padding-right: 40px;
  }
  .form-section .contact-form .btn-submit {
    width: 100%;
    background-color: #EB0A1E;
    color: #FFFFFF;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    height: 50px;
    transition: all 0.3s ease;
  }
  .form-section .contact-form .btn-submit:hover {
    background-color: rgb(195.8653061224, 8.3346938776, 25.0040816327);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 10, 30, 0.3);
  }
  .form-section .contact-form .form-check-recaptcha {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: #F9F9F9;
    border: 2px solid #D0D0D0;
    border-radius: 6px;
    margin-top: 10px;
  }
  .form-section .contact-form .form-check-recaptcha .recaptcha-checkbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .form-section .contact-form .form-check-recaptcha .recaptcha-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    flex: 1;
  }
  .form-section .contact-form .form-check-recaptcha .recaptcha-label i {
    font-size: 20px;
    color: #000000;
  }
  .form-section .contact-form .form-check-recaptcha .recaptcha-label span {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
  }
  .form-section .contact-form .form-check-recaptcha .recaptcha-logo {
    flex-shrink: 0;
  }
  .form-section .contact-form .form-check-recaptcha .recaptcha-logo img {
    width: 32px;
    height: auto;
  }
  .form-section .map-container {
    position: relative;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  .form-section .map-container iframe {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .form-section .map-container .map-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: #EB0A1E;
    border-radius: 50%;
    z-index: 2;
    opacity: 0.9;
    pointer-events: none;
  }
  .form-section .map-container .map-card {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 3;
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    pointer-events: none;
  }
  .form-section .map-container .map-card .map-card-image {
    width: 200px;
    height: 150px;
  }
  .form-section .map-container .map-card .map-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 0 40px;
  }
  .footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  .footer .footer-logo-section {
    flex-shrink: 0;
  }
  .footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .footer .toyota-logo-box {
    width: 60px;
    height: 60px;
    background-color: #EB0A1E;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .toyota-logo-box .toyota-icon {
    width: 40px;
    height: auto;
  }
  .footer .footer-brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 2px;
  }
  .footer .footer-nav {
    display: flex;
    gap: 35px;
    align-items: center;
  }
  .footer .footer-nav a {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer .footer-nav a:hover {
    color: #EB0A1E;
  }
  .footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 40px 0;
  }
  .footer .footer-middle {
    margin-bottom: 50px;
  }
  .footer .footer-address {
    max-width: 600px;
  }
  .footer .footer-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
  }
  .footer .footer-address-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
  }
  .footer .footer-privacy-link {
    margin-top: 14px;
    font-size: 15px;
  }
  .footer .footer-address-text br {
    display: block;
  }
  .footer .footer-schedule {
    margin-bottom: 50px;
  }
  .footer .schedule-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
  }
  .footer .schedule-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
  }
  .footer .schedule-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }
  .footer .schedule-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    line-height: 1.5;
  }
  .footer .schedule-time:last-child {
    margin-bottom: 0;
  }
  .footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer .footer-premier .premier-logo {
    height: 60px;
    width: auto;
  }
  .footer .footer-social-section {
    text-align: right;
  }
  .footer .footer-social-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
  }
  .footer .footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
  }
  .footer .footer-social a {
    width: 45px;
    height: 45px;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .footer .footer-social a:hover {
    background-color: #EB0A1E;
    color: #FFFFFF;
    transform: scale(1.1);
  }
  .footer .footer-social a i {
    font-size: 18px;
  }
  .service-hero {
    min-height: 82vh;
  }
  .service-hero-overlay {
    padding: 95px 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.44) 50%, rgba(0, 0, 0, 0.16) 100%);
  }
  .service-hero-content {
    max-width: 58%;
  }
  .service-hero-kicker {
    font-size: 1.65rem;
  }
  .service-hero-title {
    font-size: clamp(2.8rem, 3.4vw, 3.9rem);
    margin-bottom: 16px;
  }
  .service-hero-description {
    font-size: 1.2rem;
    max-width: 680px;
    line-height: 1.32;
  }
  .service-hero-social {
    right: 36px;
    bottom: 34px;
  }
  .service-hero-social-toggle,
  .service-hero-social-item {
    width: 56px;
    height: 56px;
  }
  .service-hero-social-items {
    bottom: 74px;
    gap: 14px;
  }
  .service-hero-social-item i,
  .service-hero-social-toggle i {
    font-size: 1.35rem;
  }
  .service-assurance {
    padding: 54px 0;
  }
  .service-assurance-logo {
    width: 108px;
    margin-bottom: 20px;
  }
  .service-assurance-text {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }
  .service-assurance-highlight {
    font-size: 1.28rem;
    line-height: 1.35;
  }
  .service-payment-options {
    padding: 60px 0 48px;
  }
  .service-payment-head {
    margin-bottom: 18px;
  }
  .service-payment-head h2 {
    font-size: 1.64rem;
    line-height: 1.12;
  }
  .service-payment-head h2 span {
    font-size: 1.32em;
  }
  .service-payment-whatsapp {
    padding: 10px 18px;
    font-size: 0.98rem;
  }
  .service-payment-grid {
    gap: 14px;
  }
  .service-payment-card {
    padding: 16px 18px;
    min-height: 132px;
  }
  .service-payment-card h3 {
    font-size: 1.32rem;
  }
  .service-payment-card p,
  .service-payment-card ul {
    font-size: 1.02rem;
  }
  .service-payment-feature-card {
    width: 84%;
    max-width: 820px;
    padding: 24px 34px 22px;
  }
  .service-payment-feature-card h3 {
    font-size: 1.66rem;
  }
  .service-payment-feature-copy,
  .service-payment-feature-title {
    font-size: 1.06rem;
  }
  .service-payment-banks-image {
    width: min(100%, 570px);
    margin-top: 14px;
  }
  .service-payment-feature-footer {
    margin-top: 10px;
    font-size: 0.94rem;
  }
  .service-price-list {
    padding-bottom: 56px;
  }
  .service-price-list-wrap {
    max-width: 1020px;
  }
  .service-price-card {
    margin-bottom: 16px;
  }
  .service-booking {
    padding: 22px 0 72px;
  }
  .service-booking-card {
    width: 84%;
    max-width: 820px;
    padding: 36px 40px 34px;
    border-radius: 10px;
  }
  .service-booking-head h2 {
    font-size: 1.86rem;
  }
  .service-booking-head p {
    font-size: 0.95rem;
  }
  .service-form-grid {
    gap: 12px;
  }
  .service-field input,
  .service-field select,
  .service-field textarea {
    font-size: 1.02rem;
  }
  .service-fake-recaptcha {
    max-width: 372px;
  }
  .service-consent-box {
    border-radius: 12px;
    padding: 22px 30px 24px;
  }
  .service-consent-check {
    margin-bottom: 22px;
  }
  .service-consent-check span {
    font-size: 0.98rem;
    line-height: 1.34;
  }
  .service-booking-submit {
    min-width: 224px;
    font-size: 0.92rem;
    padding: 14px 30px;
  }
  .thanks-section {
    padding: 68px 0 84px;
  }
  .thanks-title {
    font-size: 3.2rem;
  }
  .thanks-text {
    font-size: 1.2rem;
  }
  .thanks-close-btn {
    padding: 14px 28px;
    font-size: 0.94rem;
  }
  .finance-plans-highlight {
    padding: 52px 0 58px;
  }
  .finance-plans-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
  }
  .finance-plans-copy h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    max-width: 410px;
  }
  .finance-plans-media {
    justify-self: end;
  }
  .finance-plans-image {
    max-width: 680px;
    border-radius: 14px;
  }
  .finance-products {
    padding: 44px 0 50px;
  }
  .finance-products-title {
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.16;
    max-width: 700px;
  }
  .finance-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .finance-product-card {
    font-size: 18px;
    min-height: 286px;
    padding: 18px 14px 14px;
  }
  .finance-product-card h3 {
    font-size: 1.55rem;
    margin-bottom: 12px;
    min-height: 3.25rem;
  }
  .finance-product-card h3::after {
    width: 50px;
  }
  .finance-product-card p {
    font-size: 18px;
    line-height: 1.3;
  }
  .finance-product-btn {
    min-width: 146px;
    font-size: 16px;
    padding: 10px 20px;
  }
  .finance-section {
    padding: 58px 0 58px;
  }
  .finance-layout {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 42px;
    align-items: start;
  }
  .finance-kicker {
    font-size: 1rem;
    letter-spacing: 0.9px;
    margin-bottom: 13px;
  }
  .finance-title {
    font-size: 3rem;
    line-height: 1.08;
    margin-bottom: 16px;
    max-width: 560px;
  }
  .finance-description {
    font-size: 1.2rem;
    line-height: 1.45;
    max-width: 520px;
  }
  .finance-benefits-title {
    margin-top: 46px;
    margin-bottom: 22px;
    font-size: 2.1rem;
  }
  .finance-benefits-list {
    gap: 22px;
  }
  .finance-benefits-list li {
    gap: 13px;
  }
  .finance-benefits-list img {
    width: 28px;
    height: 28px;
    margin-top: 2px;
  }
  .finance-benefits-list p {
    font-size: 1.25rem;
    line-height: 1.26;
  }
  .finance-form-column {
    gap: 18px;
  }
  .finance-logo {
    width: 140px;
    margin-top: -58px;
  }
  .finance-card {
    border-radius: 14px;
    padding: 28px 26px 26px;
  }
  .finance-card h3 {
    font-size: 2.15rem;
    line-height: 1.08;
    margin-bottom: 14px;
  }
  .finance-form-grid {
    gap: 10px 14px;
  }
  .finance-form-field label {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }
  .finance-form-field input,
  .finance-form-field select {
    font-size: 1rem;
    padding-bottom: 3px;
  }
  .finance-check {
    margin-top: 14px;
    gap: 10px;
  }
  .finance-check span {
    font-size: 0.7rem;
    line-height: 1.24;
  }
  .consent-check {
    padding: 15px 14px;
    border-radius: 12px;
  }
  .finance-submit-btn {
    width: 172px;
    height: 42px;
    font-size: 0.8rem;
    margin-top: 18px;
  }
  .finance-closing {
    margin-top: 48px;
    font-size: 2.75rem;
    line-height: 1.06;
  }
  .refacciones-hero {
    min-height: 72vh;
  }
  .refacciones-hero-overlay {
    padding: 78px 0 70px;
    background: linear-gradient(90deg, rgba(2, 9, 22, 0.82) 0%, rgba(2, 9, 22, 0.58) 48%, rgba(2, 9, 22, 0.35) 100%);
  }
  .refacciones-hero-content {
    max-width: 56%;
  }
  .refacciones-hero-kicker {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .refacciones-hero-title {
    font-size: clamp(2.45rem, 3.2vw, 3.35rem);
    line-height: 1.08;
    margin-bottom: 14px;
    max-width: 640px;
  }
  .refacciones-hero-description {
    font-size: 1.1rem;
    line-height: 1.3;
    max-width: 650px;
  }
  .lifestyle-products {
    padding: 50px 0 52px;
  }
  .lifestyle-head {
    margin-bottom: 26px;
  }
  .lifestyle-title {
    font-size: 2.75rem;
    margin-bottom: 12px;
  }
  .lifestyle-text {
    font-size: 1.02rem;
    line-height: 1.36;
    max-width: 740px;
    margin-bottom: 12px;
  }
  .lifestyle-text-strong {
    max-width: 740px;
  }
  .lifestyle-products .lifestyle-gallery .galeria-contenedor {
    gap: 18px;
  }
  .lifestyle-products .lifestyle-gallery .tarjeta {
    flex: 0 0 calc(33.333% - 12px);
    max-width: calc(33.333% - 12px);
    height: 418px;
    border-radius: 14px;
  }
  .lifestyle-products .lifestyle-gallery .tarjeta .lifestyle-card-btn {
    min-width: 164px;
    margin-bottom: 22px;
    padding: 11px 22px;
    font-size: 0.86rem;
  }
  .lifestyle-products .lifestyle-gallery .lifestyle-gallery-controls {
    margin-top: 14px;
  }
  .lifestyle-products .lifestyle-gallery .barra-progreso {
    height: 3px;
    background-color: #6f6f6f;
    width: 96%;
  }
  .lifestyle-products .lifestyle-gallery .barra-progreso .barra {
    background-color: #3f3f3f;
  }
  .lifestyle-products .lifestyle-gallery .flecha {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .lifestyle-products .lifestyle-gallery .flecha.izquierda {
    margin-left: 0;
  }
  .lifestyle-products .lifestyle-gallery .flecha.derecha {
    margin-left: 12px;
  }
  .model-showcase {
    padding: 0;
  }
  .model-showcase .container {
    max-width: 100%;
    padding: 0;
  }
  .technology-layout {
    min-height: 660px;
  }
  .technology-media {
    min-height: 660px;
  }
  .technology-content {
    padding: 84px 94px 84px 82px;
  }
  .technology-kicker {
    font-size: 0.9rem;
    margin-bottom: 18px;
    letter-spacing: 0.13em;
  }
  .technology-title {
    font-size: 3.7rem;
    line-height: 1.04;
    margin-bottom: 22px;
  }
  .technology-description {
    max-width: 620px;
    font-size: 1.16rem;
    line-height: 1.44;
  }
  .model-gallery {
    padding: 54px 0 64px;
  }
  .model-gallery-head {
    margin-bottom: 24px;
  }
  .model-gallery-title {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .model-gallery-description {
    font-size: 1.15rem;
  }
  .model-gallery-grid {
    gap: 14px;
  }
  .model-gallery-item {
    border-radius: 12px;
  }
  .model-static-feature {
    padding: 48px 0;
  }
  .model-static-feature-layout {
    min-height: 610px;
  }
  .model-static-feature-media {
    min-height: 610px;
  }
  .model-static-feature-content {
    padding: 70px 88px;
  }
  .model-static-feature-kicker {
    font-size: 0.96rem;
    margin-bottom: 18px;
  }
  .model-static-feature-title {
    font-size: 3.7rem;
    margin-bottom: 28px;
  }
  .model-static-feature-technology .model-static-feature-title {
    font-size: 2.85rem;
    line-height: 1.12;
  }
  .model-static-feature-interior .model-static-feature-title {
    font-size: 3rem;
    line-height: 1.12;
  }
  .model-static-feature-technology .model-static-feature-layout,
  .model-static-feature-technology .model-static-feature-media {
    min-height: 70vh;
    height: 70vh;
  }
  .model-static-feature-description {
    font-size: 1.12rem;
    line-height: 1.48;
  }
  .model-security {
    padding: 50px 0 58px;
  }
  .security-head {
    margin-bottom: 28px;
  }
  .security-title {
    font-size: 3.2rem;
    margin-bottom: 14px;
  }
  .security-description {
    font-size: 1.12rem;
    max-width: 930px;
  }
  .security-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.8fr);
    gap: 18px;
  }
  .security-side-card {
    border-radius: 18px;
    padding: 50px 38px 42px;
  }
  .security-side-title {
    font-size: 1.7rem;
    margin-bottom: 32px;
  }
  .security-feature-item {
    font-size: 1.1rem;
    padding: 16px 0 16px 32px;
  }
  .security-feature-item::before {
    top: 18px;
  }
  .security-slide {
    border-radius: 18px;
  }
  .security-slide-image-wrap {
    height: 486px;
  }
  .security-slide-copy {
    padding: 26px 34px 30px;
  }
  .security-slide-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  .security-slider-controls {
    margin-top: 18px;
    gap: 20px;
  }
  .security-progress {
    height: 1px;
  }
  .security-nav-buttons {
    gap: 12px;
  }
  .security-nav-btn {
    width: 48px;
    height: 48px;
    font-size: 1.04rem;
  }
  .security-note {
    margin-top: 20px;
    font-size: 0.86rem;
  }
  .model-security-compact {
    padding: 26px 0 30px;
  }
  .model-security-compact .security-head {
    margin-bottom: 22px;
  }
  .model-security-compact .security-kicker {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }
  .model-security-compact .security-title {
    font-size: clamp(2.3rem, 3.7vw, 3rem);
    margin-bottom: 10px;
  }
  .model-security-compact .security-description {
    font-size: 0.9rem;
    max-width: 760px;
  }
  .model-security-compact .security-layout {
    gap: 16px;
  }
  .model-security-compact .security-side-card {
    padding: 26px 28px;
  }
  .model-security-compact .security-side-title {
    font-size: 1.16rem;
    margin-bottom: 18px;
  }
  .model-security-compact .security-feature-item {
    font-size: 0.82rem;
    line-height: 1.28;
    padding: 10px 0 10px 26px;
  }
  .model-security-compact .security-feature-item::before {
    top: 10px;
  }
  .model-security-compact .security-slide-image-wrap {
    height: clamp(280px, 38vh, 360px);
  }
  .model-security-compact .security-slide-copy {
    min-height: 78px;
    padding: 18px 28px;
  }
  .model-security-compact .security-slide-title {
    font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  }
  .model-security-compact .security-slide-description {
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.32;
  }
  .model-security-compact .security-slider-controls {
    margin-top: 12px;
  }
  .model-security-compact .security-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }
  .model-security-compact .security-note {
    margin-top: 14px;
    font-size: 0.76rem;
  }
  .model-economy-layout {
    min-height: 650px;
  }
  .model-economy-media {
    min-height: 650px;
  }
  .model-economy-content {
    padding: 70px 72px 70px 58px;
  }
  .model-economy-kicker {
    font-size: 0.96rem;
    margin-bottom: 18px;
  }
  .model-economy-title {
    font-size: 3.35rem;
    margin-bottom: 22px;
  }
  .model-economy-description {
    font-size: 1.12rem;
    line-height: 1.48;
  }
  .model-economy-card {
    margin-top: 70px;
    border-radius: 20px;
  }
  .model-economy-card-head {
    padding: 34px 30px 24px;
    font-size: 1.42rem;
  }
  .model-economy-row {
    margin: 0 30px;
    padding: 34px 0;
  }
  .model-economy-row strong {
    font-size: 2.95rem;
  }
  .model-economy-card-single .model-economy-row {
    padding-bottom: 38px;
  }
  .model-design-collage {
    padding: 42px 0 46px;
  }
  .model-design-collage .container {
    max-width: 1280px;
  }
  .model-design-collage-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    grid-template-rows: 220px 230px 310px;
    gap: 28px;
  }
  .model-design-collage-kicker {
    font-size: 1.02rem;
    margin-bottom: 24px;
  }
  .model-design-collage-title {
    font-size: 4.3rem;
    margin-bottom: 20px;
  }
  .model-design-collage-description {
    max-width: 610px;
    font-size: 1rem;
    line-height: 1.45;
  }
  .model-design-collage-image-main {
    min-height: 568px;
  }
  .model-design-collage-image-top {
    min-height: 330px;
  }
  .model-design-collage-image-bottom {
    min-height: 310px;
  }
  .model-innovation {
    padding: 62px 0 74px;
  }
  .model-innovation .container {
    max-width: 1280px;
  }
  .model-innovation-head {
    margin-bottom: 46px;
  }
  .model-innovation-kicker {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }
  .model-innovation-title {
    max-width: 820px;
    font-size: 3.45rem;
  }
  .model-innovation-grid {
    gap: 30px;
    max-width: 780px;
  }
  .model-innovation-copy h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  .model-innovation-copy p {
    font-size: 0.94rem;
    line-height: 1.38;
  }
  .model-financing-cta {
    padding: 44px 0 46px;
    background-image: linear-gradient(98deg, #000 0%, #000 50%, rgba(0, 0, 0, 0) 61%), url("../img/financiamiento-cta.png");
  }
  .model-financing-cta-content {
    max-width: 580px;
  }
  .model-financing-cta-kicker {
    font-size: 0.96rem;
    margin-bottom: 10px;
  }
  .model-financing-cta-title {
    font-size: 3.45rem;
    margin-bottom: 18px;
  }
  .model-financing-cta-description {
    font-size: 1.08rem;
    margin-bottom: 24px;
    max-width: 560px;
  }
  .model-financing-cta-btn {
    min-width: 150px;
    min-height: 46px;
    font-size: 0.88rem;
  }
  .model-versions {
    padding: 54px 0 62px;
  }
  .model-versions-head {
    margin-bottom: 28px;
  }
  .model-versions-title {
    font-size: 2.95rem;
  }
  .model-versions-track {
    gap: 18px;
  }
  .model-version-card {
    flex-basis: calc((100% - 36px) / 3);
  }
  .model-version-card {
    border-radius: 18px;
  }
  .model-version-card-media {
    height: 275px;
    padding: 24px;
  }
  .model-version-card-body {
    padding: 0 24px 24px;
  }
  .model-version-card-title {
    font-size: 1.72rem;
  }
  .model-version-card-price {
    font-size: 1.35rem;
  }
  .model-version-card-separator {
    margin: 14px 0 14px;
  }
  .model-version-card-features {
    margin-bottom: 0;
  }
  .model-version-card-features li {
    margin-bottom: 6px;
    font-size: 1.04rem;
  }
  .model-banner {
    height: 85vh;
    min-height: 85vh;
  }
  .model-banner-content {
    max-width: 720px;
  }
  .model-banner-kicker {
    margin-bottom: 12px;
    font-size: 1.25rem;
  }
  .model-banner-title {
    margin-bottom: 14px;
    font-size: 4.3rem;
  }
  .model-banner-description {
    font-size: 1.45rem;
    max-width: 620px;
  }
  .model-banner-scroll-indicator {
    bottom: 24px;
  }
  .showcase-shell {
    border: 1px solid #bdbdbd;
    border-left: 0;
    border-right: 0;
    grid-template-columns: minmax(0, 72%) minmax(0, 28%);
  }
  .showcase-main {
    padding: 36px 56px 28px;
  }
  .showcase-title {
    font-size: 3rem;
    margin-bottom: 6px;
  }
  .showcase-subtitle {
    font-size: 1.15rem;
  }
  .showcase-preview-row {
    margin-bottom: 16px;
  }
  .showcase-nav-btn {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }
  .showcase-nav-btn:hover {
    background-color: #2a2a2a;
    transform: translateY(-1px);
  }
  .showcase-preview {
    min-height: 600px;
  }
  .showcase-preview img {
    max-height: 480px;
    max-width: 88%;
  }
  .showcase-copy-title {
    font-size: 1.95rem;
  }
  .showcase-copy-text {
    font-size: 1.1rem;
  }
  .showcase-tech-btn {
    min-width: 170px;
    min-height: 46px;
    font-size: 0.8rem;
  }
  .showcase-versions-title {
    margin-bottom: 10px;
    font-size: 1.08rem;
  }
  .showcase-version-name {
    font-size: 2.05rem;
    margin-bottom: 8px;
  }
  .showcase-version-price {
    font-size: 1.2rem;
  }
  .showcase-colors {
    padding: 28px 20px;
    border-color: #bdbdbd;
  }
  .showcase-colors-title {
    margin-bottom: 16px;
    font-size: 1.5rem;
  }
  .showcase-color-item {
    gap: 12px;
    padding: 6px 2px;
  }
  .showcase-color-swatch {
    width: 36px;
    height: 36px;
  }
  .showcase-color-label {
    font-size: 1.05rem;
  }
  .model-performance {
    padding: 46px 0 52px;
  }
  .model-performance .container {
    max-width: 980px;
  }
  .performance-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
  }
  .performance-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 10px;
  }
  .performance-subtitle {
    font-size: 1.02rem;
    line-height: 1.25;
  }
  .performance-download-btn {
    min-width: 240px;
    min-height: 50px;
    padding: 12px 26px;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }
  .performance-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 46px;
  }
  .performance-card {
    border-radius: 10px;
    min-height: 326px;
    padding: 36px 28px 24px;
  }
  .performance-card-label {
    min-height: 60px;
    font-size: 1.16rem;
    line-height: 1.2;
  }
  .performance-value {
    margin-top: 40px;
    gap: 8px;
  }
  .performance-value-number {
    font-size: 4.95rem;
    line-height: 0.9;
  }
  .performance-value-unit {
    font-size: 2.22rem;
    line-height: 0.95;
  }
  .performance-value-single {
    margin-top: 42px;
    font-size: 5.05rem;
    line-height: 0.9;
  }
  .performance-card-line {
    max-width: 224px;
  }
  .performance-fuel-title {
    margin-bottom: 22px;
    font-size: 3.08rem;
    line-height: 1;
  }
  .performance-fuel-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0;
  }
  .performance-fuel-item {
    font-size: 1.12rem;
    line-height: 1.2;
    padding: 6px 26px;
    border-top: 0;
    border-right: 1px solid #d2d2d2;
  }
  .performance-fuel-item:last-child {
    border-right: 0;
  }
  .refacciones-form-section {
    padding: 20px 0 70px;
  }
  .refacciones-form-card {
    max-width: 760px;
    border-radius: 10px;
    padding: 36px 34px 30px;
  }
  .refacciones-form-title {
    font-size: 2.2rem;
    margin-bottom: 22px;
  }
  .refacciones-form-label {
    font-size: 0.88rem;
    margin-bottom: 10px;
  }
  .refacciones-form-grid {
    gap: 10px 14px;
    margin-bottom: 16px;
  }
  .refacciones-form-field input,
  .refacciones-form-field select,
  .refacciones-form-field textarea {
    font-size: 0.96rem;
    min-height: 42px;
    padding: 10px 12px;
  }
  .refacciones-form-field textarea {
    min-height: 100px;
  }
  .refacciones-form-check span {
    font-size: 0.79rem;
  }
  .refacciones-check-privacy {
    margin: 4px 0 14px;
  }
  .refacciones-check-consent {
    padding: 13px 15px;
    margin-bottom: 16px;
  }
  .refacciones-form-submit {
    min-width: 210px;
    font-size: 0.8rem;
    padding: 13px 22px;
  }
  .directory-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px 18px;
  }
}
@media (min-width: 1200px) {
  .header-main .navbar {
    padding: 0 40px;
  }
  .header-main .navbar-brand .logo {
    height: 50px;
  }
  .header-main .navbar-nav {
    gap: 8px;
  }
  .header-main .navbar-nav .nav-item .nav-link {
    padding: 12px 22px;
    font-size: 1rem;
  }
  .header-main .header-actions {
    gap: 15px;
  }
  .header-main .header-actions .btn {
    padding: 13px 28px;
    font-size: 1rem;
  }
  .hero-section {
    height: auto;
    min-height: 0;
  }
  .hero-section .hero-text {
    max-width: 600px;
  }
  .hero-section .hero-label {
    padding: 8px 22px;
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .hero-section .hero-title {
    font-size: 84px;
    margin-bottom: 15px;
  }
  .hero-section .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .hero-section .btn-hero {
    padding: 18px 45px;
    font-size: 1.125rem;
  }
  .hero-section .hero-prev,
  .hero-section .hero-next {
    width: 55px;
    height: 55px;
  }
  .hero-section .hero-prev i,
  .hero-section .hero-next i {
    font-size: 1.25rem;
  }
  .hero-section .hero-prev {
    left: 40px;
  }
  .hero-section .hero-next {
    right: 40px;
  }
  .hero-section .hero-social {
    right: 40px;
    gap: 20px;
  }
  .hero-section .hero-social a {
    width: 50px;
    height: 50px;
  }
  .hero-section .hero-social a i {
    font-size: 1.25rem;
  }
  .hero-section .hero-pagination {
    bottom: 50px;
    gap: 16px;
  }
  .hero-section .hero-pagination .dot {
    width: 14px;
    height: 14px;
  }
  .hero-section .hero-pagination .dot.active {
    width: 45px;
  }
  .contact-center {
    padding: 50px 0;
  }
  .contact-center .section-title {
    font-size: 48px;
    margin-bottom: 30px;
  }
  .contact-center .contact-description {
    font-size: 1.25rem;
    margin-bottom: 60px;
  }
  .contact-center .contact-items {
    max-width: 1300px;
    margin: 0 auto 50px;
  }
  .contact-center .contact-item i {
    font-size: 56px;
    margin-bottom: 20px;
  }
  .contact-center .contact-item p {
    font-size: 1rem;
  }
  .contact-center .contact-social {
    gap: 25px;
  }
  .contact-center .contact-social a {
    width: 55px;
    height: 55px;
  }
  .contact-center .contact-social a i {
    font-size: 1.5rem;
  }
  .promotions-section {
    padding: 50px 0;
  }
  .promotions-section .section-title {
    font-size: 48px;
    margin-bottom: 18px;
  }
  .promotions-section .section-subtitle {
    font-size: 1.25rem;
  }
  .promotions-section .promotions-carousel {
    max-width: 1500px;
    padding: 0 70px;
  }
  .promotions-section .carousel-track {
    gap: 35px;
  }
  .promotions-section .promo-card {
    flex: 0 0 calc(25% - 27px);
    max-width: calc(25% - 27px);
  }
  .promotions-section .promo-card .promo-special {
    padding: 60px 40px;
  }
  .promotions-section .promo-card .promo-special .promo-logo {
    width: 140px;
    margin-bottom: 25px;
  }
  .promotions-section .promo-card .promo-special h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .promotions-section .promo-card .promo-special .promo-vehicle {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .promotions-section .promo-card .promo-special .promo-price {
    margin-bottom: 25px;
  }
  .promotions-section .promo-card .promo-special .promo-price .price-label {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  .promotions-section .promo-card .promo-special .promo-price .price-value {
    font-size: 56px;
  }
  .promotions-section .promo-card .promo-badge {
    top: 30px;
    right: 30px;
    padding: 15px 30px;
    font-size: 1.5rem;
  }
  .promotions-section .promo-card .btn-promo,
  .promotions-section .promo-card .btn-promo-dark {
    padding: 16px 40px;
    font-size: 1.125rem;
  }
  .promotions-section .carousel-prev,
  .promotions-section .carousel-next {
    width: 55px;
    height: 55px;
  }
  .promotions-section .carousel-prev i,
  .promotions-section .carousel-next i {
    font-size: 1.25rem;
  }
  .promotions-section .carousel-prev {
    left: 20px;
  }
  .promotions-section .carousel-next {
    right: 20px;
  }
  .models-section {
    padding: 50px 0;
  }
  .models-section .models-header {
    margin-bottom: 60px;
  }
  .models-section .section-title {
    font-size: 48px;
    margin-bottom: 40px;
  }
  .models-section .models-tabs {
    gap: 15px;
  }
  .models-section .models-tabs .nav-link {
    padding: 16px 30px;
    font-size: 1.125rem;
  }
  .models-section .model-card .model-image {
    height: 260px;
  }
  .models-section .model-card .model-info {
    padding: 35px;
  }
  .models-section .model-card .model-name {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .models-section .model-card .model-price {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  .models-section .model-card .model-actions {
    gap: 12px;
  }
  .models-section .model-card .btn-model {
    padding: 16px 35px;
    font-size: 1.125rem;
  }
  .models-section .model-card .btn-icon {
    width: 55px;
    height: 55px;
  }
  .models-section .model-card .btn-icon i {
    font-size: 1.25rem;
  }
  .services-section {
    padding: 100px 0;
  }
  .services-section .services-header {
    padding: 0 60px;
    margin-bottom: 60px;
  }
  .services-section .section-title {
    font-size: 48px;
    margin-bottom: 30px;
  }
  .services-section .services-description {
    font-size: 1.25rem;
  }
  .services-section .service-card {
    height: 500px;
  }
  .services-section .service-card .service-overlay {
    padding: 40px;
  }
  .services-section .service-card .service-overlay h3 {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .services-section .service-card .service-overlay .service-logo {
    max-width: 160px;
  }
  .services-section .service-card .btn-service {
    padding: 16px 35px;
    font-size: 1.125rem;
  }
  .form-section {
    padding: 100px 0;
  }
  .form-section .form-title {
    font-size: 48px;
    margin-bottom: 25px;
  }
  .form-section .form-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
  .form-section .contact-form .form-check .form-check-input {
    width: 24px;
    height: 24px;
  }
  .form-section .contact-form .form-check .form-check-label {
    font-size: 1.125rem;
    margin-left: 12px;
  }
  .form-section .contact-form .btn-submit {
    padding: 18px 60px;
    font-size: 1.125rem;
  }
  .form-section .map-container {
    min-height: 650px;
  }
  .form-section .map-container .map-info {
    bottom: 40px;
    left: 40px;
    padding: 25px 35px;
  }
  .form-section .map-container .map-info i {
    font-size: 32px;
  }
  .form-section .map-container .map-info p {
    font-size: 1.125rem;
  }
  .footer {
    padding: 100px 0 50px;
  }
  .footer .footer-logo {
    width: 180px;
    margin-bottom: 30px;
  }
  .footer .footer-info h4 {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }
  .footer .footer-info p {
    font-size: 1.125rem;
  }
  .footer .footer-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
  .footer .footer-links li,
  .footer .footer-schedule li {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
  .footer .footer-divider {
    margin: 50px 0 35px;
  }
  .footer .footer-bottom .footer-copyright {
    font-size: 1.125rem;
  }
  .footer .footer-bottom .footer-badge {
    width: 170px;
  }
  .footer .footer-bottom .footer-social a {
    width: 50px;
    height: 50px;
  }
  .footer .footer-bottom .footer-social a i {
    font-size: 1.25rem;
  }
}

.model-quote-section {
  background: #dcdcdc;
  padding: 46px 0;
  scroll-margin-top: 110px;
}

.model-quote-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.model-quote-calc {
  background: transparent;
}

.model-quote-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.05;
  color: #222831;
  text-align: center;
  font-weight: 800;
}

.model-quote-field {
  margin-bottom: 16px;
}

.model-quote-label {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #20242b;
}

.model-quote-select,
.model-quote-form-field input,
.model-quote-form-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b8bec8;
  background: #f7f7f7;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 1rem;
  color: #454b54;
}

.model-quote-select:focus,
.model-quote-form-field input:focus,
.model-quote-form-field select:focus {
  outline: none;
  border-color: #a5adba;
  box-shadow: 0 0 0 0.1rem rgba(235, 10, 30, 0.15);
}

.model-quote-slider-wrap {
  margin: 14px 0 16px;
}

.model-quote-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.model-quote-slider-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  background: #eb0a1e;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 7px;
}

.model-quote-range {
  width: 100%;
  accent-color: #eb0a1e;
}

.model-quote-range-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  color: #8f96a0;
  font-size: 0.95rem;
}

.model-quote-down-payment-amount-text {
  margin: 10px 0 0;
  font-size: 0.98rem;
  color: #4a515b;
}

.model-quote-down-payment-amount-text strong {
  color: #232933;
}

.model-quote-estimate {
  margin-top: 22px;
  text-align: center;
}

.model-quote-estimate-label {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #232933;
}

.model-quote-estimate-amount {
  margin: 2px 0 0;
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: #232933;
}

.model-quote-estimate-legal {
  margin: 0 auto 0;
  padding-top: 40px;
  max-width: 760px;
  color: #4a515b;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-line;
  text-align: center;
}

.model-quote-form-card {
  background: #ececec;
  border-radius: 6px;
  border: 1px solid #d6d6d6;
  padding: 22px;
}

.model-quote-form-title {
  margin: 2px 0 16px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.1;
  color: #252b34;
  font-weight: 800;
}

.model-quote-form {
  display: grid;
  gap: 12px;
}

.model-quote-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: #454c55;
}

.model-quote-privacy input {
  margin-top: 4px;
}

.model-quote-privacy a {
  color: #0067cf;
  font-weight: 700;
  text-decoration: none;
}

.model-quote-submit {
  border: 0;
  border-radius: 5px;
  min-height: 54px;
  background: #eb0a1e;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.model-quote-submit:hover {
  background: #cf0018;
}

@media (max-width: 991px) {
  .model-quote-layout {
    grid-template-columns: 1fr;
  }

  .model-quote-title,
  .model-quote-form-title {
    text-align: left;
  }
}
