@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.bg-yellow {
  background-color: #FAFAED;
}

.bg-primary {
  background-color: #D4973C !important;
  border-color: #D4973C !important;
  font-size: 1.5rem;
}
.bg-primary:hover {
  background-color: #BF6B04 !important;
}

.errorField {
  border: 1px solid #E04B59 !important;
}

.messageError {
  color: #E04B59 !important;
  font-size: 1rem !important;
  margin: 0.25rem 0 0 !important;
}

.botao-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.botao-whatsapp:hover {
  transform: scale(1.1);
}

.botao-whatsapp img {
  width: 30px;
  height: 30px;
}

.bg-wpp {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
}
.bg-wpp:hover {
  background-color: #27804a !important;
  border-color: #27804a !important;
}

.gift {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.gift img {
  width: 15%;
  opacity: 1 !important;
  z-index: 1;
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

.pointer {
  cursor: pointer;
}

.close-gift {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.75rem;
  cursor: pointer;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.divider p {
  width: 45%;
}
.divider .separator {
  border: 1px solid #000000;
  height: 150px;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.body-center {
  position: relative;
  z-index: 1;
}

.road {
  position: relative;
  overflow: hidden; /* Esconde quando o carro estiver fora da tela */
}

.car {
  position: absolute;
  width: 50%;
  top: -50px;
  left: -200px; /* Começa fora da tela */
  animation: drive 15s linear infinite;
}

@media (max-width: 768px) {
  .car {
    width: 100vh; /* ocupa toda a altura como largura */
  }
}
/* Carro andando e reaparecendo do lado esquerdo */
@keyframes drive {
  0% {
    left: -1000px; /* Começa fora da esquerda */
  }
  100% {
    left: 100vw; /* Sai da tela pela direita */
  }
}

/*# sourceMappingURL=landing-page.css.map */
