/* Reset e tipografia */


/* Fundo animado */
.galaxy-bg {
      position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="100" r="10" fill="%23ffffff10"/><circle cx="50" cy="150" r="8" fill="%23ffffff08"/><circle cx="180" cy="80" r="5" fill="%23ffffff05"/></svg>') repeat;
    z-index: 0;
    animation: stars 20s linear infinite;
  }
  @keyframes stars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
  }


/* Container principal */
.container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  z-index: 1;
}


@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

  }

/* Aviso Mobile */
.mobile-warning {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #ffffff;
  text-align: center;
  padding: 1.2rem;
  font-size: 1rem;
  margin: 1rem auto;
  max-width: 400px;
  border-radius: 10px;
  top: 70px;
position: relative; 
z-index:1000;
}
.mobile-warning p {
  margin: 0;
}
.mobile-warning a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

/* Cards (stats e compra) */
.presale-card,
.buy-card {
  background:rgb(0 0 0 / 79%);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}

/* EstatÃ­sticas */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.stat-item {
  background: rgb(41 92 159);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(86,227,159,0.2);
}
.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

/* Barra de Progresso Global */
.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 1.5rem 0;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: #56e39f;
  width: 0%;
  transition: width 0.5s ease;
}
.progress-perc {
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 0.9rem;
  color: #fff;
}

/* Fases */
.phase-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.phase-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
  word-wrap: break-word;
}
.phase-card.active {
  background: linear-gradient(135deg, #0eb3f187, #0eb3f187);
  border: 1px solid #56e39f;
}
.phase-card:hover {
  transform: translateY(-5px);
}
.phase-progress {
  margin-top: 0.5rem;
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
}
.phase-progress-bar {
  height: 100%;
  background: #56e39f;
  width: 0%;
  transition: width 0.5s ease;
}
.phase-perc {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 0.8rem;
  color: #fff;
}

/* Buy Card */
.buy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.buy-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.buy-toggle button {
  background: none;
  border: none;
  padding: 0.4rem 0.2rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  align-items: center;
}
.buy-toggle button.active {
  background: linear-gradient(135deg, #56e39f, #2b6e87);
}
.buy-toggle button:hover {
  filter: brightness(0.9);
}
.buy-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.buy-row label {
  flex: 1;
  font-weight: bold;
  font-size: 1rem;
  color: #ffffff;
}
.buy-row input {
  flex: 2;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-left: 1rem;
  min-width: 120px;
}
.buy-row input:focus {
  outline: none;
  border-color: #56e39f;
  box-shadow: 0 0 15px rgba(86,227,159,0.2);
}
.receive-box {
  background: rgb(41 92 159);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 1rem;
}
.receive-box span {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
}
.receive-box strong {
  font-size: 1.4rem;
  color: #00ffdd;
}
.buy-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-primary {
  background: linear-gradient(135deg, #56e39f, #2b6e87);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(86,227,159,0.3);
}
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}
.btn-extra-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.btn-pix {
  background-color: #f1c40f;
  color: #000;
}
.btn-pix:hover {
  background-color: #d4ac0d;
}
.btn-ref {
  background-color: #9b59b6;
  color: #fff;
}
.btn-ref:hover {
  background-color: #8e44ad;
}

/* Ãrea de Wallet Info - Atualizada */
.wallet-info {
  position: fixed;
  top: 4.5rem;
  right: 1rem;
  z-index: 100;
  background: #25a56a;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 15px;
  padding: 0.7rem 1.2rem;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  max-width: 300px;
}
.wallet-info:hover {
  background: rgb(37 165 106);;
}
.crypto-icons {
  display: flex;
  gap: 0.5rem;
}
.crypto-icons img {
  width: 24px;
  height: 24px;
}
.wallet-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.wallet-address {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.wallet-balance {
  font-size: 0.8rem;
  color: #000000;
  font-weight: bold;
}
.disconnect-btn {
  font-size: 0.7rem;
  color: #fff;
  margin-top: 0.5rem;
  text-decoration: underline;
  cursor: pointer;
  display: none;
}
.copy-link {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}

.copy-link input {
padding: 0.75rem;
font-size: 0.9rem;
border: none;
border-radius: 5px;
width: 80%;
text-align: center;
background: rgba(255, 255, 255, 0.2);
color: #fff;
outline: none;
}

.copy-link button {
background: #56e39f;
border: none;
border-radius: 5px;
color: #fff;
font-size: 0.9rem;
font-weight: bold;
cursor: pointer;
transition: background 0.3s ease;
}

.copy-link button:hover {
background: #2b6e87;
}
/* Redes Sociais */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.social-link {
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}
.social-link:hover {
  color: #56e39f;
  transform: translateY(-3px);
}

/* Responsividade para Mobile */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  .buy-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .buy-row input {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
  }
  .wallet-info {
    top: 4.5rem;
    right: 0.5rem;
    max-width: calc(100% - 1rem);
    padding: 0.5rem 1rem;
  }
  .phase-container {
    grid-template-columns: 1fr;
  }
}
