
.form-notify {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #201a34;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #3d3259;
}

.form-group {
  width: 100%;
}

.form-notify input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 30px;
  border: 1px solid #55517a;
  background: #2a2343;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.form-notify input[type="email"]::placeholder {
  color: #aaa;
}

.form-group-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #ffef07;
}

.form-group-checkbox label {
  font-size: 14px;
  color: #d1c4e9;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(to bottom, #ffef07 0%, #f35d1b 100%);
  color: #804f19;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-submit:hover {
  background: #804f19;
  color: #fff7a0;
}








/* ========== Estilos para a Section de Feedback ========== */
.section-feedback {
  padding: 60px 20px;
  background-color: #141022;
}
.section-feedback .container {
  max-width: 600px;
  margin: 0 auto;
}
.section-feedback h2 {
  text-align: center;
  margin-bottom: 10px;
}
.section-feedback p {
  text-align: center;
  margin-bottom: 30px;
  color: #ccc;
}
.section-feedback fieldset {
  border: none;
  margin-bottom: 25px;
  padding: 0;
}
.section-feedback legend {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    padding-bottom: 2%;
}
.section-feedback label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #ddd;
  cursor: pointer;
}
.section-feedback input[type="radio"] {
  margin-right: 8px;
}
.section-feedback textarea,
.section-feedback input[type="text"],
.section-feedback input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #3d3259;
  border-radius: 6px;
  background: #1c182a;
  color: #fff;
  font-size: 1rem;
  margin-top: 5px;
}
.section-feedback .btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  font-size: 1rem;
}



.btn-premium_form {
  min-width: 205px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 9px;
  padding: 2px;
  font-weight: 400;
  color: #fcb917;
  background: linear-gradient(to right, #c35af4 0%, #fcc70c 100%);
}