body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*max-width: 1000px;*/
  margin: 0px;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

header {
  background: #1f2446;
  color: #fff;
  padding: 40px 0px;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 5fr 1fr;
  height: 80px;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index:2;
  height:100px !important;
}

body.sticky-header {
  padding-top: 50px;
  padding-bottom: 50px;
  
}

nav {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.menu {
  display: flex;
  gap: 10px;
  list-style: none;
  padding-bottom: 50px;
  justify-content: end;
}
.menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
  font-family: "Montserrat", sans-serif;
  margin-left: 22px;
  text-align: right;
}

.menu li a.menu_contacto {
  background-color: #e53221;
  font-weight: normal;
  padding: 10px;
  border-radius: 16px;
}

.menu li a:hover {
  color: #ffffff90;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
  width: 80%;
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
  }

  /* .logo {
    margin-right: 50px;
  } */

  .menu {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    background: #222;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);    
  }

  .menu li {
    padding: 10px 0px;
    border-bottom: 1px solid #333;
    text-align:center;
  }

  .menu li a {
    margin-left: 0px;
    width:90%;
    text-align:center;
  }

  .menu li:last-child {
    padding: 20px 0px;
    background-color: #e43220;
    border-radius:10px;
  }

  .menu.active {
    display: flex;
    width: 90%;
    padding: 0%;
    z-index: 2000;
  }
  .hamburger {
    display: flex;
    left: 50px;
  }

  h2 {
    font-size: 18px;
  }
}

.fuente-exo {
  font-family: "Exo 2", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* Banner */

#banner {
  background-color: #1f2446;
  width: 100%;
  margin-top:100px;
  padding-left:-20px;
}

#contenido-banner {
  background-color: #1f2446;
  color: #fff;
  padding: 30px 0px 0px 0px;
  bottom: 0px;
  display: grid;
  grid-template-columns: 1fr 3fr 4fr;
  z-index: 0;
  justify-content: space-around;
}

.texto-banner {
  vertical-align: middle;
  font-family: "Exo 2", sans-serif;
  display: flex;
  position: relative;
  align-items: center;
  font-size: 58px;
}

.texto-banner-unido {
  width: 100%;
  font-weight: normal;
  padding:20px;
}

.texto-banner h2 {
  font-weight: normal;
  font-size: 65px;
  font-style: normal;
  margin-right: 20px;
}

.imagen-banner {
  right: 0px;
  width: 100%;
  bottom: 0px;
  margin: 0px;
  border-radius: 100px 0px 0px 0px;
  padding: 0px;
  overflow: hidden;
  aspect-ratio: initial !important;
}

@media (max-width: 768px) {
  #banner {
    background-color: #1f2446;
    width: 100%;
    padding-right: 0px !important;
  }

  #contenido-banner {
    display: flex;
    flex-direction: column;
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  .imagen-banner {
    width: 100%;
    padding-right: 0px;
    margin-right: 0px;
    aspect-ratio: initial;
    overflow-x: hidden !important;
  }

  .texto-banner {
    height: 200px;
    width:auto;      
  }

  .texto-banner{    
    font-size:35px !important;
  }
}

#separador {
  height: 80px;
  background-image: url(img/forma-background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #1f2446;
  padding: 0px;
  margin: 0px;
}

/* Somos */

#somos {
  background-color: #e43220;
  color: #fff;
  padding-top: 90px;
  padding-bottom: 120px;
  border: 1px solid #e43220;
  width: 100%;
}

#contenido-somos {
  background-color: #e43220;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0px;
}

.texto-somos {
  text-align: center;
  vertical-align: middle;
  font-family: "Exo 2", sans-serif;
}

.texto-somos h2 {
  font-weight: 200;
  font-size: 80px;
  font-style: normal;
  width: 100%;
  text-transform: uppercase;
}

.texto-somos-subtitulo {
  font-weight: 200;
  font-size: 110px;
  margin-top: 20px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .somos {
    width: 100%;
    margin-top:0px !important;
  }

  #somos {
    height:300px !important;
  }

  .texto-somos {
    margin-top:0px !important;
    display:flex;
    flex-direction:column;
    justify-content: center;
    margin-bottom:20px;
    font-size:40px !important;
  }

  .texto-somos h2 {    
    font-size:30px !important;
  }

  .texto-somos-subtitulo h2{    
    font-size:55px !important;
  }

}

#separador-rojo {
  height: 120px;
  background-image: url(img/forma-separador-rojo.webp);
  background-color: #fff;
  border: 1px solid #e43220;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Agencia */

#contenido-agencia {
  background-color: #e43220;
  color: #fff;
  padding-left: 0px;
  display: grid;
  grid-template-columns: 8fr 7fr 1fr;
}

