@font-face {
  font-family: 'Helvetica Neue Pro Medium';
  src: url('../fonts/HelveticaNeueLTPro-MdCn.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue Pro Black';
  src: url('../fonts/HelveticaNeueLTW05-97BlkC.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue LT Pro Roman';
  src: url('../fonts/HelveticaNeueLTProRoman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /*font-family: 'Inter', sans-serif;*/
  /*font-family: "Roboto", sans-serif;
  font-family: 'Helvetica Neue Pro Medium', sans-serif;*/
  font-family: 'Helvetica Neue LT Pro Roman', sans-serif;
  font-weight: 400;
  
  font-size: 20px;
}

.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px; /* igual al ancho del menú */
  z-index: 1000;
}

.top-bar-naranja {
  height: 10px;
  background: #f58220;
}

.top-bar-gris {
  height: 18px;
  background: #444;
}
/* MENÚ LATERAL DESKTOP */

.menu {
  background: #f4f4f4;
  width: 100px;
  height: 100vh;
  position: fixed;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  z-index: 998;
  font-size: 16px;
}
  


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

.menu ul li {
  text-align: center;
  position: relative;
}

.menu ul li a {
  display: flex;
  font-family: 'Helvetica Neue Pro Medium';
  flex-direction: column;
  align-items: center;
  padding: 15px 5px;
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
}

.menu ul li a i {
  font-size: 20px;
  margin-bottom: 5px;
}

.menu ul li a span {
  font-size: 14px;
  font-weight: 600;
}

.menu ul li a:hover {
  color: #f58220;
}

/* PANEL SUBMENÚ ESTILO NARANJA */
/*
.panel-submenu {
  position: fixed;
  top: 0;
  left: 100px; 
  background-color: #f76c0e;
  color: white;
  width: 250px;
  display: none;
  flex-direction: column;
  
  padding: 20px;
  z-index: 999;
}
  */

.panel-submenu {
  display: none ;
  color: white;
  z-index: 999;
  min-width: 250px;
  max-width: 600px; /* o el valor que quieras según el diseño */
  width: fit-content; /* se adapta al contenido */

  position: absolute; /* Importante para posicionamiento */
  left: 100%; /* Aparece a la derecha del menú lateral */
  top: 0;
}


.panel-submenu ul {
  column-count: 0;
  column-width: 180px; /* intenta mantener columnas de este ancho */
  column-gap: 30px;
  padding: 0;
  margin: 0;
  
}


.panel-submenu h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}



.panel-submenu ul li {
  break-inside: avoid;
  margin-bottom: 0px;
}


.panel-submenu ul li a {
  display: block;
  font-family: 'Helvetica Neue Pro Medium';
  justify-content: space-between;
  align-items: center;
  background: #f58220;
  color: white;
  text-decoration: none;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s ease;
}


.panel-submenu ul li a:hover {
  background-color: #ffffff;
  color: #f58220;
}


.has-subsubmenu {
  position: relative;
}

.panel-submenu ul li.has-subsubmenu > .subsubmenu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  background: #f58220;
  padding: 10px 0;
  min-width: 200px;
  z-index: 1000;
}

.subsubmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.has-subsubmenu:hover > .subsubmenu {
  display: block;
}


