* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
}

.navbar {
  background-color: #0a1633;
  padding: 15px 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.navbar-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.brand-highlight {
  color: #3b82f6;
}

.navbar-menu ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

.navbar-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: #3b82f6;
}

.btn-acceso {
  font-family: 'Montserrat', sans-serif;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.btn-acceso:hover {
  background-color: #1d4ed8;
}

.hero {
  position: relative;
  background:
    radial-gradient(
      circle at 78% 45%,
      rgba(19, 74, 139, 0.32) 0%,
      rgba(10, 22, 51, 0.08) 42%,
      transparent 65%
    ),
    linear-gradient(
      135deg,
      #07152d 0%,
      #091a38 48%,
      #071329 100%
    );

  padding: 30px 30px 25px;
  overflow: hidden;
}

/* Resplandor ambiental */

.hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -170px;
  top: -120px;

  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.20) 0%,
    rgba(37, 99, 235, 0.08) 38%,
    transparent 70%
  );

  pointer-events: none;
}


/* CONTENEDOR */

.hero-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1320px;

  min-height: 620px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 46% 54%;

  align-items: center;
}


/* ==================================================
   CONTENIDO IZQUIERDO
   ================================================== */

.hero-content {
  position: relative;
  z-index: 5;

  max-width: 590px;

  padding: 25px 0 10px;
}


/* TEXTO SUPERIOR */

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;

  color: #2997ff;

  font-weight: 700;
  font-size: 13px;

  letter-spacing: 1.2px;
  text-transform: uppercase;

  margin-bottom: 18px;
}


/* TÍTULO */

.hero-title {
  font-family: 'Montserrat', sans-serif;

  font-size: clamp(40px, 4vw, 57px);

  font-weight: 800;

  color: #ffffff;

  line-height: 1.08;

  letter-spacing: -1.5px;

  margin-bottom: 22px;
}


/* SEGUNDO RENGLÓN */

.hero-title-highlight {
  display: inline-block;

  color: #3286f5;

  text-shadow:
    0 0 28px rgba(37, 99, 235, 0.12);
}


/* DESCRIPCIÓN */

.hero-text {
  color: #d5deec;

  font-size: 16px;

  line-height: 1.7;

  max-width: 555px;

  margin-bottom: 28px;
}


/* ==================================================
   BOTONES
   ================================================== */

.hero-buttons {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 32px;
}


/* BOTÓN AZUL */

.btn-primary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  font-family: 'Montserrat', sans-serif;

  background:
    linear-gradient(
      135deg,
      #1788f5 0%,
      #1668e8 100%
    );

  color: #ffffff;

  text-decoration: none;

  padding: 0 30px;

  border-radius: 7px;

  font-weight: 700;

  font-size: 14px;

  box-shadow:
    0 8px 25px rgba(37, 99, 235, 0.25);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}


.btn-primary:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 32px rgba(37, 99, 235, 0.38);
}


/* BOTÓN SECUNDARIO */

.btn-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  font-family: 'Montserrat', sans-serif;

  background: rgba(255,255,255,0.02);

  color: #ffffff;

  text-decoration: none;

  padding: 0 29px;

  border:
    1px solid rgba(255,255,255,0.70);

  border-radius: 7px;

  font-weight: 600;

  font-size: 14px;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}


.btn-secondary:hover {
  background-color:
    rgba(255,255,255,0.08);

  border-color: #ffffff;

  transform: translateY(-2px);
}


/* ==================================================
   BENEFICIOS DEL HERO
   ================================================== */

.hero-features {
  list-style: none;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 12px 24px;

  color: #b9c8da;

  font-size: 13px;
}


.hero-features li {
  display: flex;

  align-items: center;

  white-space: nowrap;
}


.hero-features .check {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: #278cff;

  font-weight: 800;

  font-size: 17px;

  margin-right: 7px;
}


/* ==================================================
   IMAGEN DEL VEHÍCULO
   ================================================== */

.hero-visual {
  position: relative;

  height: 620px;

  align-self: stretch;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  overflow: visible;
}


/* IMAGEN PRINCIPAL */