.texto-agencia {
  align-items: end;
  vertical-align: middle;
  font-family: "Exo 2", sans-serif;
  vertical-align: middle;
  display: flex;
  align-items: left;
  flex-direction: column;
  justify-content: center;
  margin-left: 10%;
  width: 80%;
}

.texto-agencia h3 {
  font-weight: 200;
  font-size: 30px;
  font-style: normal;
}

.segundo-parrafo-agencia {
  font-style: normal;
  font-weight: 800;
}

.imagen-agencia {
  width: 100%;
  height: auto;
  border-radius: 0px 100px 0px 0px;
  padding: 0px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #contenido-agencia {
    grid-template-columns: repeat(1, 1fr);
  }

  .imagen-agencia {
    width: 100%;
    margin: 0px;
  }

  .texto-agencia {
    margin: 0px;
    padding: 30px 0px;
    width: 100%;
  }
}

/* Termina agencia */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .imagen-creemos img {
    max-width: 100%;
  }

  h2 {
    font-size: 25px !important;
  }

  #somos {
    height: 200px;
    padding-top: 70px;
  }

  .somos {
    height: 50px;
  }

  .texto-somos-subtitulo {
    font-size: 30px !important;
  }

  .imagen-banner {
    height: 200px;
    margin: 0px;
    padding: 0px;
  }

  .texto-agencia {
    height: auto;
    padding-right: 20px;
    padding-left: 20px;
    margin: 40px 0px 40px 0px;
  }
}
/* Creemos */

#contenido-creemos {
  background-color: #1f2446;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  display: grid;
  grid-template-columns: 1fr 3fr 4fr;
}

.texto-creemos {
  font-family: "Exo 2", sans-serif;
  width: 100%;
  vertical-align: middle;
  display: flex;
  align-items: left;
  flex-direction: column;
  justify-content: center;
}

.texto-creemos h2 {
  font-weight: normal;
  line-height: 1;
  font-size: 84px;
  font-style: normal;
  width: 100%;
  padding: 40px 0px;
}

.imagen-creemos {
  right: 0px;
  bottom: 0px;
  background-size: cover;
  background-position: center;
  border-radius: 100px 0px 0px 0px;
  padding: 0px;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 768px) {
  #contenido-creemos {
    grid-template-columns: repeat(1, 1fr);
  }

  .imagen-creemos {
    width: 100%;
  }

  .texto-creemos {
    margin: 40px 0px 40px 0px;
    padding:0px 5% 0px 5%;
  }

  .texto-creemos h2{
    font-size:40px !important;
  }
}

/* Pensamos */

#contenido-pensamos {
  display: grid;
  grid-template-columns: 1fr 3fr 4fr;
}

.izquierda-pensamos {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.titulo-pensamos {
  font-family: "Exo 2", sans-serif;
  padding-bottom: 30px;
}

.titulo-pensamos h2 {
  font-weight: normal;
  font-size: 67px;
  font-style: normal;
  width: 100%;
  color: #1f2446;
  line-height: 1.1;
}

.texto-pensamos {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #1f2446;
  vertical-align: middle;
  display: flex;
  align-items: left;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.texto-pensamos p {
  font-weight: 400;
  line-height: 1.5;
}

.derecha-pensamos {
  right: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url(img/transparencia-pensamos.webp);
  background-size: 35%;
  background-repeat: no-repeat;
  background-position: right;
  background-position: top right;
}

.imagen-pensamos-superior {
  height: auto;
  width: 70%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  border-radius: 30px 30px 30px 30px;
  margin-bottom: 40px;
}

.imagen-pensamos-inferior {
  width: 70%;
  height: auto;
  min-height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  border-radius: 30px 30px 30px 30px;
}

.derecha-pensamos {
  right: 0px;
  bottom: 0px;
  top: 0px;
}

.imagen-fondo-pensamos {
  right: 0;
  top: 0;
  height: 100%;
  z-index: -1;
  position: absolute;
}

.imagen-fondo-pensamos img {
  height: 100%;
  object-fit: contain;
  right: 0px;
}

@media (max-width: 768px) {
  #contenido-pensamos {
    grid-template-columns: repeat(1, 1fr);
    padding: 40px 0px 40px 0px;
  }

  .imagen-fondo-pensamos {
    display: none;
  }

  .titulo-pensamos h2 {
    font-size:40px !important;
  }

  .izquierda-pensamos {
    width: 90%;
    margin-left: 5%;
  }

  .texto-pensamos {
    width: 90%;
    height: auto;
  }

  .derecha-pensamos {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .imagen-pensamos-superior,
  .imagen-pensamos-inferior {
    width: 80%;
    height: auto;
  }

  .imagen-pensamos-superior {
    margin-bottom:30px;
  }
}

/*Productos*/

#titulo-contenido-productos {
  background-color: #1f2446;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 30px;
  bottom: 0px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 6fr;
}

.titulo-productos {
  font-family: "Exo 2", sans-serif;
  position: relative;
  text-align: left;
}

.separador-productos {
  border: solid 0px 0px 2px 0px #ffffff;
  width: auto;
}

.contenido-productos {
  background-color: #1f2446;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 100px;
  bottom: 0px;
  position: relative;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 6fr 1fr;
}

.contenido-productos .productos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

.productos {
  gap: 0px;
}

.producto {
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: start;
  min-height: 260px;
  box-sizing: border-box;
  margin-top: 0px;
  align-items: center;
  margin-top: 0px;
}

.producto img {
  width: 100%;
  max-width: 150px;
}

.contenido-productos img {
  border-radius: 20px;
}

.texto-producto {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .productos {
    align-items: top;
    gap: 0px;
  }

  .producto {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    justify-self: center;
    margin: 0px;
    justify-items: space-between;
  }

  .producto img {
    width: 80%;
    height: auto;
  }

  .producto p {
    width:80%;
  }

  .contenido-productos .productos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    vertical-align: top;
  }
}

