* {
  scroll-behavior: smooth;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

  .box-menu button {
    font-family: 'Roboto', sans-serif;
    line-height: 1.19;
  }

/* Deshabilita el pull-to-refresh y el efecto de rebote en iOS */
/* body {
  overscroll-behavior-y: contain;
} */

.bttnPrincipal {
  padding: 15px 50px;
  background-color: #FC7E00;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 18px;
  transition: 0.5s;
  font-family: 'Roboto', sans-serif;
}

.bttnPrincipal:hover{
    background-color: #E26B04;
}
.fwidth {
  position: relative;
}

.hero {
  background-color: #002646;
}

.heroContainer {
  display: flex;
  padding: 60px 90px;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
  min-height: 75vh;
}

.heroContainer h1 {
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-weight: 600;
  font-size: 45px;
  max-width: 450px;
}

.heroContainer h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0em;
  text-align: left;
  color: white;
  margin: 40px 0 50px;
  max-width: 400px;
}

.heroImg {
  padding-bottom: 50px;
}

.heroImg img {
  border-radius: 10px;
}

.containerSteps {
  background-color: #002646;

}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 0 90px 90px;
}

.titleSteps{
  display: flex;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;

  color: white;
}

.titleSteps span {
  background-color:#FC7E00;
  height: fit-content;
  padding: 0 10px 0 8px;
  color: white;
  font-weight: 600;
  font-size: 20px;
}

.titleSteps h2 {
  color: white;
  font-weight: 700;
  min-height: 50px;
  margin-bottom: 10px;
}

.steps p {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  margin-top: -5px;
  color: white;
  font-weight: 300;
}

@media (min-width:1209px) {
  .containerLayout {
      margin: 0 auto;
      max-width: 1366px
  }
}

@media (min-width:768px) and (max-width:1800px) {
  nav, footer {
      zoom: .85
  }
}