html, body{
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.content {
    flex: 1;
    padding: 75px 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1 {
    text-align: center;
    color: blue;
}
h2 {
    text-align: center;
}
ul {
    list-style-type: none;
    padding: 0;
    max-width: 400px;
    margin: auto;
}
li {
    margin-bottom: 15px;
}
laber {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"],
input[type="email"],
input[type="number"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}
button {
    padding:  10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.content {
    flex: 1;
}
footer {
    background-color: #333;
    color: wheat;
    text-align: center;
    padding: 15px;
    margin-top: 0%;
}
#mensagem {
    margin-top: 20px;
    font-weight: bold;
    color: green;
    text-align: center;
}
.star-rating {
    direction: rtl;               /* inverte a ordem para highlight funcionar bem */
    font-size: 2rem;
    display: inline-flex;
  }
  
  .star-rating input {
    display: none;                /* esconde o radio, mas mantém o foco via label */
  }
  
  .star-rating label {
    color: lightgray;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  /* hover e checked funcionam graças à direção RTL */
  .star-rating label:hover,
  .star-rating label:hover ~ label,
  .star-rating input:checked ~ label {
    color: gold;
  }
  
  #sugestao,
  #feedback {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    resize: vertical;
}
#obrigado {
    text-align: center;
}