@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Montserrat", sans-serif;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none;
}

.top {
  background-color: #1E1C19;
}

.banner {
  background-image: url(../img/banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 780px;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.64;
  pointer-events: none;
}

.buttons {
  display: flex;
  gap: 10px;
  max-width: 550px;
  margin: 0 auto;
}

.whats-btn {
  background-color: #2AC43F;
  fill: #FFFFFF;
  color: #FFFFFF;
  transition-duration: 0.3s;
  border-style: solid;
  border-color: #2AC43F;
  border-radius: 31px 31px 31px 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 10px;
  gap: 7px;
  max-width: 250px;
  width: 100%;
  font-weight: 600;
}

.whats-btn:hover {
  filter: brightness(.9);
  color: #fff;
  transition-duration: 0.3s;
}

.sobre-btn {
  background-color: #fff;
  fill: #000;
  color: #000;
  transition-duration: 0.3s;
  border-style: solid;
  border-color: #fff;
  border-radius: 31px 31px 31px 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 10px;
  gap: 7px;
  max-width: 250px;
  width: 100%;
  font-weight: 600;
}

.sobre-btn svg {
  width: 20px;
  transition-duration: 0.3s;
}

.sobre-btn:hover svg {
  transform: rotate(90deg);
  transition-duration: 0.3s;
}

.sobre-btn:hover {
  background-color: #e7c16d;
  border-color: #e7c16d;
  fill: #000;
  color: #000;
  transition-duration: 0.3s;
}

.banner p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.arrow-down {
  animation: arrowBounce 1.2s infinite ease-in-out;
}

@keyframes arrowBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.6;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.eros {
  background-color: #22201D;
}

.eros h2 {
  font-size: 38px;
  font-weight: 700;
  color: #E8C581;
}

.eros p {
  text-shadow: 0px 0px 46px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-weight: 500;
  font-size: 21px;
}

.insul {
  background-color: #E4D2C3;
}

.insul h2 {
  font-size: 38px;
  font-weight: 700;
  color: #242E57;
}

.insul p {
  text-shadow: 0px 0px 46px rgba(0, 0, 0, 0.3);
  color: #000;
  font-weight: 500;
  font-size: 21px;
}

.reviews {
  background-color: #1B1B1B;
}

.reviews h2 {
  font-size: 48px;
  color: #E8C581;
  text-align: center;
}

.review-box {
  background-color: #AAAAAA47;
  max-width: 330px;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}

.review-box svg {
  width: 25px;
  height: 25px;
  fill: #fec42d;
}

.review-box h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}

.review-box h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.review-box p {
  color: #fff;
  font-weight: 500;
  font-size: 17px;
}

.formulario {
  background-color: #E4D2C3;
}

.form-wrapper {
  max-width: 520px;
  background: #232323;
  border-radius: 28px;
  padding: 32px 28px 36px;
  margin: 40px auto;
  color: #fff;
}

.brand {
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-size: 15px;
  color: #d6b46f;
  margin-bottom: 28px;
}

label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.required {
  color: #ff4d4d;
}

.form-control,
.form-select {
  background: #f7f7f7;
  border-radius: 8px;
  height: 48px;
  font-size: 14px;
}

.form-control::placeholder {
  color: #9c9c9c;
}

.btn-whatsapp {
  background: #1db954;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  padding: 14px;
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.btn-whatsapp:hover {
  background: #17a84a;
}

.conheca {
  background-color: #1E1C19;
}

.conheca h2 {
  font-size: 48px;
  color: #E8C581;
  text-align: center;
  font-weight: 600;
}

.conheca p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.conheca span {
  color: #E8C581;
  font-weight: 600;
}

.line {
  width: 100%;
  height: 2px;
  background-color: #E8C581;
}

@media(max-width:1366px) {
  .review-box {
    max-width: 285px;
    height: 390px;
  }
}

@media(max-width:821px) {
  .top img {
    width: 200px;
  }

  .banner {
    min-height: unset;
  }

  .banner p {
    color: #E8C581;
    font-size: 21px;
  }

  .buttons {
    display: block;
    width: 100%;
  }

  .whats-btn,
  .sobre-btn {
    max-width: 500px;
    width: 100%;
  }

  .eros h2,
  .insul h2 {
    text-align: center;
    margin-bottom: 15px;
  }

  .eros p,
  .insul p {
    font-size: 18px;
    text-align: center;
  }

  .reviews h2,
  .conheca h2 {
    font-size: 32px;
  }

  .review-box {
    max-width: 500px;
    width: 100%;
    margin-bottom: 20px;
  }

  .form-wrapper {
    max-width: 520px;
    width: 100%;
    margin: 0 auto 40px auto;
  }

  .conheca p {
    font-size: 17px;
  }
}