body {
  font-family: Inter, Arial, sans-serif;
  background: #f6f4ee;
  margin: 0;
  padding: 0;
  color: #071b3a;
}

.container {
  max-width: 760px;
  margin: 60px auto;
  background: #ffffff;
  padding: 44px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(20, 30, 60, 0.10);
}

.brand {
  font-weight: 700;
  color: #c99313;
  margin-bottom: 20px;
}

.progress {
  height: 8px;
  background: #e8e2d6;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 18px;
}

#progressBar {
  height: 100%;
  width: 0;
  background: #c99313;
  transition: width 0.3s ease;
}

.counter {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 28px;
}

h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

h2 {
  font-size: 26px;
}

p {
  color: #5f6678;
  font-size: 17px;
  line-height: 1.5;
}

.option {
  display: block;
  width: 100%;
  padding: 17px 18px;
  margin: 12px 0;
  background: #ffffff;
  border: 1px solid #ddd6c8;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  color: #071b3a;
}

.option:hover,
.option.selected {
  background: #f6f1e7;
  border-color: #c99313;
}

.nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.nav button,
button[type="submit"] {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  border: none;
}

.back {
  background: #f3f4f6;
  color: #071b3a;
}

.next,
button[type="submit"] {
  background: #071b3a;
  color: white;
}

input {
  width: 100%;
  padding: 16px;
  margin: 12px 0;
  border-radius: 12px;
  border: 1px solid #ddd6c8;
  font-size: 16px;
  box-sizing: border-box;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .container {
    margin: 20px;
    padding: 28px;
  }

  h1 {
    font-size: 28px;
  }
}

.relayable-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-azul,
.btn-dorado {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.btn-azul {
  background: #071b3a;
  color: white;
}

.btn-dorado {
  background: #c99313;
  color: white;
}

.btn-azul:hover,
.btn-dorado:hover {
  opacity: 0.9;
}
