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

body {
  background: linear-gradient(135deg, #202A44, #525372);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 420px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

h2 {
  color: #202A44;
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ABBCB6;
  margin-bottom: 15px;
  background: #f9f9f9;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #525372;
}

button {
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #525372;
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #202A44;
  color: #f9f9f9;
}

.prev {
  background: #ABBCB6;
  color: #202A44;
}
/* .prev:hover{
  color: #eee;
} */

.step {
  display: none;
  flex-direction: column;
}

.step.active {
  display: flex;
}

.progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 10px;
  margin-bottom: 20px;
}

.progress {
  height: 100%;
  width: 25%;
  background: #525372;
  border-radius: 10px;
  transition: 0.3s;
}

/* Fundo escuro */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 999;
}

.modal.show {
  opacity: 1;
  pointer-events: all;
}

/* Caixa */
.modal-box {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: slideUp 0.4s ease;
}

/* Botão */
.modal-box button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background: #6c5ce7;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* Animação entrada */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* CHECK ANIMADO */
.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
}

.circle {
  width: 80px;
  height: 80px;
  border: 4px solid #00ff88;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: circleAnim 0.4s ease;
}

.check {
  width: 25px;
  height: 50px;
  border-right: 4px solid #00ff88;
  border-bottom: 4px solid #00ff88;
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  left: 26px;
  animation: checkAnim 0.4s 0.3s forwards;
  opacity: 0;
}

@keyframes circleAnim {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes checkAnim {
  to {
    opacity: 1;
  }
}

/*Motivo do contato*/
.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.options label {
  background: #1a1a1a;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s;
}

.options label:hover {
  border-color: #6c5ce7;
}

.options input {
  margin-right: 10px;
}

/* ERRO */
.input-error {
  border: 2px solid #ff4d4d !important;
}

/* ERRO TELEFONE */
.error-msg {
  display: block;
  font-size: 13px;
  color: #ff4d4d;
  margin-top: 5px;
  opacity: 0;
  transition: 0.2s;
}

.error-msg.show {
  opacity: 1;
}

.input-error {
  border: 2px solid #ff4d4d !important;
}