@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", serif;
  color: #333;
}

h2 {
  font-size: 2.5rem;
  line-height: 3rem;
}

.mt-6 {
  margin-top: 6rem;
}

.button {
  width: fit-content;
  box-sizing: border-box;
  font-size: 1.2rem;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button .icon {
  width: 19px;
  height: 19px;
  margin-left: 10px;
  object-fit: contain;
}

.button:hover {
  transition: all 0.5s;
  opacity: 0.8;
}

.primary {
  color: #fff;
  background-color: #107800;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  /* Límite máximo */
  min-width: 320px;
  /* Para pantallas extremadamente pequeñas */
  padding: 0 2rem;
  /* Más espaciado en los lados */
  box-sizing: border-box;
  /* Asegura que padding se incluya en el cálculo del ancho */
}

.center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.portada {
  width: 100%;
  height: 95vh;
  background-image: url("../img/bg_portada.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.portada header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.portada header .logo {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.portada header .menu a {
  font-size: 1.2rem;
  color: #333;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}
.portada header .menu a:hover {
  transition: all 0.5s;
  color: #107800;
}
.portada header .menu .active {
  color: #107800;
}
.portada .swiper {
  width: 100%;
  margin-top: 4rem;
  height: 50vh;
}
.portada .swiper .swiper-wrapper .swiper-slide .contenido_slider {
  padding: 0 6rem;
}
.portada .swiper .swiper-wrapper .swiper-slide .contenido_slider h2 {
  font-weight: 600;
  font-size: 5rem;
  color: #333;
  line-height: 5.5rem;
}
.portada .swiper .swiper-wrapper .swiper-slide .contenido_slider p {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #333;
}
.portada .swiper .swiper-wrapper .swiper-slide .contenido_slider a {
  color: #fff;
  background-color: #107800;
  font-size: 1.3rem;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  width: fit-content;
}
.portada .swiper .swiper-wrapper .swiper-slide .contenido_slider a img {
  width: 19px;
  height: 19px;
  margin-left: 10px;
  object-fit: contain;
}
.portada .swiper .swiper-button-next,
.portada .swiper .swiper-button-prev {
  color: #333;
}
.portada .triangle {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid #fff;
  /* Color del triángulo */
  left: 50%;
}

.portada2 {
  height: 65vh;
}

.wpp {
  text-decoration: none;
  position: fixed;
  z-index: 99999999999;
  bottom: 1rem;
  right: 1rem;
}
.wpp img {
  width: 60px;
  height: auto;
  cursor: pointer;
}
.wpp img:hover {
  transition: 0.7s;
  width: 65px;
}

.servicios {
  width: 100%;
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.servicios h2 {
  text-align: center;
}
.servicios .tarjetas_servicios {
  margin-top: 6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.servicios .tarjetas_servicios .tarjeta {
  width: 220px;
  height: max-content;
  margin: 0 3rem;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 1rem;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
}
.servicios .tarjetas_servicios .tarjeta .contenido_tarjeta {
  border: 1px solid #eee;
  height: 185px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
}
.servicios .tarjetas_servicios .tarjeta .contenido_tarjeta .icono {
  width: 100%;
  max-width: 100px;
}
.servicios .tarjetas_servicios .tarjeta .contenido_tarjeta .icono2 {
  width: 100%;
  max-width: 90px;
}
.servicios .tarjetas_servicios .tarjeta .contenido_tarjeta .texto {
  font-size: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}
.servicios .center {
  margin-top: 4rem;
}

.elegirnos {
  padding-bottom: 6rem;
}
.elegirnos h2 {
  text-align: center;
}
.elegirnos .subtitulo {
  font-size: 1.5rem;
  margin-top: 1rem;
  line-height: 2rem;
  text-align: center;
}
.elegirnos .informacion {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.elegirnos .informacion h3 {
  width: 100%;
  text-align: center;
  color: #107800;
  font-size: 1.5rem;
}
.elegirnos .informacion .texto {
  width: 45%;
  margin-top: 2rem;
}
.elegirnos .informacion .texto p {
  margin: 1rem 0;
  font-size: 1.1rem;
  line-height: 1.5rem;
}
.elegirnos .informacion .texto ul {
  text-decoration: none;
  list-style: none;
  margin-top: 1rem;
}
.elegirnos .informacion .texto ul li {
  width: 100%;
  margin-bottom: 1rem;
  background-color: #fff;
  box-sizing: border-box;
  padding: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 25px;
  display: flex;
  align-items: center;
}
.elegirnos .informacion .texto ul li img {
  width: 27px;
  height: 27px;
  margin-right: 0.5rem;
}

.proyectos {
  padding-bottom: 6rem;
}
.proyectos h2 {
  text-align: center;
}
.proyectos .fila_proyectos {
  width: 100%;
  margin: 4rem auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.proyectos .fila_proyectos .proyecto {
  width: 30%;
  max-width: 350px;
  height: 220px;
  background-color: #fff;
  padding: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-around;
}
.proyectos .fila_proyectos .proyecto img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 25px;
}
.proyectos .fila_proyectos .proyecto p {
  margin: 1rem 0;
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
}

.contacto {
  padding-bottom: 6rem;
}
.contacto h2 {
  text-align: center;
}
.contacto .formulario {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 4rem;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 25px;
  display: flex;
  flex-direction: row;
}
.contacto .formulario .form {
  width: 50%;
  box-sizing: border-box;
  padding: 3rem;
}
.contacto .formulario .form h3 {
  font-size: 1.5rem;
  color: #212529;
}
.contacto .formulario .form p {
  font-size: 1rem;
}
.contacto .formulario .form .campos input,
.contacto .formulario .form .campos textarea {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: "Roboto", serif;
  color: #333;
  margin: 1rem 0;
  box-sizing: border-box;
}
.contacto .formulario .form .enviar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.contacto .formulario .form .enviar button {
  border: none;
}
.contacto .formulario .form .enviar button img {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
}
.contacto .formulario .info_contacto {
  width: 50%;
  height: auto;
  background-image: url("../img/bg2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  box-sizing: border-box;
  padding: 3rem;
}
.contacto .formulario .info_contacto h3 {
  margin-bottom: 3rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
}
.contacto .formulario .info_contacto p {
  color: #333;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.contacto .formulario .info_contacto p img {
  width: 25px;
  height: 25px;
  margin-right: 0.5rem;
}

footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 1rem 0;
  font-weight: bold;
  color: #212529;
}

.somos {
  padding-top: 4rem;
  padding-bottom: 6rem;
  width: 100%;
}
.somos p {
  font-size: 1.2rem;
}

.servicios-page {
  padding-top: 4rem;
  padding-bottom: 2rem;
  width: 100%;
}
.servicios-page .servicios {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
}
.servicios-page .servicios .servicio {
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 25px;
  box-sizing: border-box;
  padding: 2rem;
  margin-bottom: 2rem;
}
.servicios-page .servicios .servicio .cabecera {
  display: flex;
  align-items: center;
}
.servicios-page .servicios .servicio .cabecera img {
  width: 110px;
  height: auto;
}
.servicios-page .servicios .servicio .cabecera p {
  margin-left: 2rem;
  font-size: 2rem;
  color: #107800;
  font-weight: bold;
}
.servicios-page .servicios .servicio .informacion {
  margin-top: 2rem;
}
.servicios-page .servicios .servicio .informacion p {
  font-size: 1.1rem;
}

.aliados_comerciales {
  padding-bottom: 6rem;
}
.aliados_comerciales h2 {
  text-align: center;
}
.aliados_comerciales .aliados {
  width: 100%;
  margin: 0 auto;
  margin-top: 4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.aliados_comerciales .aliados .aliado {
  width: 200px;
  height: 100%;
  box-sizing: border-box;
  padding: 1rem;
  border-radius: 25px;
  margin: 1rem 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #fff;
}
.aliados_comerciales .aliados .aliado img {
  width: 100%;
  height: auto;
}

.menu-mobile {
  display: none;
}

@media (max-width: 1025px) {
  .portada .swiper .swiper-wrapper .swiper-slide .contenido_slider h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }
  .servicios-page .servicios .servicio .cabecera p {
    font-size: 1.5rem;
  }
  .servicios-page .servicios .servicio .cabecera img {
    width: 100px;
  }
}
@media (max-width: 770px) {
  .portada header .menu {
    display: none;
  }
  .portada header .menu-mobile {
    display: block;
  }
  .portada header .menu-mobile img {
    width: 40px;
  }
  .portada header .menu-mobile .menu_ {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    z-index: 999;
  }
  .portada header .menu-mobile .menu_ img {
    width: 40px;
    margin-bottom: 2rem;
  }
  .portada header .menu-mobile .menu_ a {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    color: #212529;
    text-decoration: none;
  }
  .portada .swiper {
    margin-top: 1rem;
  }
  .portada .swiper .swiper-wrapper .swiper-slide .contenido_slider {
    padding: 0 2.5rem;
  }
  .somos {
    margin-top: 2rem;
  }
  .portada {
    height: 80vh;
  }
  .portada .swiper .swiper-wrapper .swiper-slide .contenido_slider h2 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .servicios .tarjetas_servicios {
    justify-content: space-between;
  }
  .servicios .tarjetas_servicios .tarjeta {
    margin: 0 0.5rem;
    width: 30%;
  }
  .servicios .tarjetas_servicios .tarjeta .contenido_tarjeta .icono {
    max-width: 90px;
  }
  .proyectos .fila_proyectos .proyecto {
    width: 25%;
    max-width: 25%;
  }
  .proyectos .fila_proyectos .proyecto img {
    height: 250px;
  }
  .contacto .formulario {
    max-width: 100%;
  }
  .contacto .formulario .info_contacto p {
    font-size: 1rem;
  }
  .servicios {
    padding: 3rem 0;
  }
  .portada2 {
    height: 65vh !important;
  }
}
@media (max-width: 430px) {
  .portada .swiper .swiper-wrapper .swiper-slide .contenido_slider h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .portada .swiper .swiper-wrapper .swiper-slide .contenido_slider p {
    font-size: 1rem;
  }
  .servicios h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .servicios .tarjetas_servicios {
    flex-wrap: wrap;
  }
  .servicios .tarjetas_servicios2 {
    margin-top: 0;
  }
  .servicios .tarjetas_servicios .tarjeta {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .elegirnos .subtitulo {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .elegirnos .subtitulo br {
    display: none;
  }
  .elegirnos .informacion .texto {
    width: 100%;
  }
  .elegirnos .informacion .texto2 {
    margin-top: 0;
  }
  .proyectos .fila_proyectos {
    flex-wrap: wrap;
  }
  .proyectos .fila_proyectos .proyecto {
    width: 100%;
    min-width: 100%;
    margin-bottom: 1rem;
  }
  .aliados_comerciales .aliados .aliado {
    width: 35%;
  }
  .contacto .formulario {
    flex-wrap: wrap;
  }
  .contacto .formulario .form {
    width: 100%;
  }
  .contacto .formulario .info_contacto {
    width: 100%;
  }
  footer {
    width: 90%;
    margin: 0 auto;
  }
  .portada2 {
    height: auto !important;
  }
  .servicios-page .servicios .servicio .cabecera {
    flex-wrap: wrap;
    justify-content: center;
  }
  .servicios-page .servicios .servicio .cabecera p {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
    text-align: center;
    margin-left: 0;
  }
  .servicios-page .servicios .servicio .cabecera p br {
    display: none;
  }
  .servicios-page .servicios .servicio .informacion p {
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=style.css.map */
