@keyframes tilt {
  0% {
    transform: rotate(0deg);
  }

  4% {
    transform: rotate(1deg);
  }

  8% {
    transform: rotate(0deg);
  }

  12% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.tilt {
  animation: tilt 0.8s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(0.98)
  }

  100% {
    transform: scale(1)
  }
}

.pulse {
  animation: pulse 1s ease infinite alternate;
}

body {
  background: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-direction: column;
  width: 100%;
}

.main_content {
  width: 90%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.logo {
  width: 60%;
  margin: 10px 0 5px 0;
  border-radius: 50%;
}

.frase_topo {
  margin: 40px 0 15px 0;
  color: #f0f0f0;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-align: center;
  /* text-transform: uppercase; */
  text-rendering: optimizeLegibility !important;
  width: 95%;
}

.titulo_topo {
  margin: 10px 0 15px 0;
  color: #f0f0f0;
  font-size: 1.3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  text-rendering: optimizeLegibility !important;
  width: 95%;
}

.normal_text {
  text-transform: none;
}

.small_text {
  text-transform: none;
  color: #444;
  font-size: 0.7rem;
  margin-top: 10px;
  width: 85%;
}

.menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 75%;
}

/* .menu>a:first-of-type {
  margin-bottom: 25px;
} */

.bt {
  background: #0f0f0f;
  width: 95%;
  margin: 12px 0;
  outline: none;
  padding: 14px 35px;
  border-style: solid;
  border-width: 2px;
  border-color: #B1B1B1;
  border-radius: 10px;
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, .14);
  font-size: 1.3rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-shadow: 0 4px 4px #f0f0f020;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 100ms ease-in-out;
  text-rendering: optimizeLegibility !important;
  scale: 1;
}

.small {
  font-size: 1.1rem;
}

.bt:active,
.bt:focus,
.bt:hover {
  scale: 1.05;
  background: #f0f0f020;
  border-color: #f0f0f020;
}

.bt.wpp {
  color: #fff;
  background: #06bc07;
  border-color: #14991e;
  text-shadow: 0 4px 4px #14991e;
}

.bt.wpp:active,
.bt.wpp:focus,
.bt.wpp:hover {
  scale: 1.05;
  background: #14991e;
}

.bt.wpp_black {
  color: #fff;
  background: #222;
  border-color: #fdfdfd;
  text-shadow: 0 4px 4px #fdfdfd;
}

.bt.wpp_black:active,
.bt.wpp_black:focus,
.bt.wpp_black:hover {
  scale: 1.05;
  background: #fdfdfd;
}

.bt img {
  width: 22px;
  margin: 0 5px 0 -5px;
}

.bt div {
  text-align: center;
  flex: 1;
}

.color_white {
  filter: invert(100%);
}

.color_change {
  filter: invert(6%) sepia(66%) saturate(5482%) hue-rotate(17deg) brightness(91%) contrast(111%);
}

.caramel {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  background: #101010;
  padding: 15px 0;
}

.made {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-decoration: none;
  font-style: normal;
  text-align: center;
}

.logocaramel {
  display: block;
  margin-top: 10px;
  text-align: center;
}

.footer_line {
  width: 100%;
  margin-top: 50px;
  /* margin-bottom: 30px; */
  border-bottom: 1px solid #303030;
}

.text_footer {
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  color: #d6d6d6;
  text-align: center;
  margin: 4px 0;
  margin-bottom: 30px;
}

/* FORMULÁRIO DE CONTATO */

.form_contact {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 85%;
}

.input_form {
  background: #fffbf3;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility !important;
  font-weight: 400;
  padding: 15px 0 15px 15px;
  margin-top: 10px;
  font-size: 18px;
  border: 1px solid #0f0f0f;
  border-radius: 6px;
  outline: 0;
  transition: all 400ms ease-in-out;
  z-index: 1000;
}

.input_form:focus {
  box-shadow: 0 2px 30px #0f0f0f, 0 0 0 5px #0f0f0f30;
  z-index: 1;
}

.input_form:-webkit-autofill,
.input_form:-webkit-autofill:hover,
.input_form:-webkit-autofill:focus {
  color: #f0f0f0;
  -webkit-text-fill-color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility !important;
  font-weight: 400;
  transition: all 400ms ease-in-out;
}

.input_form::placeholder,
.input_form::-webkit-input-placeholder,
.input_form:-moz-placeholder,
.input_form::-moz-placeholder {
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility !important;
  font-weight: 400;
  transition: all 400ms ease-in-out;
}

.input_form:hover::placeholder,
.input_form:hover::-webkit-input-placeholder,
.input_form:hover:-moz-placeholder,
.input_form:hover::-moz-placeholder {
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility !important;
  font-weight: 400;
  transition: all 400ms ease-in-out;
}

.button_cta {
  display: flex;
  justify-content: center;
  align-items: center;
  scale: 1;
  background: #0f0f0f;
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, .14);
  cursor: pointer;
  outline: 0;
  padding: 14px 35px;
  border-style: solid;
  border-width: 0 0 3px;
  border-color: #f0f0f020;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 4px 4px #f0f0f020;
  margin: 25px 0 10px 0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 500px 500px 500px 500px;
  transition: all 100ms ease-in-out;
  padding: 10px 10px;
}

.button_cta:active,
.button_cta:focus,
.button_cta:hover {
  background: #f0f0f020;
  scale: 1.05;
}

@media (max-width: 370px) {
  .bt {
    font-size: 1.1rem;
    width: 105%;
    padding: 14px 30px;
  }
}