.elementor-15156 .elementor-element.elementor-element-2c67c76{--display:flex;}/* Start custom CSS for html, class: .elementor-element-71ce94b */body {
  background: #0c0d14;
  
  color: #fff;
}

.container {
  max-width: 700px;
  margin: 30px auto;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: #1a1a1f;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress {
  height: 100%;
  width: 0%;
  background: #D89E39;
  transition: width .3s ease;
}

.card {
  background: #12131c;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(0,0,0,.3);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.field input {
  background: #1b1c25;
  border: 1px solid #2a2b35;
  border-radius: 10px;
  color: #fff;
  padding: 10px 12px;
  font-size: 15px;
}
.field input:focus { outline: none; border-color: #f57c00; }

.error { color: #ff7b7b; font-size: 13px; }

#btn-start {
  background: #D89E39;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
#btn-start:hover { opacity: 0.9; }

.question {
  text-align: center;
  color: #D89E39;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* ✅ Ajuste principal do grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  justify-items: center;
}

.options-grid button {
  background: #1e1f2a;
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  width: 100%;
  max-width: 320px;
  min-height: 60px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, transform .15s ease;
  text-align: center;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: normal; /* ✅ permite quebrar linha */
  word-break: break-word; /* ✅ evita overflow */
}

.options-grid button:hover {
  background: #2c2e3f;
  transform: translateY(-2px);
}

.back-button {
  background: #2c2e3f;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: 500;
}
.back-button:hover {
  background: #3a3d52;
}

.overlay.hidden { display:none; }

/* Responsivo */
@media (max-width: 480px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  
}/* End custom CSS */