.hero-car-image {
  position: absolute;

  width: 900px;

  max-width: none;

  height: auto;

  right: -95px;

  top: -10px;

  display: block;

  object-fit: contain;

  filter:
    drop-shadow(
      0 25px 35px
      rgba(0,0,0,0.38)
    );

  /*
     Esta máscara hace que la imagen se funda
     suavemente con el fondo del lado izquierdo.
  */

  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.25) 7%,
      #000 18%,
      #000 100%
    );

  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.25) 7%,
      #000 18%,
      #000 100%
    );
}

.solutions {
  background-color: #f4f7fc;
  padding: 80px 30px;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-header {
  text-align: center;
  margin-bottom: 50px;
}

.solutions-eyebrow {
  font-family: 'Montserrat', sans-serif;
  color: #3b82f6;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.solutions-title {
  font-family: 'Montserrat', sans-serif;
  color: #0a1633;
  font-size: 34px;
  font-weight: 800;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.solution-card {
  background-color: #ffffff;
  border: 1px solid #e5eaf3;
  border-radius: 16px;
  padding: 30px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.solution-card:hover {
  box-shadow: 0 10px 30px rgba(10, 22, 51, 0.08);
  transform: translateY(-4px);
}

.solution-icon {
  width: 60px;
  height: 60px;
  background-color: #eef2fc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.solution-title {
  font-family: 'Montserrat', sans-serif;
  color: #0a1633;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.solution-text {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}
.benefits {
  background: linear-gradient(135deg, #0a1633 0%, #0d1b3f 100%);
  padding: 80px 30px;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-eyebrow {
  font-family: 'Montserrat', sans-serif;
  color: #3b82f6;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.benefits-title {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.benefit-card:hover {
  background-color: rgba(255, 255, 255, 0.09);
}

.benefit-card p {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}
.coverage {
  background-color: #f4f7fc;
  padding: 80px 30px;
}

.coverage-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.coverage-map {
  flex: 1.2;
  min-height: 420px;
  border-radius: 20px;
  background: radial-gradient(circle at center, #a5c4f5 0%, #dce6fb 55%, #eef3fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:transparent;
  
}

.mapa-imagen {
  width: 100%;
  max-width:520px;
  height: auto;
  object-fit: cover;
  display: block;
}

.coverage-content {
  flex: 1;
}

.coverage-eyebrow {
  font-family: 'Montserrat', sans-serif;
  color: #3b82f6;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.coverage-title {
  font-family: 'Montserrat', sans-serif;
  color: #0a1633;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
}

.coverage-text {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 25px;
}

.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.city-badge {
  background-color: #dbe7fd;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 30px;
}
.about{
    background:#fff;
    padding:110px 30px;
}

.about-container{
    max-width:1200px;
    margin:auto;
}

.about-header {
  text-align: center;
  margin-bottom: 70px;
}

.about-eyebrow{
    font-family:'Montserrat',sans-serif;
    color:#3b82f6;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.about-title{
    font-family:'Montserrat',sans-serif;
    color:#0a1633;
    font-size:50px;
    font-weight:800;
    line-height:1.2;
    max-width:1000px;
    margin:0 auto 30px;
}

.about-description{
    max-width:900px;
    margin:0 auto;
    color:#64748b;
    font-size:20px;
    line-height:1.9;
}

.about-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-card{
    background:#f7faff;
    border:1px solid #e7eef9;
    border-radius:20px;
    padding:40px;
    transition:.35s;
    min-height:300px;
}

.about-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(10,22,51,.08);
}

.about-card-title{
    font-family:'Montserrat',sans-serif;
    color:#0a1633;
    font-size:30px;
    font-weight:800;
    margin-bottom:22px;
}

.about-card-text{
    color:#64748b;
    font-size:18px;
    line-height:1.9;
}
.sucursales {
  background-color: #f4f7fc;
  padding: 80px 30px;
}

.sucursales-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sucursales-header {
  text-align: center;
  margin-bottom: 40px;
}

.sucursales-eyebrow {
  font-family: 'Montserrat', sans-serif;
  color: #3b82f6;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sucursales-title {
  font-family: 'Montserrat', sans-serif;
  color: #0a1633;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.sucursales-text {
  color: #64748b;
  font-size: 16px;
}

/* =====================================
   DISTRIBUCIÓN DE SUCURSALES
===================================== */

.sucursales-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "filters espacio"
    "carousel imagen"
    "counter espacio-inferior";
  column-gap: 30px;
  row-gap: 18px;
  align-items: start;
}

/* =====================================
   BOTONES DEL LADO IZQUIERDO
===================================== */

.sucursales-filters {
  grid-area: filters;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
}

.filter-pill {
  padding: 10px 18px;
  border: none;
  border-radius: 30px;
  background-color: #dbe7fd;
  color: #1d4ed8;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
}

.filter-pill:hover {
  background-color: #c3d9fb;
  transform: translateY(-1px);
}

.filter-pill.active {
  background-color: #2563eb;
  color: #ffffff;
}

/* =====================================
   CARRUSEL DEL LADO IZQUIERDO
===================================== */

.sucursales-carousel {
  grid-area: carousel;
  position: relative;
  width: 100%;
  min-width: 0;
}

.sucursales-track {
  width: 100%;
  height: 420px;
  min-width: 0;
}

/* =====================================
   TARJETA DE DIRECCIÓN
===================================== */

.sucursal-card {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: 420px;
  margin: 0;
  padding: 30px 70px;
  overflow-y: auto;
  border: 1px solid #e5eaf3;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 12px 35px rgba(10, 22, 51, 0.08);
  text-align: center;
}

.sucursal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background-color: #eef2fc;
  font-size: 25px;
}

.sucursal-name {
  margin-bottom: 10px;
  color: #0a1633;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.sucursal-state {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 16px;
  border-radius: 20px;
  background-color: #dbe7fd;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 700;
}

.sucursal-address,
.sucursal-city {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

.sucursal-city {
  margin-bottom: 18px;
}

.sucursal-phone {
  display: block;
  margin-bottom: 20px;
  color: #2563eb;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.sucursal-phone:hover {
  text-decoration: underline;
}

.sucursal-phone.no-phone {
  color: #94a3b8;
  font-weight: 400;
}

.sucursal-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: #2563eb;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.sucursal-map-link:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

/* =====================================
   FLECHAS DEL CARRUSEL
===================================== */

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e5eaf3;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0a1633;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(10, 22, 51, 0.1);
  transform: translateY(-50%);
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.carousel-prev {
  left: 14px;
}

.carousel-next {
  right: 14px;
}

.carousel-arrow:hover {
  background-color: #eef2fc;
  transform: translateY(-50%) scale(1.06);
}

/* =====================================
   CONTENEDOR DE IMAGEN DERECHO
===================================== */

.sucursal-promocion {
  grid-area: imagen;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e5eaf3;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 12px 35px rgba(10, 22, 51, 0.08);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.sucursal-promocion:hover {
  box-shadow: 0 18px 45px rgba(10, 22, 51, 0.12);
  transform: translateY(-2px);
}

.sucursal-promocion img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

/* =====================================
   CONTADOR DEL LADO IZQUIERDO
===================================== */

.sucursales-counter {
  grid-area: counter;
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  text-align: center;
}

/* =====================================
   TABLETAS Y CELULARES
===================================== */

@media (max-width: 820px) {
  .sucursales-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "filters"
      "carousel"
      "counter"
      "imagen";
    gap: 18px;
  }

  .sucursales-filters {
    justify-content: center;
  }

  .sucursal-card,
  .sucursales-track,
  .sucursal-promocion {
    height: 400px;
  }
}

.footer {
  background-color: #060a1a;
  padding: 70px 30px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-logo-highlight {
  color: #3b82f6;
}

.footer-text {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-item {
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 15px;
}

.footer-cta {
  background-color: #0f1c3f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
}

.footer-cta-title {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-cta-text {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.footer-cta-btn {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.footer-cta-btn:hover {
  background-color: #1d4ed8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 1024px) {

  /* ==============================
   HERO TABLET
   ============================== */

.hero {
  padding: 50px 25px 35px;
}

.hero-container {
  grid-template-columns: 48% 52%;
  min-height: 510px;
}

.hero-content {
  max-width: 520px;
}

.hero-title {
  font-size: 42px;
}

.hero-text {
  font-size: 15px;
}

.hero-visual {
  height: 510px;
}

.hero-car-image {
  width: 670px;
  right: -100px;
}

  /* Soluciones: de 4 a 2 columnas */
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Beneficios: de 6 a 3 columnas */
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer: de 3 a 2 columnas, la tarjeta CTA ocupa todo el ancho abajo */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta {
    grid-column: 1 / -1;
  }
}

  /* ==================================================
   TABLET PEQUEÑA
   ================================================== */

@media (max-width: 820px) {

  .hero {
    padding:
      55px 25px 0;
  }

  .hero-container {
    display: flex;

    flex-direction: column;

    min-height: auto;
  }


  .hero-content {
    width: 100%;

    max-width: 650px;

    padding: 10px 0;

    text-align: left;
  }


  .hero-title {
    font-size: 44px;
  }


  .hero-text {
    max-width: 620px;
  }


  .hero-visual {
    width: 100%;

    height: 440px;

    margin-top: 5px;

    overflow: hidden;
  }


  .hero-car-image {
    width: 720px;

    right: 50%;

    bottom: -10px;

    transform:
      translateX(50%);

    -webkit-mask-image:
      linear-gradient(
        to bottom,
        transparent 0%,
        #000 13%,
        #000 100%
      );

    mask-image:
      linear-gradient(
        to bottom,
        transparent 0%,
        #000 13%,
        #000 100%
      );
  }

}
/* ============================
   CELULAR (pantallas hasta 640px)
   ============================ */
@media (max-width: 640px) {

  /* --- NAVBAR --- */
  .navbar-container {
    flex-direction: column;
    gap: 20px;
  }

  .navbar-menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  /* --- HERO --- */

  .hero {
  padding:
    45px 20px
    0;
}
  .hero-container {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-content {
    width: 100%;

    padding: 0;
}

  .hero-eyebrow {
    font-size: 11px;

    margin-bottom: 14px;
}

  .hero-title {
    font-size: 34px;

    line-height: 1.12;

    letter-spacing: -0.8px;

    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 15px;

    line-height: 1.65;

    max-width: 100%;

    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;

    gap: 12px;

    margin-bottom: 27px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;

    text-align: center;
  }

  .hero-features {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 12px;

  font-size: 12px;
  }

  .hero-features li {

  white-space: normal;
  }

  .hero-visual {
  width: calc(100% + 40px);

  height: 330px;

  margin-left: -20px;

  margin-top: 20px;

  overflow: hidden;
  }

  .hero-car-image {
  width: 570px;

  max-width: none;

  right: 50%;

  bottom: -5px;

  transform:
    translateX(50%);

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 12%,
      #000 100%
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 12%,
      #000 100%
    );
}

  /* --- SOLUCIONES --- */
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-title {
    font-size: 26px;
  }

  /* --- BENEFICIOS --- */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-title {
    font-size: 24px;
  }

  /* --- COBERTURA --- */
  .coverage-container {
    flex-direction: column;
  }

  .coverage-map {
    width: 100%;
  }

  .coverage-title {
    font-size: 24px;
  }

  /* --- NOSOTROS --- */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size:34px;
  }

  .about-description{
    font-size:17px;
  }

  .about-card{
      min-height:auto;
      padding:30px;
  }

  .about-card-title{
      font-size:24px;
  }

  .about-card-text{
      font-size:16px;
  }


  .sucursal-promocion {
    max-width: 300px;
    margin: 15px auto;
  }

  .sucursal-promocion img {
    height: 200px;
  }

  /* --- SUCURSALES --- */
  .sucursales-title {
    font-size: 26px;
  }

  .sucursales-carousel {
    gap: 10px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .sucursal-card {
    padding: 26px;
  }

  .sucursal-name {
    font-size: 19px;
  }

  /* --- FOOTER --- */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    grid-column: auto;
  }

 

  .sucursal-promocion:hover {
  box-shadow: 0 18px 45px rgba(10, 22, 51, 0.12);
}

  
}

