/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #FFF;
  color: #333;
  line-height: 1.6;
  padding-left: 20px;
  padding-right: 20px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.botao {
  animation: bounce 0.5s infinite alternate !important;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.landing-page {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.highlight p {
  padding-top: 8px;
  font-size: 0.9rem;
  color: #ff9900;
  margin-bottom: 20px;
}

.headline h1 {
  font-size: 2.8rem;
  color: #333;
  line-height: 3rem;
}

.headline h2 {
  font-size: 1.8rem;
  color: #333;
}

.headline h2 span {
  color: #ffffff;
  font-weight: normal;
}

.headline p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.form-phone {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-phone label {
  font-size: 0.9rem;
  color: #cccccc;
  text-align: left;
}

.form-phone span {
  color: red;
}

.form-phone input {
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  outline: none;
}

.form-phone button {
  background-color: #333;
  color: #FFF;
  font-weight: bold;
  padding: 14px;
  font-size: 1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-phone button:hover {
  background-color: #00e0a0;
}

.info p {
  font-size: 1.4rem;
  margin-top: 10px;
  line-height: 2rem;
}

.info mark {
  background: red;
  color: #fff;
  font-weight: bold;
  padding: 2px 4px;
}

.footer-message p {
  margin: 30px 0 15px;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1.5rem;
}

.footer-message strong {
  color: #ffaa00;
}

.footer-message button {
  background-color: #00ffae;
  color: #001226;
  font-weight: bold;
  padding: 14px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-message button:hover {
  background-color: #00e0a0;
}

.footer-legal {
  margin-top: 30px;
  font-size: 0.7rem;
  color: #8899aa;
}

.loading-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loading-content {
  background: white;
  padding: 20px 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-content p {
  margin: 0;
  color: #333;
  font-size: 1.4rem;
  line-height: 2rem;
}
