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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #556B2F; /* Verde musgo */
  color: #f7d00a; /* Amarelo ouro */
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Informações flutuantes no canto */
.info-flutuante {
   position: fixed;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: oklch(11.749% 0.03999 25.879);
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 0 10px hwb(0 2% 10%);
  width: 220px;
  font-family: 'Segoe UI', sans-serif;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 1.6;
  max-width: 250px;
}
.info-header {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.expand-indicator {
  transition: transform 0.3s;
}


.info-flutuante a {
  color: hwb(0 0% 97%);
  text-decoration: none;
}

@keyframes flutuar {
  from { transform: translateY(0); }
  to { transform: translateY(15px); }
}

/* Título */
main h1 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 5px #000;
}

/* Balão de frase */
.balao-frase {
  background: #000;
  color: #FFD700;
  padding: 20px;
  border-radius: 20px;
  max-width: 80%;
  font-size: 1.3rem;
  margin: 20px auto;
  position: relative;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.compartilhar {
  position: absolute;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  font-size: 20px;
}

/* Botão circular */
.botao-circular {
  background: #FFD700;
  color: #000;
  border: none;
  border-radius: 50%;
  padding: 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  transition: transform 0.2s ease-in-out;
}

.botao-circular:hover {
  transform: scale(1.1);
}
