#hero {
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(0px, 0.78125vw, 10px);
  background-color: #ffe0c9;
  padding: 16em 0 10em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hero .wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 110em;
}
#hero .wrapper .descripcion {
  display: flex;
  flex-direction: column;
  padding-top: 1.8em;
}
#hero .wrapper .descripcion h1 {
  font-size: 2.4em;
  font-weight: 400;
  line-height: 1.2em;
  color: #fd8100;
  margin-bottom: 0.2em;
  display: flex;
  align-items: flex-start;
}
#hero .wrapper .descripcion h1 span {
  position: relative;
  font-size: 1.2em;
  transform: translateY(-0.25em);
}
#hero .wrapper .descripcion h2 {
  display: flex;
  flex-direction: column;
  font-size: 4.3em;
  font-weight: 600;
  max-width: 20em;
  line-height: 1.1em;
  margin-bottom: 0.3em;
}
#hero .wrapper .descripcion h2 span {
  color: #fd8100;
  display: inline-block;
}
#hero .wrapper .descripcion p.destacado {
  font-size: 1.71em;
  line-height: 1.2em;
  max-width: 25em;
  font-weight: 500;
  margin-bottom: 1.5em;
}
#hero .wrapper .descripcion img {
  display: block;
  max-width: 40em;
  height: auto;
  margin-bottom: 7.5em;
}
#hero .wrapper .descripcion .slogan {
  font-size: 1.71em;
  color: #fd8100;
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
}
#hero .wrapper .descripcion .slogan span {
  position: relative;
  transform: translateY(-0.25em);
}
#hero .wrapper .hero-imagen {
  display: block;
  width: 50em;
  height: auto;
}

@media screen and (max-width: 640px) {
  #hero {
    font-size: clamp(10px, 3.125vw, 20px);
    padding-top: 6em;
    padding-bottom: 5em;
  }
  #hero .wrapper {
    flex-direction: column;
    width: auto;
    gap: 1.6em;
  }
  #hero .wrapper .descripcion h1 {
    font-size: 0.9em;
  }
  #hero .wrapper .descripcion h2 {
    font-size: 2.5em;
  }
  #hero .wrapper .descripcion p.destacado {
    font-size: 1.08em;
    max-width: 22em;
    margin-bottom: 1.4em;
  }
  #hero .wrapper .descripcion img {
    max-width: 20em;
    margin-bottom: 3.5em;
  }
  #hero .wrapper .descripcion .slogan {
    font-size: 1.4em;
  }
  #hero .wrapper .hero-imagen {
    width: 23.7em;
  }
}
#beneficios {
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(0px, 0.78125vw, 10px);
  padding: 8em 0;
  display: flex;
  justify-content: center;
  position: relative;
}
#beneficios picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#beneficios picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#beneficios ul {
  display: flex;
  width: 98em;
  gap: 1.6em;
}
#beneficios ul li {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2em;
  padding: 2em 2.2em;
}
#beneficios ul li .icono {
  width: 4.7em;
  height: 4.7em;
  transform: translateX(-0.5em);
  margin-bottom: 0.4em;
}
#beneficios ul li h4 {
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.05em;
  color: #27067f;
  margin-bottom: 0.4em;
}

@media screen and (max-width: 640px) {
  #beneficios {
    font-size: clamp(10px, 3.125vw, 20px);
    padding: 2.8em 0;
  }
  #beneficios ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
    width: 27.5em;
  }
  #beneficios ul li {
    padding: 1.6em 1.2em 2em 1.8em;
  }
  #beneficios ul li .icono {
    width: 3.2em;
    height: 3.2em;
    transform: translateX(-0.2em);
    margin-bottom: 1em;
  }
  #beneficios ul li h4 {
    font-size: 1.4em;
    line-height: 1.05em;
    margin-bottom: 0.4em;
  }
  #beneficios ul li h4 br {
    display: none;
  }
}
#funcionalidades {
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(0px, 0.78125vw, 10px);
  padding: 6em 0 6em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: #cc4900;
}
#funcionalidades .wrapper {
  width: 111.7em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#funcionalidades .wrapper h2 {
  font-size: 1.64em;
  display: flex;
  margin-bottom: 1.4em;
  font-weight: 500;
  border: 1px solid #f4d0bb;
  color: #fff;
  padding: 0.1em 0.7em;
  border-radius: 0.3em;
}
#funcionalidades .wrapper h3 {
  font-size: 3.2em;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
  margin-bottom: 1.1em;
  font-style: italic;
  color: #fff;
}
#funcionalidades .wrapper ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 2.4em;
       column-gap: 2.4em;
  row-gap: 1em;
  width: 100%;
}
#funcionalidades .wrapper ul li {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.6em;
  padding: 2.8em 3.2em 3.2em 3.2em;
}
#funcionalidades .wrapper ul li .cabecera {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1em;
}
#funcionalidades .wrapper ul li .icono {
  width: 6.4em;
  height: 6.4em;
  transform: translateX(-0.2em);
}
#funcionalidades .wrapper ul li .etiqueta {
  font-size: 1.2em;
  font-weight: 500;
  color: #fd8100;
  border: 1px solid #ffd3cc;
  border-radius: 2em;
  padding: 0.25em 0.8em;
  line-height: 1em;
  white-space: nowrap;
}
#funcionalidades .wrapper ul li h4 {
  font-size: 2.2em;
  font-weight: 600;
  line-height: 1.15em;
  color: #fd8100;
  margin-bottom: 0.4em;
}
#funcionalidades .wrapper ul li p {
  font-size: 1.3em;
  line-height: 1.25em;
  color: #1b387a;
}