.panel-submenu .has-subsubmenu > .subsubmenu li a {
  color: white;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.panel-submenu .has-subsubmenu > .subsubmenu li a:hover {
  background: white;
  color: #f58220;
}

.has-subsubmenu > a::after {
  content: "▶";
  float: right;
  margin-left: 10px;
  font-size: 12px;
}















/* === RESPONSIVE === */
@media (max-width: 768px) {
  body {
    margin-top: 70px; /* espacio para menú arriba */
    margin-left: -80px;
  }

    .card-equipo {
    width: 100%;
    max-width: 300px;
  }

  .menu {
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .menu ul {
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  .menu ul li {
    flex: 1;
    position: relative;
  }

  .menu ul li a {
    padding: 10px 0;
  }

  /* Panel submenu en modo mobile */
  /* Panel submenu en modo mobile: mostrar elementos en columna prolija */

.panel-submenu {
    position: relative;
    left: 0;
    top: 60px;
    width: 100%;
  }

.panel-submenu ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  column-count: 1;
}


.panel-submenu ul li {
  width: 100%;
}

.panel-submenu ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #f58220;
  padding: 12px 10px;
  font-size: 16px;
  white-space: nowrap;
}


  .has-panel.show-panel .panel-submenu {
    display: flex;
  }
}

.menu-responsive {
  border-top: 5px solid #f58220;
  display: none;
  background-color: #515151;
  height: 90px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998; /* justo debajo del menú que tiene 999 o más */
  display: none;
  transition: opacity 0.3s ease;
}


/* Mostrar solo en mobile */
@media (max-width: 768px) {
  .menu-container {
    width: 100%;
  }

  .top-bar-naranja,
  .top-bar-gris {
    display: none;
  }

  .menu-responsive {
  display: flex;
  background-color: #515151; /* fondo gris oscuro */
  height: 85px;
    justify-content: center; /* centra el logo */
  align-items: center;
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.hamburger {
  position: absolute;
  left: 20px; /* distancia desde el borde izquierdo */
  top: 50%;
  transform: translateY(-50%); /* centra verticalmente */
}

.menu-responsive .hamburger i {
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.logo-responsive {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.carousel-logo{
  display: none;
}

.menu-responsive .logo-responsive img {
  height: 60px;
}

  .menu {
    top: 85px; /* debajo del logo-hamburger */
    height: auto;
    width: 100%;
    flex-direction: column;
    background: #f4f4f4;
    display: none; /* Oculto hasta que se abre */
  }
  

  .menu.open {
    display: flex;
  }

  .menu ul {
    flex-direction: column;
  }

  .menu ul li {
    width: 100%;
    text-align: left;
    padding-left: 15px;
  }
}


/* CONTENEDOR PRINCIPAL (derecha del menú) */
.main-content {
  margin-left: 80px; /* espacio del menú */
  padding: 0;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* CAROUSEL */
.carousel {
  position: relative;
  height: 100vh; /* Ocupa toda la altura de la pantalla */
  max-height: 100vh;
  overflow: hidden;
}

.carousel .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  
}

.carousel .slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%); /* 100% = normal, 60% = más oscura */
}

.btn-wpp-carousel {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 10;
 background: linear-gradient(to right, #f58220, #d85e0b);
  color: white;
  padding: 12px 22px;
  font-size: 17px;
  font-family: 'Helvetica Neue Pro Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-wpp-carousel:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(14, 4, 4, 0.35);
}

.btn-wpp-carousel i {
  font-size: 20px;
}

.caption {
  position: absolute;
  top: 30%;
  left: 5%;
  color: white;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  font-family: 'Helvetica Neue Pro Black', sans-serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.btn-carousel {
  display: inline-block;
  margin-top: 0px;
  padding: 12px 25px;
  font-size: 20px;
  background: #f58220;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  text-shadow: none;
}

.btn-carousel:hover{
    background: white;
    color: #f58220;
}

/* CONTENIDO EXTRA */
.contenido-extra {
  padding: 40px 20px;
  background: #f7f7f7;
}

.contenido-extra h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contenido-extra p {
  font-size: 16px;
  line-height: 1.6;
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicators .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-indicators .dot.active {
  background: #f58220;
}

.carousel-logo {
  position: absolute;
  top: 20px;
  left: 80px;
  z-index: 2; 
}

.carousel-logo img {
  height: 60px;
  width: auto;
  opacity: 1; /* sin transparencia */
  filter: brightness(100%);
}



.botones-flotantes {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.btn-flotante {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f58220;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.3s;
  text-decoration: none;
}

.btn-flotante:hover {
  background-color: #d85e0b;
}

.whatsapp {
  background-color: #25d366;
}

.whatsapp:hover {
  background-color: #1ebe57;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}


/*SECTION EQUIPOS MAIN-----------------------------------------*/
.seccion-equipos {
  padding: 30px 60px;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
  text-align: center;
}

.seccion-equipos h2 {
  font-size: 28px;
  color: #111;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.linea-subtitulo {
  width: 200px;
  height: 3px;
  background-color: #f58220;
  margin: 10px auto 30px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card-equipo {
  border: 1px solid #ddd;
  padding: 20px;
  width: 200px;
  background: #fff;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-equipo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card-equipo img {
  max-width: 100%;
  height: auto;
}

.card-equipo h3 {
  font-size: 16px;
  color: #222;
  margin: 15px 0;
  font-weight: 600;
}

.btn-ver {
  display: inline-block;
  background: #f58220;
  color: white;
  padding: 8px 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.btn-ver:hover {
  background: #f58220;
}

/*FIN SECTION EQUIPOS MAIN ---------------------------------


INICIO SECTION MAPA Y FORMULARIO CONTACTO*/

#section-contacto {
  position: relative;
  background-image: url('../img/section-contacto.jpg'); /* Cambiá esta ruta */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Esto hace que la imagen no se mueva */
  z-index: 1;
}

#section-contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* oscurece un poco la imagen */
  z-index: -1;
}

.contacto-sucursales {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px;
  background: #f7f7f7;
  gap: 40px;
}

.info-sucursales,
.formulario-contacto {
  flex: 1;
  min-width: 320px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 40px 30px;
}

.info-sucursales h2,
.formulario-contacto h2 {
  font-size: 24px;
  color: #111;
  margin-bottom: 20px;
  text-align: center;
}

.titulo-seccion {
  font-size: 26px;
  color: #f58220;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: center;
}

.linea-subtitulo {
  width: 60px;
  height: 3px;
  background-color: #f58220;
  margin: 0 auto 30px;
}

.sucursal {
  margin-bottom: 30px;
  text-align: left;
}

.sucursal h3 {
  font-size: 18px;
  color: #002b5c;
  margin-bottom: 8px;
}

.sucursal p {
  font-size: 14px;
  color: #333;
  margin: 4px 0;
}

.formulario-contacto form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  resize: vertical;
}

.formulario-contacto button {
  padding: 12px;
  background-color: #f58220;
  color: white;
  border: none;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  border-radius: 6px;
}

.formulario-contacto button:hover {
  background-color: #f58220;
}

@media (max-width: 768px) {
  .contacto-sucursales {
    flex-direction: column;
    padding: 40px 20px;
  }

  .info-sucursales,
  .formulario-contacto {
    padding: 30px 20px;
  }
}

.contenedor-sucursales {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card-sucursal {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card-sucursal:hover {
  transform: translateY(-4px);
}

.header-sucursal {
  background-color: #f58220;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 20px;
  font-size: 16px;
}

.contenido-sucursal {
  padding: 20px;
  color: #333;
}

.contenido-sucursal p {
  margin: 10px 0;
  font-size: 14px;
}

.contenido-sucursal i {
  color: #f58220;
  margin-right: 10px;
}

.contenedor-sucursales-horizontal {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap; /* ❌ que NO se apilen */
  overflow-x: auto;   /* ✅ scroll horizontal si no entra */
}

.card-sucursal-vertical {
  background: #f0f0f0;
  border-left: 6px solid #d6d6d6;
  border-radius: 8px;
  padding: 25px 20px;
  flex: 1;
  min-width: 196px;
  max-width: 280px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

.card-sucursal-vertical:hover {
  border-color: #f58220;
  transform: translateY(-5px);
}

.card-sucursal-vertical h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card-sucursal-vertical .empresa {
  font-weight: bold;
  color: #666;
  margin-bottom: 10px;
}

.card-sucursal-vertical p {
  font-size: 14px;
  color: #444;
  margin: 4px 0;
}

.card-sucursal-vertical .direccion,
.card-sucursal-vertical .telefono,
.card-sucursal-vertical .horario {
  color: #555;
}

.contenedor-sucursales-horizontal::-webkit-scrollbar {
  display: none;
}


#btn-enviar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#form-feedback {
  margin-top: 10px;
  font-size: 14px;
  color: green;
  font-weight: bold;
}


@media (max-width: 768px) {
  .contenedor-sucursales-horizontal {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
  }
}




/* FIN SECTION MAPA Y CONTACTO ----------------------------------------*/


/* SECTION MENU SECCIONES ------------------------------------*/
.banner-liugong {
  position: relative;
  background: url('../img/seccion-autoelevadores.jpg') center center / cover no-repeat;
  height: 400px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

}

.banner-liugong::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0));
  z-index: 1;
}

.contenido-banner {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 2;
}

.contenido-banner h1 {
  font-size: 60px;
  font-weight: 900;
  font-family: 'Helvetica Neue Pro Black', sans-serif;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.barra-inferior {
  background-color: #f58220;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 4;
}

.logo-barra {
  height: 40px;
}

.breadcrumb  {
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.botones-banner {
  display: flex;
  gap: 10px;
}

.btn-banner {
  border: 2px solid white;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

.btn-banner:hover {
  background-color: white;
  color: #f58220;
}

.btn-banner.destacado {
  background: white;
  color: #f58220;
}

.breadcrumb a {
   color: white !important;
  text-decoration: underline !important;
  background: none !important;
  padding: 0 !important;
  border: none !important;
  font-size: inherit !important;
}

.breadcrumb a:hover {
  color: #ddd;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .breadcrumb,
  .logo-barra {
    display: none !important;
  }
}
/* FIN SECTION MENU SECCIONES -------------*/



/**** SECTION CATALOGO EQUIPOS ************/

@font-face {
      font-family: 'Helvetica Neue LT W05_97 Blk C';
      src: url('../fonts/HelveticaNeueLTW05-97BlkC.woff2') format('woff2');
    }

    @font-face {
      font-family: 'HelveticaNeueLTPro-MdCn';
      src: url('../fonts/HelveticaNeueLTPro-MdCn.woff2') format('woff2');
    }

    .catalogo-maquinas {
      font-family: 'HelveticaNeueLTPro-MdCn', sans-serif;


      padding: 30px 60px;
    background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
    text-align: center;
    }

    .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
      justify-items: stretch;
    }

    .card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      max-width: 100%;
      width: 100%;
    }

    .card:hover {
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
      transform: translateY(-4px);
    }

    .card-header {
      position: relative;
    }

    .card-header img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    

    .image-overlay {
      position: absolute;
      bottom: 0px;
      left: 0;
      width: 100%;
      height: 80px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      display: flex;
      align-items: flex-end;
      padding: 12px 28px;
    }

    .label {
      color: white;
      font-size: 1rem;
      font-weight: bold;
      text-transform: uppercase;
      font-family: 'HelveticaNeueLTPro-MdCn', sans-serif;
      width: 100%;
      text-align: left;
    }

    .card-body {
      padding: 1px 16px 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
    }

    .fuel-tag {
      all: unset;
      font-size: 0.75rem;
      margin-left: 10px;
      padding: 4px 8px;
      border-radius: 12px;
      font-family: 'HelveticaNeueLTPro-MdCn', sans-serif;
      display: inline-block;
      vertical-align: middle;
      color: white;
      line-height: 1;
      text-transform: uppercase;
    }

    .fuel-tag.diesel {
      background-color: rgba(85, 85, 85, 0.15); /* gris claro translúcido */
      color: #555;
      border: 1px solid #aaa;
    }

    .fuel-tag.nafta {
      background-color: rgba(240, 90, 36, 0.15); /* naranja suave */
      color: #f58220;
      border: 1px solid #f58220;
    }

    .fuel-tag.electric {
      background-color: rgba(22, 163, 74, 0.15); /* verde suave */
      color: #16a34a;
      border: 1px solid #16a34a;
    }


    .model-title-group {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 12px;
      margin-bottom: 12px;
      margin-top: 10px;
    }

    .model-title {
      font-size: 2rem;
      color: #f58220;
      font-family: 'Helvetica Neue LT W05_97 Blk C', sans-serif;
    }

    .model-title span {
      font-size: 1.6rem;
      font-family: 'Helvetica Neue LT W05_97 Blk C', sans-serif;
    }

      .badge-nuevo {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 55px;
        height: 55px;
        background: radial-gradient(circle at center, #f58220, #f58220);
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-transform: uppercase;
        box-shadow: 0 0 12px rgb(247 108 14 / 84%);
        animation: boom 1.5s infinite ease-in-out;
        z-index: 10;
      }

      @keyframes boom {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.15); }
      }




      @keyframes boom {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.15); }
      }

    .separator {
      border-bottom: 1px solid #ccc;
      margin: 0 16px 14px 16px;
    }

    .specs {
      font-size: 0.9rem;
      color: #555;
      font-family: 'HelveticaNeueLTPro-MdCn', sans-serif;
      padding-left: 16px;
    }

    .specs li {
      margin-bottom: 6px;
      list-style: none;
      position: relative;
      padding-left: 16px;
      TEXT-ALIGN: LEFT;
    }

    .specs li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #aaa;
      font-size: 1.2rem;
      top: -1px;
    }

    .cta-btn {
      background-color: white;
      border: 2px solid #f58220;
      font-size: 16px;
      font-family: "HelveticaNeueLTPro-MdCn", sans-serif;
      text-align: center;
      color: #f58220;
      padding: 14px 40px 10px 40px;
      text-transform: none;
      cursor: pointer;
      border-radius: 0;
      width: auto;
      align-self: flex-start;
      margin: 20px 16px 0;
    }

    .cta-btn:hover {
      background-color: #f58220;
      color: white;
    }

    .filter-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
      justify-content: center;
    }

    .filter-btn {
      border: 1px solid #ccc;
      padding: 10px 18px;
      font-size: 14px;
      font-family: 'HelveticaNeueLTPro-MdCn', sans-serif;
      background-color: white;
      color: #000;
      cursor: pointer;
      transition: all 0.2s ease;
      text-transform: uppercase;
    }

    .filter-btn:hover {
      border-color: #f58220;
      color: #f58220;
    }

    .filter-btn.active {
      background-color: #f58220;
      color: white;
      border-color: #f58220;
    }

    .filter-btn.electric {
      color: #16a34a;
      border-color: #16a34a;
    }

    .filter-btn.electric.active {
      background-color: #16a34a;
      color: white;
    }

    


    @media (max-width: 480px) {
      .model-title {
        font-size: 1.8rem;
        padding-left: 8px;
      }

       .card-body {
          padding: 10px 12px 20px;
        }

      .model-title span {
        font-size: 1.4rem;
      }

      .cta-btn {
        font-size: 14px;
        padding: 12px 20px 8px 20px;
        align-self: center;
      }
    }


    @media (max-width: 768px) {
      .model-title {
        font-size: 1.6rem;
      }

      .cta-btn {
        padding: 12px 24px;
        font-size: 15px;
      }

      .image-overlay {
        padding: 10px 20px;
      }
    }

    /* FIN SECTION CATALOGO EQUIPOS ************************************/