@font-face {
  font-family: 'Poppins-Regular';    
  src: url('../fonts/Poppins-Regular.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins-SemiBold';    
  src: url('../fonts/Poppins-SemiBold.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins-Bold';    
  src: url('../fonts/Poppins-Bold.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Conquera-Bold';    
  src: url('../fonts/Conquera-Bold.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root{
  --acent: #ffa400;
  --blue:#292937;
  --text-regular: 'Lato-Regular', sans-serif;
  --text-semibold: 'Poppins-SemiBold', sans-serif;
  --text-bold: 'Poppins-Bold', sans-serif;
  --text-bold-conquera: 'Conquera-Bold', sans-serif;
}
*{
  padding: 0;
  margin: 0;
  font-family: var(--text-regular);
  color: var(--blue);
  box-sizing: border-box;
}
b{
  font-family:var(--text-bold);
}
html {
  scroll-behavior: smooth;
}
body{
  background: white;
  font-size: 16px;
}
section{
  overflow: hidden;
}
.text-acent{
  color: var(--acent);
}
.text-white{
  color: white;
}
.text-center{
  text-align: center;
}
.text-bold{
  font-family: var(--text-bold) !important;
}
.text-regular{
  font-family: var(--text-regular) !important;
}
.text-semibold{
  font-family: var(--text-semibold) !important;
}
.text-bold-conquera{
  font-family: var(--text-bold-conquera) !important;
}
.text-upercase{
  text-transform: uppercase;
}
.text-18{
  font-size: 18px;
}
.text-20{
  font-size: 20px;
}
.text-22{
  font-size: 22px;
}
.text-32{
  font-size: 32px;
}
.text-42{
  font-size: 42px;
}
.d-flex{
  display: flex;
}
.box-1200{
  max-width: 1200px;
  margin: 0 auto;
}
.item-tablet,
.item-mobile{
  display: none !important;
}
.item-desktop{
  display: block !important;
}
.btn-yellow{
  padding: 15px 40px;
  background: var(--acent);
  color: var(--blue);
  width: auto;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  font-size: 24px;
  cursor: pointer;
  text-decoration:none;
}
.btn-blue{
  padding: 15px 40px;
  background: var(--blue);
  color: var(--acent);
  width: auto;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  font-size: 24px;
  cursor: pointer;
  text-decoration:none;
}
/* $NAV */
.nav-top{
  width: 100%;
  transition: 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--blue);
  color: white ;
  padding: 10px 0;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.23);
  -moz-box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.23);
  box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.23);
}
.box-nav-top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.box-nav-top .lista-menu a{
  color: var(--acent);
  text-decoration: none;
  margin: 0 30px;
  text-transform: uppercase;
  font-size: 14px;
  transition: .5s;
}
.box-nav-top .lista-menu a:hover{
  text-decoration: underline;
}
.nav-top .logo-nav{
  transition: 1s;
  width: 204px;
}
.nav-top .nav-redes{
  margin-left:30px;
}
.nav-top .nav-redes a{
  text-decoration: none;
  margin-right: 10px;
  transition: 1s;
}
.nav-top .nav-redes img{
  transition: 1s;
}
.nav-top.active{
  padding: 0 10px;
}
.nav-top.active .logo-nav{
  width: 140px;
}
.nav-top.active .nav-redes a{
  margin-right: 7px;
}
.nav-top.active .box-nav-top{
  padding: 15px 0;
}
.nav-top.active .box-nav-top .lista-menu a{
  font-size: 13px;
  color: var(--acent);
}
.nav-top .menu-mobile{
  height: 0;
  transition:.5s;
  overflow: hidden;
  width: 100%;
}
.nav-top .btn-menu-mobile{
  display: none;
}
.nav-top .menu-mobile .lista-menu{
  margin-bottom: 20px;
}
.nav-top .menu-mobile .lista-menu a{
  display: block;
  color: var(--acent);
  text-decoration: none;
  margin-bottom: 15px;
}
/* $HEADER */
.header-seccion{
  margin-top: 100px;
  position: relative;
  background: white;
  min-height: calc(50vh - 100px);
  margin-bottom: 50px;
}
.header-seccion .swiper-header img{
  width: 100%;
}
.header-seccion .swiper-header .swiper-button-next{
  right: 10%;
}
.header-seccion .swiper-header .swiper-button-prev{
  left: 10%;
}
.header-seccion .swiper-header .btn-yellow{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  bottom: 70px;
  box-shadow: -3px 5px 35px -5px rgba(0,0,0,0.40);
  -webkit-box-shadow: -3px 5px 35px -5px rgba(0,0,0,0.40);
  -moz-box-shadow: -3px 5px 35px -5px rgba(0,0,0,0.40);
}
.header-seccion .swiper-header .swiper-button-next:after, 
.header-seccion .swiper-header .swiper-button-prev:after{
  color: var(--acent);
}
.swiper-pagination-bullet{
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active{
  background: var(--acent);
  width: 10px;
  height: 10px;
}
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal{
  bottom: 20px;
}
/* QUIÉNES SOMOS */
.box-somos{
  padding-bottom: 80px;
}
.box-somos h2{
  margin-bottom: 80px;
}
.box-somos h3{
  margin-bottom: 20px;
  font-size: 25px;
}
.box-somos .box-somos-titulo{
  margin: 20px 0 40px;
}
.box-somos .box-somos-titulo p{
  margin-right: 25px;
}
.box-somos .content-somos > div:first-child{
  width: 45%;
}
.box-somos .content-somos > div:first-child img{
  width: 100%;
}
.box-somos .content-somos > div:last-child{
  width: 55%;
  margin-left: 80px;
}
.box-somos .content-somos .separador-horizontal-black{
  background: var(--blue);
  width: 300px;
  height: 7px;
  margin-bottom: 40px;
}
.box-somos .content-somos .somos-text{
  font-size: 13px;
  width: 80%;
  line-height: 25px;
}
.box-somos  .img-carton-info{
  width: 80%;
  margin: 150px auto 0;
  display: block;
}
.box-somos .btn-blue{
  margin-top: 90px;
}
/* por qué elegirnos */
.box-elegirnos{
  min-height: 80vh;
  background: url(../assets/media/back-elegir.png) no-repeat center/cover;
}
.box-elegirnos h3{
  color: white;
  font-size: 52px;
  text-align: right;
  padding: 60px 0 90px;
}
.container-elegirnos{
  width: 60%;
  margin-left: 35%;
  max-width: 1200px;
}
.container-elegirnos .items-elegirnos{
  flex-wrap: wrap;
  justify-content: space-between;
}
.container-elegirnos .items-elegirnos .item-elegirnos{
  width: 50%;
  align-items: center;
  margin-bottom: 150px;
}
.container-elegirnos .items-elegirnos p{
  text-align: right;
  color: white;
  width: 80%;
  margin-left: auto;
  margin-right: 30px;
  line-height: 25px;
  font-size: 18px;
}
.container-elegirnos p.item-elegirnos-titulo{
  color: var(--acent);
}
.container-elegirnos img{
  height: 75px;
  width: auto;
}
/* Servicios */
.box-servicios .item-servicios{
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}
.box-productos h3{
  margin-bottom: 40px;
}
.box-servicios .item-servicios > div,
.box-servicios .item-servicios > img{
  width: 50%;
}
.box-servicios .item-servicios > div{
  padding-right: 40px;
}
.box-servicios .item-servicios.item-servicios-rigth > div{
  padding-right: 0;
  padding-left: 40px;
}
.box-servicios .item-servicios p{
  margin-bottom: 20px;
}
.box-servicios .item-servicios h3{
  line-height: 44px;
  margin-bottom: 25px;
}
.box-servicios .btn-yellow{
  margin-top: 30px;
}
.box-servicios h2{
  margin-top: 100px;
  margin-bottom: 30px;
}
.box-servicios .intro-servicios{
  width: 60%;
  margin: 0 auto 70px;
  font-size: 18px;
  line-height: 25px;
}
/* nuestros productos */
.box-productos{
  margin-bottom: 70px;
}
.swiper-productos{
  width: 90%;
  margin: 0 5% 4%;
}
.swiper-productos .swiper-wrapper .swiper-slide{
  padding: 10px;
  height: auto;
}
.swiper-productos .swiper-wrapper .swiper-slide .item-slide{
  border: 1px solid #e9e9f4;
  padding: 10px 0;
  height: 100%;
}
.swiper-productos .item-slide img{
  display: block;
  margin: 0 auto 10px;
}
.swiper-productos .item-slide h4{
  font-size: 20px;
  margin: 0 0 45px;
}
.swiper-productos .item-slide .text-slide{
  padding: 0 14%;
}
.swiper-productos .swiper-button-next:after, 
.swiper-productos .swiper-button-prev:after {
  color: var(--acent);
}
/* $desafios-seccion */
.box-clientes{
  border-top:5px solid #e2e2fb;
  border-bottom:5px solid #e2e2fb;
  background: #ffffff;
  padding: 60px 0;
}
.box-clientes h3{
  margin-bottom: 50px;
}
.box-clientes .swiper-clientes{
  width: 80%;
}
.box-clientes .swiper-clientes .swiper-slide {
  text-align: center;
}
.swiper-clientes .swiper-button-next:after, 
.swiper-clientes .swiper-button-prev:after {
  color: var(--acent);
}
/* mapa */
.box-mapa > div:first-child{
  width: 60%;
}
.box-mapa > div:last-child{
  width: 60%;
}
/* $formulario-seccion */
.formulario-seccion{
  background: white;
  min-height: 700px;
  justify-content: center;
  padding: 40px 50px;
  -webkit-box-shadow: -2px 4px 28px -6px rgba(0,0,0,0.49);
-moz-box-shadow: -2px 4px 28px -6px rgba(0,0,0,0.49);
box-shadow: -2px 4px 28px -6px rgba(0,0,0,0.49);
}
.formulario-seccion .box-contacto{
  width: 100%;
  max-width: 480px;
  transform: translateX(50%);
}
.formulario-seccion h3{
margin-bottom: 20px;
}
.formulario-seccion .box-form .box-inputs .input-text{
  border-radius: 0;
  height: 48px;
  background: #e9e9f4;
}
.formulario-seccion .box-form .box-inputs .text-area::placeholder,
.formulario-seccion .box-form .box-inputs .input-text::placeholder{
  font-size: 14px;
  color: var(--blue);
}
.formulario-seccion .box-form .box-inputs .text-area{
  width: 100%;
  height: 150px;
  border: none;
  background: #e9e9f4;
}
.formulario-seccion .separador-horizontal-purpple{
  width: 100%;
  height: 2px;
  background: #e9e9f4;
  margin-bottom: 40px;
}
.formulario-seccion .btn-blue{
  padding-left: 55px;
  padding-right: 55px;
  font-size: 16px;
  margin-top: 40px;
}
.box-form .input-text{
  padding: 11px 25px 7px;
  border: none;
  border-radius: 10px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.box-form .text-area{
  padding: 10px 25px;
}
/* $FOOTER */
footer .footer-top{
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 50px 20px;
  background: var(--blue);
}
footer .footer-top p,
footer .footer-top a{
  color: white;
}
footer .footer-top > div{
  width: 50%;
  display: flex;
}
footer .footer-top .footer-top-left{
  justify-content: flex-start;
}
footer .footer-top .footer-top-rigth{
  align-items: center;
  justify-content: space-between;
}
footer .footer-top .footer-contacto > div{
  align-items: flex-start;
}
footer .footer-top .footer-contacto > div p{
  margin-bottom: 5px;
}
footer .footer-top .footer-contacto > div img{
  margin-top: 5px;
  margin-right: 10px;
}
footer .footer-top .nav-redes.redes-tablet{
  display: none;
}
footer .footer-top .nav-redes{
  display: flex;
}
footer .footer-top .nav-redes img{
  width: 25px;
  margin: 0 10px;
}
footer .footer-top .footer-top-rigth .footer-contacto{
  width: 250px;
}
footer .footer-bottom{
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  margin-top: 20px;
}
footer .footer-bottom > *{
  margin: 0 15px;
}
footer .footer-bottom a,
footer .footer-bottom p{
  text-decoration: none;
  font-size: 13px;
}
.servicios-text-box{
    display: flex;
    width:100%;
    flex-wrap: wrap;
}
.servicios-text-box > div{
    width:50%;
}
.servicios-text-box > div p{
    text-align:left;
    margin: 10px 30px 20px;
}


@media (max-width: 768px) {
  .text-42{
    font-size: 32px;
  }
  .text-32 {
    font-size: 22px;
  }
  .item-mobile,
  .item-desktop{
    display: none !important;
  }
  .item-tablet{
    display: block !important;
  }
  /* $NAV */
  .nav-top {
    padding: 15px 20px;
  }
  .nav-top .logo-nav{
    width: 120px;
  }
  .nav-top .btn-menu-mobile{
    width: 40px;
    text-align: center;
    display: block;
  }
  .nav-top .btn-menu-mobile img{
    width: 35px;
  }
  .nav-top .menu-mobile.active{
    height: 230px;
  }
  .nav-top .nav-redes{
    margin-left: 0;
  }
  /* $HEADER */
  .header-seccion .swiper-header .swiper-button-next{
    right: 10px;
  }
  .header-seccion .swiper-header .swiper-button-prev{
    left: 10px;
  }
  /* QUIÉNES SOMOS */
  .box-somos .content-somos{
    flex-wrap: wrap;
    text-align: center;
  }
  .box-somos h2{
    margin-bottom: 40px;
  }
  .box-somos .box-somos-titulo{
    text-align: center;
    justify-content: center;
  }
  .box-somos .content-somos > div{
    width: 100% !important;
  }
  .box-somos .content-somos div:last-child{
    margin: 20px 20px 20px;
  }
  .box-somos .content-somos .somos-text{
    width: 100%;
  }
  .box-somos .content-somos .separador-horizontal-black{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .box-somos .img-carton-info{
    margin-top: 40px;
    margin-top: 40px;
    padding: 0 20px;
    width: 100%;
  }
  /* por qué elegirnos */
  .container-elegirnos{
    width: 100%;
    margin-left: 0;
    padding-left: 65px;
    padding-right: 20px;
  }
  .box-elegirnos h3{
    font-size: 28px;
  }
  .container-elegirnos img{
    height: 60px;
  }
  .container-elegirnos .items-elegirnos p{
    width: 70%;
  }
  .container-elegirnos .items-elegirnos .item-elegirnos {
    width: 100%;
    margin-bottom: 50px;
  }
  .box-elegirnos{
    background-position: 36% 0%;
  }
  /*  */
  .box-servicios {
    padding-left: 20px;
    padding-right: 20px;
  }
  .box-servicios .intro-servicios{
    width: 100%;
  }
  .box-servicios .item-servicios > div,
  .box-servicios .item-servicios > img{
    width: 100%;
  }
  .box-servicios .item-servicios.item-servicios-rigth {
    flex-direction: column-reverse;
   }
  .box-servicios .item-servicios > div,
  .box-servicios .item-servicios.item-servicios-rigth > div {
    padding-right: 0;
    padding-left: 0;
  }
  .box-servicios .item-servicios > img {
    margin-top: 50px;
  }
  /*  */
  .swiper-productos .item-slide img{
    width: 100%;
  }
  /* Clientes */
  .box-clientes .swiper-clientes{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  /*  */
  .box-mapa{
    flex-wrap: wrap;
  }
  .box-mapa > div:first-child,
  .box-mapa > div:last-child{
    width: 100%;
  }
  .box-mapa > div:first-child{
    height:400px;
   }      
  .formulario-seccion{
    box-shadow: none;
  }
  .formulario-seccion {
    padding: 40px 20px;
  }
  .servicios-text-box > div{
    width:100%;
  }
  .servicios-text-box > div p{
    text-align:left;
    margin: 10px 10px 20px;
  }
  /* $FOOTER */
  footer .footer-top{
    flex-wrap: wrap;
    margin: 40px 0 0;
  }
  footer .footer-top .footer-top-left {
    flex-direction: column;
    align-items: center;
    padding-right: 20px;
  }
  footer .footer-top .footer-top-left img{
    max-width: 90%;
  }
  footer .footer-top .footer-top-rigth{
    padding-left: 20px;
    flex-direction: column;
  }
  footer .footer-top .nav-redes {
    justify-content: start;
    width: 100%;
    padding-left: 35px;
  } 
  footer .footer-top .nav-redes img{
    margin: 0 10px;
  }
  footer .footer-top .footer-top-rigth .footer-contacto{
    width: 90%;
  }
  footer .footer-top .footer-top-rigth > *,
  footer .footer-top .footer-top-left > *{
    margin-bottom: 20px;
  }
  /* $FORMULARIO*/
}
@media (max-width: 480px) {
  .item-tablet,
  .item-desktop{
    display: none !important;
  }
  .item-mobile{
    display: block !important;
  }
  .text-42 {
    font-size: 25px;
  }
  .text-32 {
    font-size: 20px;
  }
  .btn-blue,
  .btn-yellow{
    font-size: 18px;
  }
  /* $NAV */
  .nav-top .logo-nav{
    width: 110px;
  }
  /* $HEADER */
  .header-seccion .box-proposito .box-proposito-item {
    width: 100%;
  }
  /* $desafios-seccion */
  .box-elegirnos h3{
    font-size: 22px;
    padding: 30px 0 40px;
  }
  .container-elegirnos .items-elegirnos .item-elegirnos{
    width: 100%;
    margin-bottom: 50px;
  }
  .container-elegirnos .items-elegirnos p{
    width: 80%;
    font-size: 16px;
  }
  .container-elegirnos img {
    height: 45px;
  }
  .box-servicios .intro-servicios{
    font-size: 16px;
  }
  .box-servicios .item-servicios h3{
    line-height: 35px;
    font-size: 30px;
  }
  .box-servicios .btn-yellow{
    display: block;
    width: fit-content;
  }
  footer .footer-bottom{
    margin-bottom: 0;
  }
  footer .footer-top .nav-redes{
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
  }
  footer .footer-top .footer-top-rigth {
    padding-left: 0;
  }
  /* $FOOTER */
  footer .footer-top > div{
    width: 100%;
  }
  footer .footer-top .nav-redes,
  footer .footer-top .footer-top-left{
    align-items: center;
    justify-content: center;
  }
  footer .footer-bottom{
    flex-wrap: wrap;
  }
  footer .footer-bottom p {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* $FORMULARIO*/
}

/* Oculta el popup por defecto */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Centra el contenido del popup */
.popup-content {
  position: relative;
  background: #fff;
  padding: 2em 2.5em 2em 2.5em;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  text-align: center;
  min-width: 300px;
}
.popup-content > img{
    height: 100%;
    max-height: 85vh;
    width: 100%;
    max-width: 500px;
}

/* Botón de cerrar */
.close-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  font-size: 1.1em;
  background: black;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Imagen */
.logo-nav {
  max-width: 200px;
  height: auto;
  margin-top: 24px;
}

/* Mostrar el popup cuando se activa */
.popup-overlay.active {
  display: flex;
}