/* =====================
   🔷 GERAL (todas as etapas)
   ===================== */

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
}

.wrapper {
  max-width: 340px;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.progress-container {
  background-color: #ddd; /* cinza claro */
  height: 6px;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 20px;
}

.progress-bar {
  background-color: #4CAF50; /* verde */
  height: 100%;
  width: 0%;
  transition: width 0.4s ease;
}

img {
  max-width: 100%;
  border-radius: 8px;
}

.headline {
  font-size: 22px;
  font-weight: 900;
  margin-top: 10px;
  font-family: 'Roboto', sans-serif;
}

.sub {
  background: #e6f6e6;
  color: #2e7d32;
  padding: 10px;
  margin: 10px auto;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
}

.alert {
  font-size: 14px;
  color: #222;
  margin-top: 10px;
}

.alert b {
  color: red;
}

.btn {
  background-color: #4CAF50;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.btn:hover {
  background-color: #45a049;
}


/* =====================
   ✅ ETAPAS COM CHECKBOX (ex: objetivos - etapa 2)
   ===================== */

.option-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.option {
  border: 1px solid #333;
  padding: 14px;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;
  text-align: left;
  transition: 0.3s;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.option:hover {
  background-color: #f0f0f0;
}

.option input[type="checkbox"] {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  scale: 1.2;
}


/* =====================
   ✅ ETAPA DE GÊNERO (etapa 3)
   ===================== */

.gender-options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.gender-box {
  flex: 1;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.gender-box img {
  width: 100%;
  display: block;
}

.gender-box input[type="radio"] {
  display: none;
}

.gender-box input[type="radio"]:checked + img {
  outline: 3px solid #4CAF50;
}


/* =====================
   📱 RESPONSIVIDADE EXTRA (até 400px)
   ===================== */

@media (max-width: 400px) {
  .btn {
    font-size: 15px;
    padding: 12px 20px;
  }

  .headline {
    font-size: 20px;
  }

  .option {
    font-size: 16px;
    padding: 12px;
  }

  .wrapper {
    padding: 15px;
  }
}
/* imgs option */
.option img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 10px;
  vertical-align: middle;
}

