@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
#container-1 {
  width: 100%;
  height: auto;
  background-color: #985f41;
  padding: 0 18vw; /* 240px em vw (aproximadamente) */
  box-sizing: border-box;
}

#page-1 {
  display: flex;
  color: #fffcfb;
  width: 100%;
  margin-bottom: 13%;
}

#cta {
  width: 100%;
  height: auto;
  max-width: 70vw;
  max-height: 80vh;
  display: grid;
  flex-direction: column;
  gap: 9vh; /*  */
  padding: 0;
  margin: 0;
}

.title {
  margin: 0;
  width: 100%;
  font-size: 1.8vw; /* Aproximadamente 62px */
}

.description {
  margin: 0;
  width: 80%;
  font-size: 1.4vw; /*  */
  font-weight: 400;
}
.description span {
  font-weight: bold;
}

.btn-default {
  color: #fffcfb;
  border-radius: 60px;
  font-size: 1.4vw; /*  */
  font-weight: 500;
  display: inline-flex;
  max-width: 33vw; /*  */
  width: 100%;
  height: auto;
  background-color: #25d366;
  padding: 1vw 2vw; /*  */
  gap: 2vh; /*  */
  transition: background-color 0.3s, transform 0.3s;
  text-decoration: none;
  text-align: center;
  align-items: center;
}

.icon-whatsapp {
  fill: #fffcfb;
  width: 3rem; /*  */
  height: auto;
  margin-right: 6px;
  text-align: center;
}

.btn-default:hover {
  background-color: #25d366; /*  */
  transform: scale(1.1);
}
.btn-default:hover a {
  color: #fffcfb; /*  */
}

@media screen and (max-width: 600px) {
  #container-1 {
    padding: 0 7vw; /* 240px em vw (aproximadamente) */
  }
  #page-1 {
    margin-bottom: 18%; /*  */
  }
  #cta {
    gap: 60px; /*  */
    max-width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .title {
    margin: 0;
    width: 100%;
    font-size: 6vw; /* Aproximadamente 62px */
  }
  .description {
    width: 100%;
    font-size: 5vw; /*  */
  }
  .description span {
    font-weight: bold;
  }
  .btn-default {
    font-size: 5vw; /*  */
    display: flex;
    max-width: 90%; /*  */
    gap: 0vh; /*  */
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 4vh;
    padding-right: 3vh;
  }
  .icon-whatsapp {
    fill: #fffcfb;
    width: 2.7rem; /*  */
    height: auto;
    margin-right: 0vw;
    margin-left: 2vh;
    text-align: center;
  }
}/*# sourceMappingURL=page-1.css.map */