
.rhode-form-container {
  max-width: 740px;
  margin: 50px auto;
  background: #fffdfa;
  border-radius: 20px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.04);
  padding: 40px 50px;
  font-family: 'Segoe UI', sans-serif;
  color: #3b2e2c;
  font-size: 15px;
}

.rhode-form-container h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 30px;
  color: #6a3f38;
  font-weight: 600;
}

.rhode-form-container label {
  font-weight: 600;
  display: block;
  margin: 24px 0 10px;
}

.rhode-form-container input[type="text"],
.rhode-form-container input[type="email"],
.rhode-form-container textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ded6cf;
  border-radius: 10px;
  font-size: 16px;
  background: #f9f6f2;
  box-sizing: border-box;
}

.rhode-form-container textarea {
  min-height: 120px;
  resize: vertical;
}

.radio-group,
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}

.radio-group label,
.checkbox-grid label {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fdf7f4;
  border: 1px solid #e9dcd5;
  border-radius: 12px;
  padding: 12px 10px;
  cursor: pointer;
  text-align: center;
  width: 132px;
  min-height: 170px;
  justify-content: flex-start;
  box-shadow: 0 0 0 transparent;
  transition: all 0.25s ease;
}

.radio-group label:hover,
.checkbox-grid label:hover {
  background: #f9ece7;
  border-color: #dcb5a6;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.radio-group label img,
.checkbox-grid label img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
  object-fit: contain;
}

.checkbox-grid label input,
.radio-group label input {
  margin-bottom: 4px;
}

.rhode-form-container button {
  margin-top: 40px;
  width: 100%;
  background-color: #a16351;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rhode-form-container button:hover {
  background-color: #8e5243;
}

#sucesso {
  display: none;
  background: #eaf9ec;
  border-left: 4px solid #52b06f;
  padding: 14px 18px;
  margin-top: 28px;
  border-radius: 8px;
  font-weight: 600;
  color: #2f6846;
  text-align: center;
}


.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-items: center;
}

.radio-group label,
.checkbox-grid label {
  min-height: 210px;
  line-height: 1.4;
}


.rhode-form-container label {
  font-size: 15px;
  font-weight: 600;
  color: #3a2e2a;
  margin-bottom: 10px;
}

.rhode-form-container h3,
.rhode-form-container .titulo-bloco {
  font-size: 18px;
  font-weight: 600;
  color: #6a3f38;
  margin: 32px 0 12px;
  text-align: left;
}


.radio-group,
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px 32px;
  justify-content: start;
  max-width: 100%;
  padding: 0;
}

.radio-group label,
.checkbox-grid label {
  width: 100%;
  max-width: 240px;
  min-height: 220px;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 0 0 transparent;
  margin: auto;
}

.radio-group label:hover,
.checkbox-grid label:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  background-color: #fbf2ed;
}

@media screen and (max-width: 600px) {
  .radio-group,
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
  }
}
