.home-2026 {
  --home-font-title: "Estricta Black", sans-serif;
  --home-font-subtitle: "Estricta Bold", sans-serif;
  --home-font-ui: "Estricta Regular", sans-serif;
  --home-font-body: "Roboto", sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: var(--home-font-body);
  overflow-x: hidden;
}

.home-section {
  padding: 64px 0;
}

.home-section--products {
  padding-top: 56px;
  padding-bottom: 42px;
}

.home-section--services {
  padding-top: 32px;
}

.home-section--split {
  padding-top: 28px;
}

.home-section--split .container {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.home-section__title {
  margin: 0 0 32px;
  color: #143f90;
  font-family: var(--home-font-title);
  font-size: clamp(2rem, 2.4vw, 3.2rem);
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.home-section__title--products {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 2.2vw, 3rem);
  letter-spacing: 0.035em;
}

.home-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

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

.home-section--news .home-section__title {
  margin-bottom: 26px;
  font-size: clamp(1.9rem, 2.1vw, 2.8rem);
}

.home-section--services .container,
.home-section--news .container {
  max-width: 1360px;
}

.home-section--products .container {
  width: min(calc(100vw - 56px), 1880px);
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.home-hero {
  background: #05070b;
}

.sliderhome {
  position: relative;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  overflow: hidden;
  background: #05070b;
}

.sliderhome.is-empty {
  display: none;
}

.sliderhome::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 5, 11, 0.18) 0%, rgba(2, 5, 11, 0.45) 100%),
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0) 0%,
      rgba(2, 5, 11, 0.32) 100%
    );
  pointer-events: none;
}

.sliderhome .swiper,
.sliderhome .swiper-wrapper,
.sliderhome .swiper-slide,
.sliderhome .swiper-slide > a,
.sliderhome .swiper-slide > picture,
.sliderhome .swiper-slide > picture img,
.sliderhome .swiper-slide > img,
.sliderhome .swiper-slide > video,
.sliderhome .swiper-slide > p {
  width: 100%;
  height: 100%;
}

.sliderhome .swiper {
  min-height: inherit;
}

.sliderhome .swiper-slide {
  min-height: calc(100vh - 70px);
}

.sliderhome .swiper-slide > a {
  position: relative;
  display: block;
}

.sliderhome .swiper-slide > a::after {
  position: absolute;
  left: 50%;
  bottom: 10%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 44px;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.88);
  color: #ffffff;
  content: "Conocé más";
  font-family: var(--home-font-subtitle);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.sliderhome .swiper-slide > a:hover::after,
.sliderhome .swiper-slide > a:focus::after {
  background-color: #143f90;
  transform: translateX(-50%) translateY(-2px);
}

.sliderhome .swiper-slide img,
.sliderhome .swiper-slide video {
  display: block;
  object-fit: cover;
}

.sliderhome .swiper-button-prev,
.sliderhome .swiper-button-next {
  display: none;
}

.home-products-swiper,
.home-services-swiper,
.home-news-swiper {
  overflow: visible;
}

.home-products-swiper {
  position: relative;
}

.home-products-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.home-products-pagination.is-hidden {
  display: none;
}

.home-product-card {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 354px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
  border: 1px solid #ebedf1;
  box-shadow: none;
  opacity: 0;
  will-change: transform, opacity;
}

