@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

:root {
  --principal: #ffc107;
  --fundo: #f4f4f4;
  --texto: #1F1F1F;
  --erro: #D93025;
  --input-bg: #fff;
  --input-border: #ccc;
  --botao-hover: #e0a800;
}

body {
  background: var(--fundo); 
  padding: 20px; 
}

#form {
  width: 100%;
  max-width: 700px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
}

.step {
  display: none;
  animation: fade .45s ease;
}

.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  display: flex;
  align-items: center; 
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--texto);
}

input,
textarea,
select {
  width: 100%;
  font-size: 18px;
  padding: 14px 12px;
  border: unset;
  border-bottom: 1px solid var(--input-border);
  border-radius: 8px;
  outline: none;
  background: var(--input-bg);
  transition: all .3s;
  margin-bottom: 20px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--principal);
}

textarea {
  min-height: 140px;
  resize: none;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
}

.icon {
  width: 60px;
  margin-right: 10px;
}

button {
  background: var(--principal);
  border: none;
  color: white;
  font-size: 16px;
  margin-top: 20px;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
}

button:hover {
  background: var(--botao-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.error {
  color: var(--erro);
  font-size: 14px;
  margin-top: 6px;
  display: none;
}

.final-message {
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  color: var(--texto);
  font-weight: 500;
}

.final-step {
  text-align: center;
  padding: 25px;
}

.final-step h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.final-step p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.default-message {
  font-size: 18px;
  color: #444;
}

.link_redirecionar{
  margin-top: 10px;
  margin-bottom: 10px;
}

.toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background:#333;
  color:#fff;
  padding:12px 18px;
  border-radius:6px;
  opacity:0;
  transform: translateY(20px);
  transition:.3s ease;
  z-index:99999;
  font-size:15px;
}
.toast.show { opacity:1; transform: translateY(0px); }
.toast.error { background:#e74c3c; }
.toast.success { background:#2ecc71; }
.toast.info { background:#3498db; }

@media (max-width: 480px) {
  .final-step h2 {
    font-size: 22px;
  }

  .final-step p,
  .default-message {
    font-size: 16px;
  }

  .whatsapp-btn {
    padding: 12px 20px;
    font-size: 16px;
    gap: 8px;
  }
}

.aviso {
  line-height: unset;
}

@media (max-width: 600px) {
  h1 {
    flex-direction: column;
    text-align: center;
    font-size: 18px;
  }

  input,
  textarea,
  select {
    font-size: 16px;
    padding: 12px 10px;
  }

  button {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px;
  }
}