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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fef3e7;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

header .header-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  header .header-top {
    flex-wrap: wrap;
    justify-content: center;
  }
}
header .header-top .logo a {
  text-decoration: none;
}
header .header-top .logo a img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
@media (max-width: 768px) {
  header .header-top .logo a img {
    max-width: 135px;
  }
}
header .header-top nav {
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .header-top nav a {
  text-decoration: none;
  cursor: pointer;
  margin-left: 1rem;
  background-color: transparent;
  color: #153a55;
  font-size: 1.2rem;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
}
@media (max-width: 768px) {
  header .header-top nav a {
    display: none;
  }
}

.banner .banner_img {
  width: 100%;
  position: relative;
  height: auto;
  min-height: 450px;
  background: url("../img/banner1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 500px) {
  .banner .banner_img {
    padding: 1rem;
  }
}
.banner .banner_img h1 {
  color: #fff;
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: bold;
  width: 100%;
  max-width: 70%;
  z-index: 2;
}
@media (max-width: 500px) {
  .banner .banner_img h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    max-width: 100%;
  }
  .banner .banner_img h1 br {
    display: none;
  }
}
.banner .banner_img a {
  margin-top: 2rem;
  text-decoration: none;
  cursor: pointer;
  margin-left: 1rem;
  background-color: #153a55;
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  z-index: 2;
}
@media (max-width: 500px) {
  .banner .banner_img a {
    font-size: 1rem;
  }
}
.banner .banner_img a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 0.5rem;
}
.banner .banner_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* Ajusta el nivel de opacidad aquí */
  border-radius: 15px;
  z-index: 1;
}

.somos {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}
.somos .texto {
  width: 50%;
  height: auto;
  box-sizing: border-box;
  padding-right: 3rem;
}
@media (max-width: 500px) {
  .somos .texto {
    width: 100%;
    padding-right: 0;
  }
}
.somos .texto p {
  font-size: 1.2rem;
  font-weight: normal;
  color: #111;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}
.somos .texto p span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #153a55;
}
@media (max-width: 500px) {
  .somos .texto p span {
    text-align: center;
  }
}
.somos .imagen {
  width: 50%;
  height: auto;
  background: url("../img/banner2.jpg");
  border-radius: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
}
@media (max-width: 500px) {
  .somos .imagen {
    width: 100%;
    height: 250px;
  }
}

.intro-servicios {
  margin-top: 5rem;
  margin-bottom: 5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 500px) {
  .intro-servicios {
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
}
.intro-servicios h2 {
  color: #153a55;
  text-align: center;
  width: 50%;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: normal;
}
.intro-servicios h2 span {
  font-weight: bold;
}
@media (max-width: 500px) {
  .intro-servicios h2 {
    font-size: 2rem;
    line-height: 3rem;
    width: 100%;
  }
}
.intro-servicios .intro-items {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 500px) {
  .intro-servicios .intro-items {
    justify-content: center;
  }
}
.intro-servicios .intro-items .intro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}
@media (max-width: 500px) {
  .intro-servicios .intro-items .intro-item {
    width: 90%;
    margin-bottom: 2rem;
  }
}
.intro-servicios .intro-items .intro-item img {
  width: 50px;
  height: 50px;
}
.intro-servicios .intro-items .intro-item h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #153a55;
  font-weight: bold;
  margin: 0.5rem 0;
}
.intro-servicios .intro-items .intro-item p {
  font-size: 0.9rem;
  font-weight: normal;
  color: #111;
  line-height: 1.5rem;
  text-align: center;
}

