@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
:root {
  --primary: #ffb347;
  --secondary: #ff6961;
  --accent: #6ec6ff;
  --bg: #fffbe7;
  --text: #222;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Fredoka One', cursive;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
header {
  background: var(--primary);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: #fff;
  box-shadow: var(--shadow);
}
.logo span {
  font-size: 1.7rem;
  color: var(--secondary);
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #fff, 4px 4px 0 var(--accent);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links li a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.1rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--secondary);
  transition: width 0.3s;
  border-radius: 2px;
  margin-top: 2px;
}
.nav-links li a:hover::after {
  width: 100%;
}
.nav-links li a:hover {
  color: var(--secondary);
}
.hero {
  width: 100vw;
  min-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  min-height: 100vh;
  padding: 0;
  background: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: url('role.png') center center/cover no-repeat;
  z-index: 1;
  filter: brightness(0.4) grayscale(0.1);
  animation: fadeIn 1.2s;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 4rem 1rem 2rem 1rem;
}
.hero-content h1 {
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 2px 2px 0 #000, 4px 4px 0 var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  animation: shake 1.2s infinite alternate;
}
@keyframes shake {
  0% { transform: translate(0, 0) rotate(-1deg); }
  10% { transform: translate(-2px, 2px) rotate(1deg); }
  20% { transform: translate(2px, -1px) rotate(-2deg); }
  30% { transform: translate(-1px, 1px) rotate(1deg); }
  40% { transform: translate(1px, -2px) rotate(-1deg); }
  50% { transform: translate(-2px, 2px) rotate(2deg); }
  60% { transform: translate(2px, 1px) rotate(-1deg); }
  70% { transform: translate(-1px, -2px) rotate(1deg); }
  80% { transform: translate(1px, 2px) rotate(-2deg); }
  90% { transform: translate(-2px, -1px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(-1deg); }
}
.hero-content h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1.2rem;
  animation: glow 1.3s infinite alternate;
}
@keyframes glow {
  0% { text-shadow: 0 0 8px #fff, 0 0 16px #ffe066, 0 0 32px #ffe066; color: #fff; }
  100% { text-shadow: 0 0 24px #ffe066, 0 0 48px #ffe066, 0 0 64px #fff; color: #ffe066; }
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.hero-buttons button {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid #fff;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s, color 0.2s;
  outline: none;
  animation: fadeIn 1s 0.6s backwards;
}
.hero-buttons button:hover {
  background: var(--accent);
  color: var(--secondary);
  transform: scale(1.07);
}
.contract-box {
  background: rgba(0,0,0,0.5);
  border: 2px dashed var(--accent);
  border-radius: 18px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.16);
  animation: fadeIn 1s 0.8s backwards;
  color: #fff;
}
.contract-box button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}
.contract-box button:hover {
  background: var(--secondary);
  color: #fff;
}
section {
  padding: 3rem 1rem 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeIn 1.2s;
}
.about, .tokenomics, .howtobuy, .community {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border: 2px solid var(--primary);
}
.about h2, .tokenomics h2, .howtobuy h2, .community h2 {
  color: var(--secondary);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 var(--accent);
}
.about p, .tokenomics ul, .howtobuy ol, .community p {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.tokenomics ul {
  list-style: disc inside;
  padding-left: 1.2rem;
}
.howtobuy ol {
  list-style: decimal inside;
  padding-left: 1.2rem;
}
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.social-links a {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 18px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  outline: none;
}
.social-links a:hover {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.08);
}
.footer-professional {
  background: #fff;
  border-top: 2px solid var(--primary);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.04);
  padding: 2rem 0 1rem 0;
  text-align: center;
  margin-top: 3rem;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.footer-socials a {
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  outline: none;
  display: inline-block;
}
.footer-socials a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}
.footer-copy {
  color: var(--secondary);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  text-align: center;
  font-family: 'Fredoka One', cursive;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 var(--accent);
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero {
    width: 100vw;
    min-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
  }
  .hero-bg {
    width: 100vw;
    height: 100vh;
    background-position: center top;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .hero-content h2 {
    font-size: 1.2rem;
  }
  section {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
}
/* Remover imagem destacada antiga */
.hero-img { display: none !important; }

.surprise-img {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 9999;
  width: 600px;
  max-width: 98vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, filter 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 0 60px 10px #fff7b2;
  filter: brightness(1.2) drop-shadow(0 0 40px #ffe066);
}
.surprise-img.active {
  opacity: 1;
  pointer-events: auto;
  animation: surprisePop 1.2s cubic-bezier(.68,-0.55,.27,1.55), surpriseGlow 1.2s linear;
  transform: translate(-50%, -50%) scale(1.25);
  filter: brightness(1.5) drop-shadow(0 0 80px #ffe066);
}
@keyframes surprisePop {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  40% { opacity: 1; transform: translate(-50%, -50%) scale(1.35); }
  60% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
  80% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.25); }
}
@keyframes surpriseGlow {
  0% { box-shadow: 0 0 0 0 #ffe066; }
  50% { box-shadow: 0 0 80px 30px #ffe066; }
  100% { box-shadow: 0 0 0 0 #ffe066; }
}
@media (max-width: 700px) {
  .surprise-img {
    width: 95vw;
    max-width: 98vw;
  }
}

.dancing-letter {
  display: inline-block;
  animation: dance 1.2s infinite alternate cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes dance {
  0% { transform: translateY(0) rotate(-2deg) scale(1); }
  20% { transform: translateY(-12px) rotate(8deg) scale(1.1); }
  40% { transform: translateY(6px) rotate(-8deg) scale(0.95); }
  60% { transform: translateY(-8px) rotate(6deg) scale(1.05); }
  80% { transform: translateY(4px) rotate(-4deg) scale(1.02); }
  100% { transform: translateY(0) rotate(2deg) scale(1); }
}

/* Scrollbar customizada */
::-webkit-scrollbar {
  width: 14px;
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, var(--primary) 60%, var(--accent) 100%);
  border-radius: 8px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Seções orgânicas e balões */
.organic-section {
  background: linear-gradient(120deg, #fffbe7 80%, #ffe066 100%);
  border-radius: 48% 52% 44% 56% / 60% 40% 60% 40%;
  box-shadow: 0 8px 32px rgba(255,179,71,0.10), 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 2.5rem;
  border: 3px solid var(--primary);
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  position: relative;
  overflow: visible;
  animation: floatSection 3.5s ease-in-out infinite alternate;
}
@keyframes floatSection {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}
.cloud-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 2rem;
  font-family: 'Fredoka One', cursive;
  color: var(--secondary);
  background: linear-gradient(90deg, #fffbe7 60%, #ffe066 100%);
  border-radius: 32px 48px 32px 48px / 48px 32px 48px 32px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.2rem;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(255,179,71,0.10);
  animation: floatTitle 2.5s ease-in-out infinite alternate;
}
@keyframes floatTitle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
.about-content, .tokenomics-content, .howtobuy-content {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
}
.mini-mascot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
  background: #fff;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  animation: floatMascot 2.2s ease-in-out infinite alternate;
}
@keyframes floatMascot {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.08); }
}
.speech-bubble {
  background: #fff;
  color: var(--secondary);
  border-radius: 32px 32px 32px 8px;
  padding: 0.7rem 1.2rem;
  font-size: 1.1rem;
  font-family: 'Fredoka One', cursive;
  box-shadow: 0 2px 8px rgba(255,179,71,0.10);
  margin-bottom: 0.7rem;
  margin-top: 0.5rem;
  position: relative;
  animation: popBubble 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popBubble {
  0% { transform: scale(0.7); opacity: 0; }
  80% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
.bubble-text {
  background: linear-gradient(120deg, #fff 80%, #ffe066 100%);
  border-radius: 32px 48px 32px 48px / 48px 32px 48px 32px;
  padding: 1.2rem 1.5rem;
  font-size: 1.15rem;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(255,179,71,0.10);
  margin-bottom: 0.5rem;
  flex: 1;
  min-width: 0;
  position: relative;
}
.tokenomics-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0 0;
}
.tokenomics-list li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tokenomics-list .icon {
  font-size: 1.3rem;
}
.supply-bar {
  width: 100%;
  background: #ffe066;
  border-radius: 18px;
  height: 32px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(255,179,71,0.10);
  display: flex;
  align-items: center;
}
.supply-fill {
  background: linear-gradient(90deg, var(--secondary) 60%, var(--accent) 100%);
  height: 100%;
  width: 100%;
  border-radius: 18px 0 0 18px;
  animation: fillBar 2.2s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes fillBar {
  0% { width: 0; }
  100% { width: 100%; }
}
.supply-bar span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 1px 1px 0 #fff;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.step-bubble {
  background: #fff;
  color: var(--secondary);
  border-radius: 32px 32px 32px 8px;
  padding: 0.7rem 1.2rem;
  font-size: 1.1rem;
  font-family: 'Fredoka One', cursive;
  box-shadow: 0 2px 8px rgba(255,179,71,0.10);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  animation: popBubble 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
.step-bubble .icon {
  font-size: 1.3rem;
}
@media (max-width: 900px) {
  .about-content, .tokenomics-content, .howtobuy-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .mini-mascot {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}

.about.organic-section, .tokenomics.organic-section, .howtobuy.organic-section {
  margin-top: 4.5rem;
  position: relative;
  overflow: visible;
}
.bubbles-bg {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(120deg, #ffe066 60%, #6ec6ff 100%);
  opacity: 0.25;
  animation: bubbleUp 8s linear infinite;
}
@keyframes bubbleUp {
  0% { transform: translateY(100%) scale(0.7); opacity: 0.2; }
  60% { opacity: 0.35; }
  100% { transform: translateY(-120%) scale(1.1); opacity: 0; }
}
.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 1.1rem;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.footer-extra {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  opacity: 0.85;
}

.footer-community {
  background: linear-gradient(120deg, #fffbe7 80%, #ffe066 100%);
  border-radius: 48% 52% 44% 56% / 60% 40% 60% 40%;
  box-shadow: 0 8px 32px rgba(255,179,71,0.10), 0 2px 8px rgba(0,0,0,0.04);
  margin: 2.5rem auto 0 auto;
  border: 3px solid var(--primary);
  padding: 2.2rem 1.5rem 1.2rem 1.5rem;
  max-width: 900px;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatSection 3.5s ease-in-out infinite alternate;
}
.community-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.community-title {
  margin-bottom: 0.5rem;
}
.footer-copy {
  color: var(--secondary);
  font-size: 1.05rem;
  margin-top: 1.2rem;
  text-align: center;
  font-family: 'Fredoka One', cursive;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 var(--accent);
}
.social-links a {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 18px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  outline: none;
  margin: 0 0.3rem;
  display: inline-block;
  animation: popBubble 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
.social-links a:hover {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.08) rotate(-2deg);
}
@media (max-width: 900px) {
  .footer-community {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}

/* Menu Hamburguer Responsivo */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
  margin-left: 1rem;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: var(--secondary);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    padding: 1rem 0.5rem;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    background: #fffbe7;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    width: 220px;
    height: calc(100vh - 70px);
    box-shadow: -2px 0 16px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55);
    z-index: 110;
    font-size: 1.2rem;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
  }
  .logo span {
    font-size: 1.1rem;
  }
}
@media (max-width: 700px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content h2 {
    font-size: 1rem;
  }
  .footer-community, .footer-professional {
    max-width: 99vw;
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
  }
}
/* Melhorias gerais de responsividade */
@media (max-width: 600px) {
  .organic-section, .footer-community, .footer-professional {
    padding: 1.1rem 0.2rem 1.1rem 0.2rem;
    border-width: 2px;
  }
  .cloud-title, .community-title {
    font-size: 1.1rem;
    padding: 0.3rem 0.7rem;
  }
  .mini-mascot {
    width: 38px;
    height: 38px;
  }
  .speech-bubble, .step-bubble {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
  }
  .bubble-text {
    font-size: 0.98rem;
    padding: 0.7rem 0.7rem;
  }
  .supply-bar span {
    font-size: 0.9rem;
  }
  .footer-socials a, .social-links a {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}

.nft-staking-section {
  background: linear-gradient(120deg, #fffbe7 80%, #ffe066 100%);
  border-radius: 48% 52% 44% 56% / 60% 40% 60% 40%;
  box-shadow: 0 8px 32px rgba(255,179,71,0.10), 0 2px 8px rgba(0,0,0,0.04);
  margin: 2.5rem auto;
  border: 3px solid var(--primary);
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  position: relative;
  overflow: visible;
  animation: floatSection 3.5s ease-in-out infinite alternate;
}

.nft-staking-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-top: 1rem;
}

.feature-card {
  background: #fff;
  border-radius: 32px 48px 32px 48px / 48px 32px 48px 32px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(255,179,71,0.10);
  border: 2px solid var(--primary);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(120deg, #fff 80%, #ffe066 100%);
}

.feature-card h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 var(--accent);
}

.feature-card p {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .nft-staking-section {
    padding: 1.5rem 1rem;
    margin: 2rem 0.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 1.2rem;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .feature-card p {
    font-size: 1rem;
  }
}

