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

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

/* Corpo centralizado e com scroll */
body {
  font-family: 'Lexend', sans-serif;
  background-color: rgba(0, 70, 30, 0.9);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
}

/* Gráfico de barras no fundo */
.bar-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
  gap: 4px;
  padding-left: 1rem;
  padding-right: 1rem;
  pointer-events: none;
}
.bar-background div {
  flex: 1;
  background-color: rgba(0, 90, 40, 0.15);
  border-radius: 2px;
  align-self: flex-end;
}
.bar1 { height: 20%; }
.bar2 { height: 60%; }
.bar3 { height: 30%; }
.bar4 { height: 80%; }
.bar5 { height: 40%; }
.bar6 { height: 70%; }
.bar7 { height: 50%; }


.container {
  position: center;
  z-index: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  background-color: rgba(0, 70, 30, 0.9);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  align-items: center;
  box-sizing: border-box;
}

/* Logo */
.logo {
  margin-bottom: 1.5rem;
}
.logo img {
  max-width: 200px;
  height: auto;
}

/* Texto principal */
.title-section,
.cta-section {
  margin-bottom: 1.5rem;
}
.title-section p,
.main-text {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.main-text {
  font-size: 2rem;
  font-weight: 600;
}

/* Linha branca */
.line {
  width: 100%;
  height: 1px;
  background-color: white;
  margin: 1.5rem 0;
  opacity: 0.5;
}

/* Botão CTA */
.cta-button {
  margin-top: 2rem;
}
.cta-button a {
  background-color: #1877F2;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Ícones sociais */
.social-icons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social-icons a {
  color: white;
  font-size: 2rem;
}

@keyframes pulseBar {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.4);
  }
}
</style>
