.toast-container {
  z-index: 1080;
}

/* Hero — tagline sustentável */
.hero-tagline {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-tagline-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.14),
    rgba(144, 238, 180, 0.22),
    rgba(255, 255, 255, 0.14)
  );
  background-size: 200% 100%;
  border: 1px solid rgba(180, 255, 200, 0.45);
  border-radius: 999px;
  box-shadow:
    0 0 24px rgba(76, 175, 120, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: eco-tagline-glow 4s ease-in-out infinite;
  backdrop-filter: blur(4px);
}

.hero-tagline-text::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(144, 238, 180, 0.55),
    transparent
  );
  background-size: 200% 100%;
  z-index: -1;
  opacity: 0.6;
  animation: eco-tagline-shine 3.5s linear infinite;
}

.hero-tagline-leaf {
  font-size: 1.15em;
  color: #b8f5c8;
  filter: drop-shadow(0 0 6px rgba(144, 238, 180, 0.8));
}

.hero-tagline-leaf--l {
  animation: eco-leaf-sway 2.8s ease-in-out infinite;
}

.hero-tagline-leaf--r {
  transform: scaleX(-1);
  animation: eco-leaf-sway 2.8s ease-in-out infinite reverse;
}

@keyframes eco-tagline-glow {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow:
      0 0 20px rgba(76, 175, 120, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    background-position: 100% 50%;
    box-shadow:
      0 0 32px rgba(120, 220, 160, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
}

@keyframes eco-tagline-shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes eco-leaf-sway {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(8deg) translateY(-3px);
  }
}

.hero-tagline-leaf--r {
  animation-name: eco-leaf-sway-r;
}

@keyframes eco-leaf-sway-r {
  0%,
  100% {
    transform: scaleX(-1) rotate(-8deg) translateY(0);
  }
  50% {
    transform: scaleX(-1) rotate(8deg) translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tagline-text,
  .hero-tagline-text::after,
  .hero-tagline-leaf {
    animation: none;
  }
}
