@font-face {
    font-family: 'Ambit';
    src: url('fonts/ambit_regular-webfont.woff2') format('woff2'),
         url('fonts/ambit_regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;

}
@font-face {
    font-family: 'Ambit';
    src: url('fonts/ambit_light-webfont.woff2') format('woff2'),
         url('fonts/ambit_light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;

}
@font-face {
    font-family: 'Ambit';
    src: url('fonts/ambit_semibold-webfont.woff2') format('woff2'),
         url('fonts/ambit_semibold-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;

}
@font-face {
    font-family: 'Ambit';
    src: url('fonts/ambit_extralight-webfont.woff2') format('woff2'),
         url('fonts/ambit_extralight-webfont.woff') format('woff');
    font-weight: 200;
    font-style: normal;

}

body {
      background-color: #ffffff;
      font-family: 'Ambit', sans-serif;
      color: #808080;
      padding-top: 80px;
    }

    .subtitle {
      text-align: center;
      margin-bottom: 9rem;
      font-size: 0.95rem;
      color: #666;
      font-family: 'Ambit', sans-serif;
      text-transform: uppercase;
      font-weight: 400 !important;
    }

    .menu-lateral {
  position: absolute;
  top: 100%; /* justo debajo del header */
  left: 0;
  width: 300px;
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 1090;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.menu-lateral.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}


    .btn-contacto:hover {
      background-color: #71c4e2;
    }

    .grid-item {
      background-color: #ffffff;
      border-radius: 10px;
      height: 160px;
      position: relative;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }
    .grid-item.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .grid-item:hover .btn {
      background-color: #96d8eb !important;
      /*
      transform: scale(1.03);
      transition: transform 0.3s ease;
      */
    }

    .grid-item .btn {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background-color: #f89c1c;
      color: white;
      border-radius: 50%;
      z-index: 1;
      font-weight: 200 !important;
      font-size: 34px !important;
      padding: 1px 8px 0px 8px !important;
      line-height: 32px !important;
      transition: background-color 0.3s ease;
    }
    .grid-item .btn:hover {
      background-color: #96d8eb !important;
    }

    .hProyectos
    {
      height: 380px;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(255, 145, 0, 0.8);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      color: #808080;
    }
    .overlay.show {
      opacity: 1;
      pointer-events: all;
    }

    .popup .action-btn {
      background-color: #f89c1c;
      color: white;
      border: none;
      border-radius: 999px;
      padding: 0.5rem 1.5rem;
      font-weight: 400;
      float: right;
      margin-top: 1rem;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .popup .action-btn:hover {
      background-color: #e68800;
      transform: scale(1.05);
    }

    footer {
      background-color: #f7f7f7;
      color: #808080;
      padding: 4rem 1rem;
      font-size: 0.9rem;
    }
    footer a:hover {
      color: #f18a00;
    }

    .mr15
    {
      margin-right: 15px;
    }

    footer input[type="email"] {
      border: 1px solid #ccc;
      border-radius: 25px;
      padding: 0.3rem 1rem;
    }
    footer .btn-enviar {
      background-color: #f89c1c;
      color: white;
      border-radius: 25px;
      border: none;
      padding: 10px 20px 10px 20px;
      margin-left: 0.5rem;
    }
    footer .btn-enviar:hover {
      background-color: #87d1e6;
    }
   .btn-contacto {
  padding: 12px 25px 8px 25px;
  border-radius: 999px;
}
   .btn-contacto:hover {
  background-color: #ffc66e !important;
}
   .btn-menu {
  background-color: #ffc66e;
  border: none;
  padding: 12px 25px 8px 25px;
  font-weight: bold;
  border-radius: 999px;
  color: white;
}

.btn-menu:hover
{
  background: #87d1e6;
  color: #ffffff;
}

.menu-lateral {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  border: 2px solid #87d1e6;
}

.menu-lateral a {
  color: #8e1537;
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
}
.menu-lateral a:hover {
  color: #87d1e6;
}

.menu-lateral .close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #f89c1c;

  position: absolute;
  margin: -20px -18px 0px 0px;
}
.menu-lateral.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 768px) {
  .menu-lateral {
    top: 80px;
    left: 2rem;
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    display: flex;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
  }
  .menu-lateral.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

.logo img
{
  width: 100%;
  max-width: 150px;
}

.gradient-text {
      background: linear-gradient(to right, #901537, #f3323f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
      margin-top: 100px;
      font-family: 'Ambit', sans-serif;
      font-size: 8rem;
      font-weight: 200;
      margin-bottom: 0px;
    }

.mr_bom_foot
{
  margin-top: 50px;
}
.mr_bom_foot a
{
  text-decoration: none !important;
  color: #808080;
  margin-left: 60px;
}

#mail_fot
{
  margin-left: 115px;
  color: #f18a00;
}

.item_equipo
{
  padding: 20px 20px;
  height: 190px;
  color: #808080;
  font-size: 21px;
  font-weight: 400;
  line-height: 17px;
  margin: 0px;
}
.item_equipo h5
{
 font-size: 28px;
}
.item_equipo span
{
 font-size: 12px;
}
.item_equipo img
{
 margin-bottom: 10px;
}

#popupSubtitle
{
  font-weight: 400;
  font-size: 14px;
}

.margin_bloques_equipo
{
  margin: 70px 0px 70px 0px;
}

.amigos_equipo
{
  background: #ffffff;
  margin: 80px 0px 0px 0px;
}

.equipo_amigos
{
  background: #f8f8f8;
}

.tit_nuestros_amigos
{
  text-align: center;
  margin: 65px 0px 30px 0px;
  font-size: 22px;
}

.busqueda_talentos
{
  background: #0EB677;
  background: linear-gradient(90deg, rgba(14, 182, 119, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(254, 202, 121, 1) 100%);

  padding: 40px 0px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 14px;
  margin: 100px 0px 100px 0px;
}

.btn_sumate {
  margin-left: 15px;
  padding: 12px 26px 10px 26px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn_sumate:hover {
  background-color: #ffffff;
  color: #0EB677;
}

/* QUE HACEMOS */
.owl-carousel .item {
    padding: 0;
    margin: 0;
  }

  .owl-carousel .item img {
    width: 100%;
    border-radius: 20px;
    display: block;
  }

  .owl-theme .owl-nav {
    margin-top: 0px !important;
    text-align: right !important;
  }

  .owl-theme .owl-nav [class*=owl-] {
    background: transparent;
    color: #000;
    font-size: 30px;
  }
  .owl-prev, .owl-next
  {
    font-size: 70px !important;
    font-family: 'Ambit', sans-serif;
    font-weight: 200 !important;
  }
  .owl-prev:hover, .owl-next:hover
  {
    background: none !important;
    color: #87d1e6 !important;
  }
/* FIN QUE HACEMOS */


/* PROYECTOS */
.info_proyectos
{
  margin-top: 15px;
  margin-bottom: 50px;
}

.tit_Proyectos
{
  font-size: 33px;
  font-weight: 500;
  margin-top: -5px;
  margin-bottom: 5px;
}

.tags_Proyectos span
{
  color: #ffc56d;
  font-size: 11px;
  border: 1px solid #ffc56d;
  border-radius: 4px;
  margin-right: 10px;
  padding: 5px 5px 3px 5px;
}

.anio_Proyecto
{
  color: #ffc56d;
  font-size: 30px;
  margin-top: 30px;
}
/* FIN PROYECTOS */


/* HEADER */
    .btn-menu {
      background-color: #ffc66e;
      border: none;
      padding: 14px 20px 14px 20px !important;
      font-weight: 300 !important;
      border-radius: 999px;
      color: white;
       min-width: 127px; /* ajustá según lo necesario */
  text-align: left;
    }

    .menu-lateral {
  position: absolute;
  top: 100%; /* debajo del header */
  left: 0;
  width: 400px;
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 1rem;
  z-index: 1090;

  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
  pointer-events: none;
}

.menu-lateral.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

    @media (max-width: 767px) {
      .menu-lateral {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        border-radius: 0;
        padding: 4rem 2rem;
        transform: translateX(-100%);
        opacity: 1;
        box-shadow: 2px 0 15px rgba(0,0,0,0.15);
      }

      .menu-lateral.show {
        transform: translateX(0);
        display: flex;
      }

      .text_center_mobile
      {
        text-align: center;
      }

      .gradient-text
      {
        font-size: 62px !important;
        font-weight: 300 !important;
        margin-top: 40px !important;
        line-height: 65px;
        margin-bottom: 10px;
      }
      .subtitle
      {
        font-size: 0.8rem !important;
      }
      .hProyectos
      {
        height: 220px !important;
      }

      .margin_bloques_equipo
      {
        margin-top: 0px !important;
      }
    }

.menu-dots {
  display: flex;
  flex-direction: row;
  gap: 4px;
  transition: transform 0.3s ease;
  height: 1em;
  align-items: center;
}

.menu-dots.open {
  flex-direction: column;
}

.menu-dots .dot {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
}

.btn-menu {
  background-color: #ffc66e;
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  border-radius: 999px;
  color: white;
  min-width: 127px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.menu-text-container {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 1.2em;
}

.menu-label {
  font-family: 'Ambit', sans-serif !important;
  font-weight: 400 !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-show {
  opacity: 1;
  transform: translateY(0);
}

.menu-hide {
  opacity: 0;
  transform: translateY(100%);
}

.btn-menu.open .menu-show {
  opacity: 0;
  transform: translateY(-100%);
}

.btn-menu.open .menu-hide {
  opacity: 1;
  transform: translateY(0);
}

/* Puntos */
.menu-dots {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.menu-dots .dot {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.menu-dots.open {
  flex-direction: column;
}

.menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #f18a00;
  cursor: pointer;
  z-index: 1101;
}
/* FIN HEADER */

/* CONTACTO */
.contacto-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 1rem;
}
.contacto-overlay.show {
  display: flex;
}
.contacto-popup {
  background-color: #00a86b;
  color: white;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 25px;
  padding: 2rem;
  position: relative;
  animation: fadeInZoom 0.4s ease forwards;
  opacity: 0;
  transform: scale(0.95);
}
@keyframes fadeInZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeOutZoom {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}
.close-contacto {
  position: absolute;
  top: 0rem;
  right: 1rem;
  font-size: 4rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
input, textarea {
  background: none;
  border: 1px solid white;
  color: white;
  border-radius: 10px;
  padding: 0.5rem;
  width: 100%;
}
input::placeholder, textarea::placeholder {
  color: white;
  opacity: 0.8;
}

#img_contacto
{
  width: 100%;
  max-width: 620px;
}

#contactoOverlay .subtitle
{
  font-weight: 300;
  color:#ffffff;
  margin-top: 10px;
}

.info_contacto_fot
{
  font-weight: 300;
}
.info_contacto_fot a
{
  text-decoration: none;
  font-size: 14px;
}
.info_contacto_fot a:hover
{
  color: #ececec !important;
}

#contactoForm .form-control
{
  border: 1px solid #ffffff;
  background: #0eb677;
  color: #ffffff;
  font-size: 14px;
  padding: 12px 10px 10px 15px !important;
  border-radius: 10px !important;
}

#contactoForm .btn-outline-light
{
  font-size: 14px !important;
  padding: 12px 25px 10px 25px !important;
}
#contactoForm .btn-outline-light:hover
{
  color: #0eb677 !important;
}

#contactoForm input::placeholder, #contactoForm textarea::placeholder {
  color: white !important;
  opacity: 0.8;
}
/* FIN CONTACTO */
.btn-contacto-mobile {
  display: none;
  background-color: #96d8eb;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  width: 100%;
  text-align: center;
}


@media (max-width: 767px) {
  .owl-dots
  {
    display: none !important;
  }
  .btn-contacto
  {
    display: none !important;
  }
  .btn-menu
  {
    padding: 8px 15px 8px 15px !important;
    min-width: 100px !important;
  }
  .btn-contacto-mobile 
  {
    display: inline !important;
  }

  #clientesContainer .grid-item
  {
    height: 115px !important;
  }

  .grid-item .btn
  {
    padding: 5px 5px 5px 5px !important;
  }

  .titulos_p
  {
    font-size:  35px !important; 
  }

}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot
{
  color: #ffffff !important;
  text-shadow: none !important;
  font-weight: 300 !important;
  font-family: 'Ambit', sans-serif !important;
}

.rounded
{
  border-radius: 15px !important;
}

.btn_volver_p
{
  font-weight: 500 !important;
  font-size: 15px;
  color: #f18a00 !important;
  font-family: 'Ambit', sans-serif !important;
}

.btn_volver_p:hover
{
  color: var(--bs-secondary-color)!important;
}

.mayusA
{
  text-transform: uppercase;
  font-family: 'Ambit', sans-serif !important;
  font-weight: 300;
}

.owl-theme .owl-dots .owl-dot span
{
  background: #ffffff;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span
{
  background: #f89c1c;
}

.titulos_p
{
  font-size:  55px;
  background: linear-gradient(to right, #f18a00, #f5353e);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

.redes_header
{
  color: rgba(33, 37, 41) !important;
  font-size: 14px !important;
  text-transform: initial !important;
}
.redes_header:hover
{
  color: #ffc66e !important;
}

.btn-filtros {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1;
  vertical-align: middle;
  font-size: 14px;
}

.btn-filtros img {
  height: 18px;
  display: block;
  margin-top: -2px !important;
}

.btn-filtros:hover {
  color: #000; /* o el color que quieras */
  transform: none; /* Asegura que no suba o baje */
}
.btn_filters
{
  font-weight: 300 !important;
  margin-right: 10px;
}
.btn_filters:hover
{
  font-weight: 300;
  color: #ffc66e !important;
}

.btn-naranja,
.btn-naranja-outline {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 400 !important;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-naranja {
  background-color: #f18a00;
  color: white;
  border: 2px solid #f18a00;
}

.btn-naranja:hover {
  background-color: #87d1e6;
  border-color: #87d1e6;
  color: white;
}

.btn-naranja-outline {
  background-color: transparent;
  color: #f18a00;
  border: 1px solid #f18a00;
}

.btn-naranja-outline:hover {
  background-color: #87d1e6;
  border-color: #87d1e6;
  color: white;
}

.margin_botones_qh
{
  margin-bottom: 140px;
}

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}

#input_news
{
  border: 1px solid #f18a00;
  padding: 10px 20px 10px 20px;
  color: #808080;
}
#input_news::placeholder {
  color: #808080;
  opacity: 1; /* importante para que no se vea grisáceo */
}

.buscador-container {
  position: relative;
  width: 100%;
  max-width: 315px;
  margin: 20px auto;
}

.buscador-input {
  width: 100%;
  padding: 12px 40px 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #000;
  outline: none;
  margin-top: 15px;
}

.buscador-input::placeholder {
  color: #87d1e6;
  font-weight: 400;
}

.buscador-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #87d1e6;
  pointer-events: none;
  font-size: 16px;
}

/* Simular .open al hacer hover si aún no está abierto */
.btn-menu:hover .menu-dots:not(.open) {
  flex-direction: column;
  gap: 4px; /* igual que cuando está en vertical */
}

/* Rotación idéntica a cuando se hace click */
.btn-menu:hover .menu-dots:not(.open) .dot:nth-child(1) {
  transform: rotate(45deg);
}

.btn-menu:hover .menu-dots:not(.open) .dot:nth-child(2) {
  transform: rotate(-45deg);
}

/* Mantener forma circular perfecta siempre */
.menu-dots .dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  min-height: 6px;
  border-radius: 50%;
  background-color: white;
  display: inline-block;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}


/* mobile */
@media (max-width: 767px) {

    .slide .titulo
    {
      font-size: 40px !important;
    }

    .slide .icono img
    {
      max-width: 100px !important;
    }

    .slide .descripcion
    {
      font-size: 16px !important;
       text-transform: initial !important;
       text-align: left;
    }

    .slide
    {
      min-height: 550px !important;
      padding: 0px 30px 0px 30px !important;
    }

    .margin_botones_qh .me-2
    {
      margin-right: 0px !important;
      margin-bottom: 20px !important;
    }

    .subtitle
    {
      margin-bottom: 2rem !important;
      min-width: 100% !important;
      margin-left: 0px !important;
    }

    .margin_botones_qh
    {
    	margin-bottom: 40px !important;
    }

    .item_equipo h5
    {
      font-size: 18px !important;
    }

    .margin_bloques_equipo
    {
      margin-bottom: 50px !important;
    }

    .col-6
    {
      /*width: 100% !important;*/
    }

    #clientesContainer .grid-item
    {
      height: auto !important;
      padding-top: 5px;
        padding-bottom: 5px;
    }

    .equipo_cont
    {
    	margin-top: -30px !important;
    }

    .item_equipo .col-xs-6
    {
      width: 50%;
      float: left;
    }

    .img_sub_amigos img
    {
      width: 90% !important;
      height: auto !important;
    }

    .der_sub_amigos
    {
      padding-top: 40px;
    }

    .busqueda_talentos
    {
      line-height: 40px !important;

    }

    .fa-solid, .fas
    {
      font-size: 24px !important;
    }

    .titulo-grande {
      font-size: 9.4vw !important;
      line-height: 0.82 !important;
    }

    .impacto, .titulo-slide2 .somos, .grande, .titulo-slide3, .somos
    {
      font-size: 9.4vw !important;
    }

    .equipo-icono
    {
      left: 0% !important;
      width: 50px !important;
      margin-top: -10px !important;
    }

    .titulo-slide3
    {
      line-height: 0.82 !important;
    }

    .hProyectos{
      height: 205px !important;
    }

    footer
    {
    	padding-top: 30px !important;
    }

    .text_left_mb
    {
    	text-align: left !important;
    }

    .tit_sucursal
	{
		margin-top: 30px !important;
	}
}

.tit_sucursal
{
	margin-bottom: 20px !important;
	display: block;
}

@media (max-width: 767.98px) {
  .col-12.col-md-5.d-flex {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .col-12.col-md-5.d-flex img {
    flex-shrink: 0;
    margin-right: 10px; /* separa imagen del texto */
  }

  /* Enlace central ocupa más ancho */
  .col-12.col-md-5.d-flex a:nth-child(2) {
    flex: 2;
    text-align: center;
  }

  /* Enlace de la derecha ocupa menos ancho */
  .col-12.col-md-5.d-flex a:last-child {
    flex: 1;
    text-align: right;
  }

  .bloque1_footer
  {
  	margin-top: 30px;
  }
}


@media (max-width: 767.98px) {
  .menu-lateral {
    position: absolute !important;
    top: 80px !important;   /* antes estaba 100%, ahora fijo a 100px */
    left: 0 !important;
    width: 320px !important;
    height: auto !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    transform: translateY(-10px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    margin-top: 80px !important;
    margin-left: 15px !important;
  }
  .menu-lateral.show {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: 90% !important;
  }
  .menu-close { display: none !important; }
  .btn-menu { min-width: 127px; }

  .justify-content-between
  {
  	min-width: 115px !important;
    padding: 10px 17px 12px 17px !important;
    margin-top: 10px !important;
  }

  .btn-contacto-mobile
  {
    font-weight: 300;
        padding: 10px 15px 10px 15px;
        max-width: 125px;
        font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .site-header .btn-menu {
    order: 2; /* Mueve el botón de menú a la derecha */
  }
  .site-header .logo {
    order: 1; /* Logo a la izquierda */
  }
  .site-header .btn-contacto {
    order: 3; /* Botón HABLEMOS queda último si se ve */
  }
}

@media (max-width: 767px) {
  .btn-menu {
    background-color: #ffc66e !important;
  }
  .btn-menu.open {
    background-color: #96d8eb !important;
  }
}

@media (max-width: 767px) {
  .footer-links {
    flex-wrap: nowrap; /* evita que se vayan a otra línea */
    align-items: center;
    gap: 10px; /* separa los elementos */
    padding-left: 0px !important;
  }

  .footer-links span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap; /* evita que se corten */
  }

  .footer-links .btn-contacto-mobile {
    margin-top: 0 !important; /* elimina margen que baja el botón */
  }
}

@media (max-width: 767px) {
  .busqueda_talentos {
      display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        line-height: 20px !important;
        padding: 22px 15px 22px 15px !important;
  }

  .busqueda_talentos .btn_sumate {
    margin-left: 10px; /* pequeño espacio entre texto y botón */
    white-space: nowrap; /* evita que el botón se corte */
  }
}

.mn_activo
{
  color: #96d8eb !important;
}