/* Parlemos */

#contenido-parlemos {
  background-image: url(img/fondo-parlemos.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr 2fr;
  color: #1f2446;
  height: auto;
  justify-content: center;
}

.texto-parlemos {
  font-family: "Exo 2", sans-serif;
  vertical-align: middle;
  margin-left: 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight:normal;
}

.texto-parlemos h2 {
  font-weight: normal;
  font-size: 73px;
  font-style: normal;
  width: 600px;
  line-height: 1;
}

.segundo-parrafo-parlemos {
  font-style: normal;
  font-weight: 700;
  color: #e43220;
}

.imagen-parlemos {
  width: 100%;
  border-radius: 0px 100px 0px 0px;
}

.boton-escribenos {
  background-color: #e43220;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  cursor: pointer;
  margin-top: 30px;
  font-size: 16px;
  width: 220px;
}

@media (max-width: 768px) {
  
  .contenido-parlemos {
    grid-template-columns:1fr;
  }

  .imagen-parlemos {
    display: none;
  }

  .texto-parlemos {
    display: grid;
    grid-template-columns:1fr, 1fr;
    margin:40px 0px;
    padding-left:40px;
  }

  .texto-parlemos h2 {
    width:250px;
    font-size:40px !important;
  }

  .boton-escribenos {
    width:150px;
  }

}

@media only screen and (min-width: 1400px) {
  .texto-parlemos {
    padding: 0px;
  }
}


/* Termina parlemos */

/* Footer */

#footer {
  background-color: #1f2446;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 200px;
}

.container-footer {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 6fr;
}

.titulo-footer {
  color: #fff;
  font-family: "Exo 2", sans-serif;
}

.titulo-footer {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.subtitulo-footer {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
}

.subtitulo-footer a {
  color: #fff;
  text-decoration: none;
}

.boton-footer {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
}

.boton-footer {
  color: #fff;
  text-decoration: none;
  width: 180px;
  text-align: center;
}

a {
  text-decoration: none !important;
}

.boton-footer h2,
.boton-footer a {
  text-decoration: none;
  font-size: 14px;
}

@media (max-width: 768px) {
  .container {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  #footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-right: 0px;
    padding-left: 0px;
  }

  body {
    overflow-x: hidden;
    margin: 0px;
    padding-right: 0px;
    margin-right: 0px;
    margin-left: 0px;
    padding-left: 0px;
    width:100%;
  }
}

@media (max-width: 768px) {
  .container-footer {
    display:flex;
    flex-direction:column;
    justify-content: center;
    margin-left:20%;
  }

  .header-sticky {
    padding:25px 0px;
    height:30px;
    margin:0px;
    display:grid;
    grid-template-columns: 1fr 4fr 1fr 1fr;
  }

  nav {
    padding:0px;
    margin:0px;
  }

}


#contactoModal {
  color:#fff;
  z-index:300;
}

#contactoModal h2{
  font-family:"Exo 2", sans-serif;
}

#contactoModal label{
  font-family: "Montserrat", sans-serif;
}

#contactoModal input {
  border-radius:8px;
  border:0px;
}

#contactoModal button{
  font-family: "Montserrat", sans-serif;
  background-color:#1f2446;
}

.g-recaptcha {
  padding:20px 0px;
}

/* Google form */

.form-container {
  background-color: #e43220;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family:'Montserrat', sans-serif;
  font-weight:normal;
}

label {
  display: block;
  margin: 20px 0 5px;
  font-family:'Montserrat', sans-serif;
  font-weight:normal;
}

#contactoModal button:nth-of-type(2){
  margin-top: 40px !important;
  background-color: #1f2446 !important;
  color: white !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  font-family:'Montserrat', sans-serif !important;
  font-weight:500 !important;
}