@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: #000A21;
  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: 50%;
  margin: 10px 0 5px 0;
}

.frase_topo {
  margin: 35px 0 10px 0;
  color: #fefefe;
  font-size: 0.95rem;
  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: #dddfe6;
  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: #CF366E;
  width: 105%;
  margin: 10px 0;
  outline: none;
  padding: 14px 35px;
  border-style: solid;
  border-width: 0 0 3px;
  border-color: #A30B42;
  border-radius: 500px 500px 500px 500px;
  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 #A30B42;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: all 100ms ease-in-out;
  text-rendering: optimizeLegibility !important;
  scale: 1;
}

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

.bt.wpp {
  color: #fff;
  background: #199d0f;
  border-color: #0f7807;
  text-shadow: 0 4px 4px #0f7807;
}

.bt.wpp:active,
.bt.wpp:focus,
.bt.wpp:hover {
  scale: 1.05;
  background: #0f7807;
}

.bt img {
  width: 20px;
}

.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: #a65900;
  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;
  border-bottom: 1px solid #fefefe;
}

.text_footer {
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  color: #fefefe;
  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 #CF366E;
  border-radius: 6px;
  outline: 0;
  transition: all 400ms ease-in-out;
  z-index: 1000;
}

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

.input_form:-webkit-autofill,
.input_form:-webkit-autofill:hover,
.input_form:-webkit-autofill:focus {
  color: #000;
  -webkit-text-fill-color: #000;
  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: #000;
  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: #000;
  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: #CF366E;
  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: #A30B42;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 4px 4px #A30B42;
  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: #A30B42;
  scale: 1.05;
}

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