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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.5) rgba(18, 18, 18, 0);
}

body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: transparent;
}

body::-webkit-scrollbar-track {
  background-color: rgba(18, 18, 18, 0);
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 212, 255, 0.5);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 212, 255, 0.8);
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* Aplicando estilo também para dispositivos móveis */
@media (max-width: 768px) {
  body::-webkit-scrollbar {
    width: 5px;
  }
}

:root {
  /* Dark Theme Colors */
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --bg-tertiary: #2d2d2d;
  --bg-card: rgba(35, 35, 35, 0.6);

  /* Accent Colors */
  --accent-primary: #00d4ff;
  --accent-secondary: #0ea5e9;
  --accent-purple: #8b5cf6;

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  /* Border Colors */
  --border-color: rgba(80, 80, 80, 0.5);
  --border-light: rgba(100, 100, 100, 0.5);

  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  --gradient-purple: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-purple)
  );
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* Para melhorar o scroll em dispositivos iOS */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(18, 18, 18, 0);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: none;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background-color: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Added header actions container for wallet button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-wallet {
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-wallet:hover {
  opacity: 1;
}

.header.scrolled .btn-wallet {
  opacity: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  color: var(--accent-primary);
  font-size: 1.8rem;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0.9;
}

.nav-link:hover {
  color: var(--accent-primary);
  opacity: 1;
}

.header.scrolled .nav-link {
  opacity: 1;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: var(--accent-primary);
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  overflow: hidden;
  background-color: #121212;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(80, 80, 80, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(120, 120, 120, 0.1) 0%,
      transparent 50%
    );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(150, 150, 150, 0.1);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  opacity: 1; /* Mantém apenas uma mudança de opacidade ao invés da animação e sombra */
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-large {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

/* Contato tem padding especial para caber na tela */
.contact-section.section {
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

/* About Section */
.about {
  background: #1a1a1a;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-main {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 3rem;
}

.about-main h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
}

.about-main p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent-primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Token Section */
.token-section {
  background: #1a1a1a;
}

.token-content {
  max-width: 1000px;
  margin: 0 auto;
}

.token-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.token-stat-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  text-align: center;
}

#priceChart {
  width: 100%;
  height: 100%;
}

.token-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Affiliate Section */
.affiliate-section {
  background: #1a1a1a;
}

.affiliate-content {
  max-width: 1000px;
  margin: 0 auto;
}

.affiliate-info {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 3rem;
}

.affiliate-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.affiliate-info p {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.affiliate-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
}

.benefit-icon {
  color: var(--success);
  font-weight: 700;
  font-size: 1.5rem;
}

.affiliate-cta {
  text-align: center;
}

/* FAQ Section */
.faq-section {
  background: #1a1a1a;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-primary);
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  background: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
  overflow: hidden;
}

/* As classes central-title e central-subtitle foram substituídas pelas classes padrão section-title e section-subtitle */

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Support Info Styles */
.support-info {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.support-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.support-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(35, 35, 35, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  min-height: 4.2rem;
}

.support-item:hover {
  border-color: var(--accent-primary);
}

.support-icon {
  font-size: 1.4rem;
  color: var(--accent-primary);
  width: 46px;
  height: 46px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.support-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.support-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.support-value {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* WhatsApp Card Styles */
.contact-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.whatsapp-card {
  background: rgba(35, 35, 35, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.whatsapp-card:hover {
  border-color: var(--accent-primary);
}

.whatsapp-icon {
  font-size: 2.2rem;
  color: #25d366;
  margin-bottom: 1.2rem;
  width: 70px;
  height: 70px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.whatsapp-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.whatsapp-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
  color: var(--text-primary);
}

.whatsapp-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 90%;
}

.whatsapp-button {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
}

.whatsapp-button:hover {
  opacity: 1; /* Mantém apenas uma mudança de opacidade ao invés da animação e sombra */
}

.whatsapp-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  flex-shrink: 0; /* Impede que o ponto encolha */
}

.status-dot.online {
  background-color: #25d366;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  background: rgba(50, 50, 50, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

/* Footer */
.footer {
  background: #1a1a1a;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .nav.active {
    display: flex;
  }

  /* Estilo para o menu móvel quando ativo */
  .nav.active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  /* Estilo para o botão de carteira dentro do menu mobile */
  .btn-wallet-mobile {
    display: none; /* Oculto em todos os tamanhos de tela por padrão */
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.9;

    margin-top: 1.5rem;
    align-self: center;
    width: 80%;
  }

  /* Botão de carteira mobile só aparece em dispositivos móveis */

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.3rem;
    padding: 0 10px;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 15px;
    margin-bottom: 2rem;
  }

  .hero-badge {
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    padding: 0 20px;
    gap: 0.8rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0 10px;
    margin-top: 1rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .hero-content {
    width: 100%;
    padding: 0 10px;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .support-info,
  .contact-whatsapp {
    height: auto;
  }

  /* Classes central-title e central-subtitle foram removidas */

  .support-item {
    padding: 0.9rem;
    gap: 0.9rem;
    min-height: 4rem;
  }

  .support-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    min-width: 40px; /* Garante que o ícone não perca a forma circular */
  }

  .whatsapp-card {
    padding: 1.8rem 1.2rem;
    height: auto;
  }

  .whatsapp-card p {
    max-width: 100%;
  }

  .whatsapp-button {
    width: 100%;
    padding: 0.9rem 1.7rem;
    font-size: 1rem;
  }
  .about-main {
    padding: 2rem;
  }

  .affiliate-info {
    padding: 2rem;
  }

  /* Esconder o botão principal de carteira em dispositivos móveis */
  .header-actions .btn-wallet {
    display: none;
  }
}

/* Controla a visibilidade do botão de carteira mobile */
@media (min-width: 769px) {
  /* Garante que o botão de carteira mobile está sempre oculto em desktop */
  .btn-wallet-mobile {
    display: none !important;
  }
}

/* Ativação do botão de carteira mobile apenas no menu mobile */
@media (max-width: 768px) {
  .nav.active .btn-wallet-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .token-stats {
    grid-template-columns: 1fr;
  }

  .btn-wallet {
    padding: 0.65rem 0.85rem;
    font-size: 0.8rem;
  }
}
