/* ======= RESET ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  body {
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  padding: 40px 20px;  /* ✅ adiciona espaço no topo e nas laterais */
  min-height: 100vh;   /* ✅ permite scroll se conteúdo for maior */
}


/* ======= CARD ======= */
.card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
  animation: fadeIn 0.3s ease-in-out;
}

h1 {
  font-size: 26px;
  color: #00b86f;
  margin-bottom: 5px;
  text-align: center;
}

p {
  text-align: center;
  margin-bottom: 25px;
  color: #444;
  font-size: 16px;
}

/* ======= FORM ======= */

label {
  font-size: 15px;
  font-weight: bold;
  color: #222;
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
}

/* Grid de botões */
.rating, .rating-0-10, .options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Botões (chips) */
.chip {
  background: #e8e8e8;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 16px;
}

.chip:hover {
  background: #d1d1d1;
}

/* Botão selecionado */
.selected {
  background: #00c16a !important;
  color: white !important;
}

/* ======= BOTÃO ENVIAR ======= */
.btn {
  width: 100%;
  background: #00c16a;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  margin-top: 25px;
  transition: 0.2s;
}

.btn:hover {
  background: #009f59;
}

.btn:disabled {
  background: #78d9b2;
  cursor: not-allowed;
}

/* ======= ANIMAÇÃO ======= */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Mobile */
@media (max-width: 450px) {
  .card {
    max-width: 100%;
  }
}