.servicios {
  margin-top: 5rem;
  margin-bottom: 5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 500px) {
  .servicios {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
.servicios h2 {
  color: #153a55;
  text-align: center;
  width: 50%;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: normal;
}
.servicios h2 span {
  font-weight: bold;
}
@media (max-width: 500px) {
  .servicios h2 {
    font-size: 2rem;
    width: 100%;
    line-height: 3rem;
  }
}
.servicios .lista_servicios {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.servicios .lista_servicios .servicio {
  width: 25%;
  padding: 0 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .servicios .lista_servicios .servicio {
    width: 50%;
    margin-bottom: 2rem;
  }
  .servicios .lista_servicios .servicio h3 {
    font-size: 1.2rem;
  }
  .servicios .lista_servicios .servicio p {
    font-size: 0.8rem;
  }
}
@media (max-width: 500px) {
  .servicios .lista_servicios .servicio {
    width: 100%;
  }
}
.servicios .lista_servicios .servicio img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}
.servicios .lista_servicios .servicio .contenido {
  box-sizing: border-box;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 210px;
}
.servicios .lista_servicios .servicio .contenido h3 {
  font-size: 1.3rem;
  line-height: 2rem;
  text-align: center;
  color: #153a55;
  margin: 1rem 0;
}
.servicios .lista_servicios .servicio .contenido p {
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: #111;
  text-align: center;
}
.servicios .lista_servicios .servicio a {
  text-decoration: none;
  cursor: pointer;
  margin-left: 1rem;
  background-color: #153a55;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
}
.servicios .lista_servicios .servicio a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 0.5rem;
}

.contactanos {
  margin-top: 5rem;
  margin-bottom: 5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 500px) {
  .contactanos {
    margin-top: 0;
  }
}
.contactanos .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.contactanos .row .redes {
  width: 50%;
  box-sizing: border-box;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .contactanos .row .redes {
    width: 100%;
    padding-right: 0;
  }
}
.contactanos .row .redes h2 {
  color: #153a55;
  text-align: left;
  width: 100%;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: normal;
}
.contactanos .row .redes h2 span {
  font-weight: bold;
}
@media (max-width: 768px) {
  .contactanos .row .redes h2 {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .contactanos .row .redes h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.contactanos .row .redes p {
  width: 85%;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
@media (max-width: 768px) {
  .contactanos .row .redes p {
    width: auto;
    text-align: center;
  }
}
.contactanos .row .redes .contacto {
  margin: 2rem 0;
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media (max-width: 768px) {
  .contactanos .row .redes .contacto {
    align-items: center;
    justify-content: center;
  }
}
.contactanos .row .redes .contacto img {
  width: 25px;
  height: 25px;
  margin-right: 1rem;
}
.contactanos .row .formulario {
  width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .contactanos .row .formulario {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .contactanos .row .formulario {
    margin-top: 2rem;
  }
}
.contactanos .row .formulario p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #153a55;
}
@media (max-width: 500px) {
  .contactanos .row .formulario p {
    text-align: center;
    width: 90%;
  }
}
.contactanos .row .formulario p span {
  font-weight: bold;
}
.contactanos .row .formulario form {
  width: 90%;
}
@media (max-width: 500px) {
  .contactanos .row .formulario form {
    width: 80%;
  }
}
.contactanos .row .formulario form .group {
  width: 100%;
  margin-bottom: 1rem;
}
.contactanos .row .formulario form .group label {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #111;
}
.contactanos .row .formulario form .group input {
  width: 100%;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  font-size: 1rem;
  color: #111;
  background-color: transparent;
  border: 1px solid #153a55;
  border-radius: 15px;
}
.contactanos .row .formulario form .btn {
  width: 100%;
}
.contactanos .row .formulario form .btn button {
  cursor: pointer;
  border: 0;
  background-color: #153a55;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 2rem;
  border-radius: 5px;
}
@media (max-width: 500px) {
  .contactanos .row .formulario form .btn button {
    width: 100%;
  }
}

footer {
  width: 100%;
  margin-top: 4rem;
  padding: 0 1rem;
  padding-bottom: 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer img {
  width: 200px;
  height: auto;
}
footer p {
  font-size: 1rem;
  color: #153a55;
  text-align: center;
}

.wpp_flotante {
  position: fixed;
  z-index: 1;
  bottom: 1rem;
  right: 1rem;
  height: auto;
  cursor: pointer;
  text-decoration: none;
}
.wpp_flotante img {
  width: 70px;
  height: auto;
}

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