.home-product-card.is-revealed {
  animation: home-product-enter 1.12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-product-card.is-leaving {
  animation: home-product-exit 1.12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes home-product-enter {
  0% {
    opacity: 0;
    transform: translate3d(78vw, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes home-product-exit {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(78vw, 0, 0);
  }
}

.home-product-card__category {
  display: block;
  margin-bottom: 10px;
  color: #2a57aa;
  font-family: var(--home-font-subtitle);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-product-card__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 168px;
  margin-bottom: 14px;
}

.home-product-card__figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-product-card__image {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.home-product-card__image--placeholder {
  width: 100%;
  min-height: 168px;
  background: linear-gradient(135deg, #f4f4f4 0%, #e9ecef 100%);
  border: 1px solid #d7dce4;
}

.home-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.home-product-card__title {
  margin: 0 0 6px;
  color: #373737;
  font-family: var(--home-font-title);
  font-size: clamp(2.05rem, 1.9vw, 3.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.home-product-card__description {
  min-height: 30px;
  margin: 0 0 12px;
  color: #7f7f7f;
  font-family: var(--home-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.home-product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 6px 12px 5px;
  font-size: 0.95rem;
  border-radius: 2px;
}

.home-product-card__cta span:last-child {
  font-size: 1.15em;
  line-height: 1;
}

.home-slider-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
  padding: 8px 10px 8px 16px;
  background: #ffffff;
  border: 1px solid #d8e1ef;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(20, 63, 144, 0.12);
}

.home-slider-controls.is-hidden {
  display: none;
}

.home-slider-controls__label {
  color: #5d6c86;
  font-family: var(--home-font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-slider-nav {
  display: flex;
  gap: 8px;
}

.home-slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: #143f90;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(20, 63, 144, 0.18);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.home-slider-button:hover,
.home-slider-button:focus {
  background-color: #0d2f6f;
  color: #ffffff;
  transform: translateY(-1px);
}

.home-slider-button.swiper-button-disabled {
  background: #e4eaf4;
  color: #8a97ab;
  pointer-events: none;
  box-shadow: none;
  opacity: 1;
}

.home-slider-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #143f90;
  border-radius: 999px;
  opacity: 0.24;
  transition:
    width 0.25s ease,
    opacity 0.25s ease;
}

.home-slider-pagination .swiper-pagination-bullet-active {
  width: 22px;
  opacity: 1;
}

.home-products-swiper__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #143f90;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.home-products-swiper__arrow.is-hidden {
  display: none;
}

.home-products-swiper__arrow::after {
  font-family: var(--home-font-subtitle);
  font-size: 2.2rem;
  line-height: 1;
}

.home-products-swiper__arrow:hover,
.home-products-swiper__arrow:focus {
  color: #0d2f6f;
}

.home-products-swiper__arrow.swiper-button-disabled {
  opacity: 0.28;
  pointer-events: none;
}

.home-service-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 404px;
  overflow: hidden;
  text-decoration: none;
  opacity: 0;
  transform: translate3d(0, -110px, 0);
  will-change: transform, opacity;
}

.home-service-card.is-revealed {
  animation: home-service-drop 0.82s cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.home-service-card.is-leaving {
  animation: home-service-rise 0.82s cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

@keyframes home-service-drop {
  0% {
    opacity: 0;
    transform: translate3d(0, -110px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes home-service-rise {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -110px, 0);
  }
}

.home-service-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 19, 47, 0.2) 0%,
    rgba(8, 15, 35, 0.78) 100%
  );
}

.home-service-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: 20px 18px;
}

.home-service-card__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--home-font-title);
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.home-service-card__title span {
  display: block;
}

.home-service-card__link {
  align-self: flex-end;
  color: #ffffff;
  font-family: var(--home-font-subtitle);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-service-card:hover .home-service-card__image,
.home-service-card:focus .home-service-card__image {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .home-product-card {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none !important;
  }

  .home-service-card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .home-feature-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-news-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.home-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background-color: #101726;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.16, 0.84, 0.24, 1);
  will-change: transform, opacity;
}

.home-feature-card::before {
  position: absolute;
  inset: 0;
  content: "";
}

.home-feature-card--comparador {
  transform: translate3d(-12vw, 0, 0);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.68) 100%),
    url("/bundles/frontend/img/comparador/home_top_header.jpg");
}

.home-feature-card--dealers {
  transform: translate3d(12vw, 0, 0);
  background-image:
    linear-gradient(
      180deg,
      rgba(8, 26, 79, 0.28) 0%,
      rgba(8, 26, 79, 0.84) 100%
    ),
    url("/bundles/frontend/img/fondo_buscador.jpg");
}

.home-feature-card.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-feature-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 38px clamp(28px, 4vw, 58px);
}

.home-feature-card__intro {
  display: flex;
  flex-direction: column;
}

.home-feature-card__content--comparador {
  justify-content: flex-start;
  max-width: 600px;
  margin: 0px auto;
}

.home-feature-card__content--dealers {
  align-items: flex-start;
  justify-content: flex-start;
}

.home-feature-card__intro--comparador {
  max-width: 400px;
}

.home-feature-card__intro--dealers {
  max-width: 470px;
  margin-bottom: 18px;
}

.home-feature-card__eyebrow {
  margin: 0 0 10px;
  color: #d8dde8;
  font-family: var(--home-font-subtitle);
  font-size: 1.22rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-feature-card__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--home-font-title);
  font-size: clamp(2.4rem, 2.1vw, 3.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.home-feature-card__copy {
  max-width: 360px;
  margin: 0;
  color: #e6e8ed;
  font-family: var(--home-font-body);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-feature-card__cta {
  display: inline-flex;
  align-self: flex-start;
  justify-content: center;
  min-width: 172px;
  margin-top: auto;
  padding: 9px 18px;
}

.home-feature-card__content--comparador .home-feature-card__cta {
  margin-bottom: 32px;
}

.home-dealer-form {
  width: min(100%, 500px);
  margin-top: 6px;
  padding: 34px 30px 32px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 50px rgba(2, 10, 34, 0.18);
}

.home-dealer-form .form-select {
  margin-bottom: 18px;
  color: #8a8a8a;
  font-family: var(--home-font-body);
  font-size: 1.1rem;
}

.home-dealer-form__button {
  min-width: 172px;
  margin-top: 2px;
  padding: 9px 18px;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.home-news-card {
  position: relative;
  overflow: hidden;
  background: #f4f6f8;
  opacity: 0;
  transform: translate3d(0, -90px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.16, 0.84, 0.24, 1);
  will-change: transform, opacity;
}

.home-news-card.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-news-card__media {
  position: relative;
  width: 100%;
}

.home-news-grid .home-news-card__media {
  height: auto;
}

.home-news-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-news-card__media picture img,
.home-news-card__media .home-news-card__image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.home-news-card__image {
  display: block;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-news-card__image--placeholder {
  width: 100%;
  min-height: 0;
  background: linear-gradient(135deg, #eff2f7 0%, #dce2ea 100%);
}

.home-news-grid .home-news-card__image,
.home-news-grid .home-news-card__image--placeholder {
  height: clamp(390px, 33vw, 520px);
}

.home-news-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.94) 100%
  );
  border: 3px solid #1f4ea2;
  color: #15181f;
  transform: translate3d(0, 102%, 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-news-card__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-news-card__bottom {
  margin-top: auto;
}

.home-news-card__title {
  margin: 0;
  max-width: 86%;
  color: #22262c;
  font-family: var(--home-font-subtitle);
  font-size: clamp(1.5rem, 1.4vw, 2rem);
  line-height: 1.04;
}

.home-news-card__meta {
  margin: 0;
  color: #20242b;
  font-family: var(--home-font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-news-card__meta--category {
  color: #20242b;
  font-family: var(--home-font-subtitle);
  font-size: 1.25rem;
}

.home-news-card__action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 0;
  padding: 0;
  margin-top: 22px;
  background: transparent;
  color: #1b1f26;
  font-family: var(--home-font-subtitle);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.home-news-card:hover .home-news-card__action,
.home-news-card:focus-within .home-news-card__action,
.home-news-card__action:hover,
.home-news-card__action:focus {
  color: #143f90;
}

.home-news-card:hover .home-news-card__overlay,
.home-news-card:focus-within .home-news-card__overlay {
  transform: translate3d(0, 0, 0);
}

.home-news-card:hover .home-news-card__image,
.home-news-card:focus-within .home-news-card__image {
  transform: scale(1.03);
}

.home-news-swiper,
.home-progress--mobile {
  display: none;
}

.home-news-card--mobile {
  min-height: 0;
}

.home-news-card--mobile .home-news-card__media {
  height: auto;
}

.home-news-card__panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 16px 18px;
  border: 2px solid #3d68bc;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.64) 0%,
    rgba(255, 255, 255, 0.92) 100%
  );
}

.home-news-card--mobile .home-news-card__image {
  min-height: 0;
  height: 390px;
}

.home-news-card--mobile .home-news-card__image--placeholder {
  height: 390px;
}

.home-progress {
  width: 126px;
  height: 3px;
  margin: 24px auto 0;
  background: #c9c9c9;
}

.home-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: #143f90;
  transition: width 0.3s ease;
}

.home-brand-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.home-brand-ribbon__item {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.home-brand-ribbon__item img {
  max-width: 118px;
  max-height: 42px;
  object-fit: contain;
}

.home-footer-cta {
  padding-top: 28px;
  text-align: center;
}

.home-footer-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  background: #ef2226;
  color: #ffffff !important;
  font-family: var(--home-font-subtitle);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  .home-brand-ribbon {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 22px;
    padding-bottom: 6px;
  }

  .home-brand-ribbon__item {
    flex: none;
    min-width: 118px;
  }
}

@media screen and (max-width: 767px) {
  .home-section {
    padding: 46px 0;
  }

  .home-section--products {
    padding-top: 42px;
    padding-bottom: 30px;
  }

  .home-section--services {
    padding-top: 16px;
  }

  .home-section--split {
    padding-top: 12px;
  }

  .home-section__title {
    margin-bottom: 24px;
    font-size: 2.4rem;
    text-align: center;
  }

  .home-products-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 18px;
  }

  .home-section__title--products {
    font-size: 2.2rem;
    text-align: left;
  }

  .home-section--news .home-section__title {
    font-size: 2.1rem;
  }

  .home-section--products .container {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    box-sizing: border-box;
  }

  .home-section--services .container,
  .home-section--news .container {
    overflow-x: hidden;
  }

  .sliderhome {
    min-height: 470px;
    margin-top: 62px;
  }

  .sliderhome .swiper-slide {
    min-height: 470px;
  }

  .sliderhome .swiper-slide > a::after {
    bottom: 8%;
    min-width: 150px;
    min-height: 40px;
    font-size: 1.2rem;
  }

  .home-product-card {
    min-height: 332px;
    padding: 16px 14px 14px;
  }

  .home-product-card__figure {
    width: 100%;
    min-height: 156px;
    margin-bottom: 12px;
  }

  .home-product-card__image--placeholder {
    min-height: 156px;
  }

  .home-product-card__title {
    font-size: 2.25rem;
  }

  .home-product-card__description {
    min-height: 34px;
    font-size: 0.9rem;
  }

  .home-slider-controls {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px 8px 12px;
  }

  .home-slider-controls__label {
    font-size: 0.76rem;
  }

  .home-slider-pagination {
    flex: 1;
  }

  .home-products-pagination {
    margin-top: 16px;
  }

  .home-slider-button {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }

  .home-products-swiper__arrow {
    width: 32px;
    height: 32px;
  }

  .home-products-swiper__arrow::after {
    font-size: 1.8rem;
  }

  .home-products-swiper__arrow.swiper-button-prev {
    left: -2px;
  }

  .home-products-swiper__arrow.swiper-button-next {
    right: -2px;
  }

  .home-service-card {
    min-height: 238px;
  }

  .home-service-card__content {
    min-height: 238px;
    padding: 14px 12px;
  }

  .home-service-card__title {
    font-size: 1.9rem;
  }

  .home-service-card__link {
    font-size: 1.2rem;
  }

  .home-split-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-feature-card {
    min-height: 440px;
  }

  .home-feature-card--comparador {
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.76) 100%),
      url("/bundles/frontend/img/comparador/home_m_top_header.jpg");
  }

  .home-feature-card--dealers {
    background-image:
      linear-gradient(
        180deg,
        rgba(8, 26, 79, 0.28) 0%,
        rgba(8, 26, 79, 0.84) 100%
      ),
      url("/bundles/frontend/img/fondo_buscador_mobile.jpg");
  }

  .home-feature-card__content {
    padding: 24px 22px;
  }

  .home-feature-card__eyebrow {
    font-size: 0.88rem;
  }

  .home-feature-card__title {
    font-size: 2.2rem;
  }

  .home-feature-card__copy {
    font-size: 1.05rem;
  }

  .home-dealer-form {
    width: 100%;
    margin-top: 20px;
    padding: 22px 18px;
  }

  .home-feature-card__content--comparador .home-feature-card__cta {
    margin-bottom: 22px;
  }

  .home-dealer-form .form-select {
    min-height: 44px;
    margin-bottom: 12px;
    font-size: 1.05rem;
  }

  .home-dealer-form__button {
    width: 100%;
  }

  .home-news-grid {
    display: none;
  }

  .home-news-swiper,
  .home-progress--mobile {
    display: block;
  }

  .home-news-swiper {
    overflow: visible;
  }

  .home-news-card--mobile .home-news-card__media {
    height: auto;
  }

  .home-news-card--mobile .home-news-card__image,
  .home-news-card--mobile .home-news-card__image--placeholder {
    min-height: 0;
    height: 348px;
  }

  .home-news-card__top {
    gap: 6px;
  }

  .home-news-card--mobile .home-news-card__title {
    max-width: none;
    font-size: 1.55rem;
    line-height: 1.15;
  }

  .home-news-card--mobile .home-news-card__meta {
    font-size: 0.95rem;
  }

  .home-news-card--mobile .home-news-card__action {
    font-size: 1rem;
  }

  .footer-top {
    padding: 28px 0;
  }

  .footer-section {
    padding: 42px 0 30px;
  }

  .footer-section .footer-social-icons {
    max-width: none;
    padding-top: 28px;
    justify-content: center;
    gap: 10px;
  }

  .footer-section .legal-imgs {
    justify-content: center;
    gap: 12px;
  }

  .footer-section .legal-imgs-ba {
    align-items: center;
    text-align: center;
  }
}