@media screen and (max-width: 640px) {
  #funcionalidades {
    font-size: clamp(10px, 3.125vw, 20px);
    padding-top: 4.2em;
    padding-bottom: 4em;
  }
  #funcionalidades .wrapper h2 {
    font-size: 1.2em;
    margin-bottom: 1em;
  }
  #funcionalidades .wrapper h3 {
    font-size: 1.93em;
    max-width: 13em;
    margin-bottom: 1.6em;
  }
  #funcionalidades .wrapper h3 span {
    display: block;
  }
  #funcionalidades .wrapper ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2em;
    width: 27.5em;
  }
  #funcionalidades .wrapper ul li {
    padding: 1.4em 1.3em 1.8em;
  }
  #funcionalidades .wrapper ul li .cabecera {
    margin-bottom: 0.8em;
  }
  #funcionalidades .wrapper ul li .icono {
    width: 3.2em;
    height: 3.2em;
  }
  #funcionalidades .wrapper ul li .etiqueta {
    font-size: 0.75em;
    padding: 0.2em 0.6em;
  }
  #funcionalidades .wrapper ul li h4 {
    font-size: 1.2em;
    margin-bottom: 0.4em;
  }
  #funcionalidades .wrapper ul li p {
    font-size: 0.85em;
    line-height: 1.3em;
  }
}
#inventario {
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(0px, 0.78125vw, 10px);
  padding: 8em 0 0 0;
  display: flex;
  justify-content: center;
  background-color: #012c71;
}
#inventario .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4em;
  width: 91.4em;
}
#inventario .wrapper .contenido {
  display: flex;
  flex-direction: column;
  gap: 2.6em;
  max-width: 52em;
  margin-bottom: 4em;
}
#inventario .wrapper .contenido h2 {
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.05em;
  color: #fff;
  margin: 0;
}
#inventario .wrapper .contenido h2 span {
  font-style: italic;
  color: #3985ff;
}
#inventario .wrapper .contenido .destacados {
  display: block;
  width: 28em;
  height: auto;
}
#inventario .wrapper .mobile {
  flex-shrink: 0;
  margin-right: 2em;
}
#inventario .wrapper .mobile img {
  display: block;
  width: 44em;
  height: auto;
}

@media screen and (max-width: 640px) {
  #inventario {
    font-size: clamp(10px, 3.125vw, 20px);
    padding: 4em 0 0 0;
  }
  #inventario .wrapper {
    flex-direction: column;
    width: 27.5em;
    gap: 2.4em;
  }
  #inventario .wrapper .contenido {
    gap: 1.6em;
    max-width: none;
    margin-bottom: 2em;
  }
  #inventario .wrapper .contenido h2 {
    font-size: 2.4em;
  }
  #inventario .wrapper .contenido .destacados {
    width: 18em;
  }
  #inventario .wrapper .mobile {
    margin-right: 0;
  }
  #inventario .wrapper .mobile img {
    width: 100%;
  }
}
#obrabot {
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(0px, 0.78125vw, 10px);
  padding: 0 0 6em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: #cc4900;
}
#obrabot .wrapper {
  display: flex;
  align-items: stretch;
  gap: 2.4em;
  width: 111.7em;
}
#obrabot .wrapper .presentacion {
  width: 40em;
}
#obrabot .wrapper .presentacion img {
  display: block;
  width: 100%;
  height: auto;
}
#obrabot .wrapper .caracteristicas {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4em;
  list-style: none;
  padding: 0;
  margin: 0;
}
#obrabot .wrapper .caracteristicas li {
  flex: 1;
  background-color: #ffcd99;
  border-radius: 2.4em;
  padding: 2.4em 1.6em 2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.4em;
}
#obrabot .wrapper .caracteristicas li img {
  width: 4.8em;
  height: 4.8em;
  flex-shrink: 0;
}
#obrabot .wrapper .caracteristicas li p {
  color: #1b387a;
  font-size: 2.1em;
  font-weight: 600;
  line-height: 1.1em;
  margin: 0;
}

@media screen and (max-width: 640px) {
  #obrabot {
    font-size: clamp(10px, 3.125vw, 20px);
    padding: 0 0 4em 0;
  }
  #obrabot .wrapper {
    flex-direction: column;
    width: 27.5em;
    gap: 1.2em;
  }
  #obrabot .wrapper .presentacion {
    width: 100%;
  }
  #obrabot .wrapper .caracteristicas {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.2em;
  }
  #obrabot .wrapper .caracteristicas li {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 1.2em 1.4em;
    gap: 1em;
    border-radius: 1em;
  }
  #obrabot .wrapper .caracteristicas li img {
    width: 2.4em;
    height: 2.4em;
  }
  #obrabot .wrapper .caracteristicas li p {
    font-size: 1.1em;
    width: 14em;
  }
  #obrabot .wrapper .caracteristicas li p br {
    display: none;
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}/*# sourceMappingURL=section.css.map */