/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
}

/* Cabeçalho */
header {
  background: #ffb84d;
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 22px;
  font-weight: bold;
}

nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  color: #333;
  background: white;
  padding: 5px 10px;
  border-radius: 5px;
}

/* Seção de Avaliações */
.avaliacoes {
  text-align: center;
  padding: 50px 20px;
}

.avaliacoes h1 {
  color: #ff9900;
  margin-bottom: 10px;
}

.subtitulo {
  margin-bottom: 30px;
  color: #555;
}

/* Carrossel */
.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.avaliacao {
  display: none;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.avaliacao.active {
  display: block;
}

.avaliacao h3 {
  color: #ff9900;
  margin-bottom: 10px;
}

/* Botões do carrossel */
.carousel button {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  color: #ff9900;
  transition: 0.3s;
}

.carousel button:hover {
  color: #e68a00;
}

/* Rodapé */
footer {
  background: #ffb84d;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 50px;
}
