* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --rosa-claro: #ff8080;
  --rosa-escuro: #ff4d4d;
  --bege-claro: #f8f3f2;
  --preto: #3e2f2f;
  --verde-whatsapp: #25d366;
    --dourado-claro: #d4af37;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bege-claro);
  color: var(--preto);
  padding-top: 70px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HEADER */
.topo {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--rosa-claro);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  flex-wrap: nowrap;
}

.marca {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.icone-circulo {
  background-color: var(--rosa-escuro);
  border: 2px solid var(--dourado-claro);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.icone-circulo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-menu {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 2100;
  position: relative;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover,
.menu a.ativo {
  color: var(--preto);
}

/* MAIN */
main {
  max-width: 800px;
  margin: 100px auto 50px;
  padding: 2rem;
  text-align: center;
}

main h1,
main h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--rosa-escuro);
}

/* RASPADINHA */
.revelacao {
  text-align: center;
  margin-top: 50px;
}

#neblina-container {
  position: relative;
  width: 300px;
  height: 150px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#mensagem-escondida {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d63447;
  font-weight: bold;
  background: linear-gradient(to right, #fff6f6, #fff0f0);
  z-index: 0;
}

#neblina-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* VOTAÇÃO */
.votacao-container {
  margin-top: 3rem;
  text-align: center;
}

.votacao {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 20px 0;
}

.voto {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background-color: white;
  color: var(--rosa-escuro);
  border: 2px solid var(--rosa-claro);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.voto:hover {
  background-color: var(--bege-claro);
  color: var(--preto);
}

#resposta-voto {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--preto);
}

/* SUGESTÃO */
.sugestao-container {
  margin-top: 3rem;
  text-align: left;
}

.sugestao-container label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--preto);
}

.sugestao-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sugestao-container textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: vertical;
  background-color: white;
  color: var(--preto);
}

.btn-enviar {
  align-self: flex-start;
  padding: 0.7rem 1.5rem;
  background-color: var(--rosa-claro);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-enviar:hover {
  background-color: var(--rosa-escuro);
}

/* RODAPÉ */
.rodape {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #eee;
  background-color: var(--bege-claro);
}

.rodape p {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.rodape i {
  font-size: 1rem;
  color: #999;
}

.rodape a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.rodape a:hover {
  color: var(--rosa-escuro);
}

/* RESPONSIVO */
@media (max-width: 700px) {
  .btn-menu {
    display: block;
  }

  .menu {
    flex-direction: column;
    position: fixed;
    top: 60px;
    right: 0;
    background-color: var(--rosa-claro);
    width: 220px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: -2px 4px 8px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 10px;
    z-index: 1000;
  }

  .menu.ativo {
    max-height: 500px;
    overflow-y: auto;
  }

  .menu a {
    padding: 12px 0;
  }
}
