/* =====================================================
   DINASTIA RADAR — CSS DEFINITIVO
   Estável • Performático • Sem Conflitos
===================================================== */

/* ================= VARIÁVEIS ================= */
:root{
  --bg:#0a0710;
  --card:#14101d;
  --card-soft:#1b1528;
  --text:#f1ecfb;
  --muted:#b9adc9;
  --accent:#9b23ff;
  --accent-2:#6f00ff;
  --success:#25d366;
  --radius:18px;
  --container:1200px;
}

/* ================= RESET ================= */
*,
*::before,
*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(circle at 20% 0%,rgba(155,35,255,.12),transparent 60%),
    radial-gradient(circle at 80% 100%,rgba(155,35,255,.08),transparent 65%),
    var(--bg);
  color:var(--text);
  font-family:Inter, Arial, sans-serif;
  line-height:1.6;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* ================= CONTAINER ================= */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
}

/* =====================================================
   HEADER / MENU
===================================================== */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(10,7,16,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

.logo{
  font-weight:900;
  letter-spacing:1px;
}

.logo span{
  color:var(--accent);
}

.nav{
  display:flex;
  gap:8px;
}

.nav a{
  color:var(--muted);
  text-decoration:none;
  padding:10px 14px;
  border-radius:12px;
  font-weight:500;
  transition:background .25s ease, color .25s ease;
}

.nav a:hover{
  background:rgba(155,35,255,.2);
  color:#fff;
}

.menu-btn{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* ================= MOBILE MENU ================= */
.mobile-menu{
  position:fixed;
  top:0;
  right:-300px;
  width:300px;
  height:100vh;
  background:
    linear-gradient(180deg,
      rgba(155,35,255,.25),
      rgba(20,16,29,.98)
    );
  backdrop-filter:blur(16px);
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:right .35s ease;
  z-index:2000;
}

.mobile-menu.active{
  right:0;
}

.mobile-menu a{
  color:#fff;
  text-decoration:none;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
}

.close-mob{
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  align-self:flex-end;
  cursor:pointer;
}

/* =====================================================
   HERO
===================================================== */
.hero{
  padding:90px 0;
}

.hero-inner{
  display:flex;
  gap:50px;
  align-items:center;
}

.hero-text{
  flex:1;
}

.hero-text h1{
  font-size:44px;
  line-height:1.25;
  margin-bottom:14px;
}

.lead{
  color:var(--muted);
  max-width:520px;
}

.hero-buttons{
  margin-top:26px;
  display:flex;
  gap:14px;
}

/* BOTÕES */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:14px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
}

.btn-outline{
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
}

.btn-primary{
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  color:#fff;
  box-shadow:0 12px 40px rgba(155,35,255,.4);
}

.btn:hover{
  transform:translateY(-3px);
}

/* HERO CARD */
.hero-card{
  width:360px;
  background:
    linear-gradient(180deg,
      rgba(155,35,255,.18),
      var(--card)
    );
  padding:30px;
  border-radius:22px;
  box-shadow:0 30px 90px rgba(0,0,0,.65);
}

.hero-icon{
  width:74px;
  height:74px;
  border-radius:50%;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin-bottom:16px;
}

/* =====================================================
   CRIPTOMOEDAS
===================================================== */
.crypto-section{
  padding:70px 0;
}

.section-title{
  font-size:28px;
  color:var(--accent);
}

.section-sub{
  color:var(--muted);
  margin:8px 0 28px;
}

.crypto-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:18px;
}

.crypto-card{
  background:var(--card-soft);
  padding:18px;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 14px 40px rgba(0,0,0,.55);
  transition:transform .3s ease, box-shadow .3s ease;
}

.crypto-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 70px rgba(155,35,255,.35);
}

.crypto-card img{
  width:44px;
  height:44px;
  object-fit:contain;
  flex-shrink:0;
}

.crypto-info{
  display:flex;
  flex-direction:column;
}

.crypto-info strong{
  font-size:15px;
}

.crypto-info span{
  font-size:12px;
  color:var(--muted);
}

.crypto-price{
  margin-left:auto;
  font-weight:800;
}

/* =====================================================
   MÉTRICAS
===================================================== */
.metrics{
  padding:80px 0;
}

.metrics-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
}

.metric-card{
  background:
    linear-gradient(180deg,
      rgba(155,35,255,.22),
      var(--card)
    );
  padding:28px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 24px 70px rgba(0,0,0,.6);
}

.metric-value{
  font-size:36px;
  font-weight:900;
  color:var(--accent);
  text-shadow:0 0 22px rgba(155,35,255,.6);
}

.metric-label{
  font-size:14px;
  color:var(--muted);
  margin-top:6px;
}

/* =====================================================
   APOIO / PIX
===================================================== */
.support{
  padding:80px 0;
}

.support-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
}

.support-card{
  background:
    linear-gradient(180deg,
      rgba(155,35,255,.16),
      var(--card)
    );
  padding:30px;
  border-radius:22px;
  box-shadow:0 26px 80px rgba(0,0,0,.65);
}

.support-card h3{
  margin-bottom:10px;
}

.support-card p{
  color:var(--muted);
}

.pix-box{
  margin-top:18px;
}

.pix-label{
  font-size:13px;
  color:var(--accent);
  letter-spacing:1px;
}

.pix-row{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  background:rgba(255,255,255,.08);
  border-radius:14px;
}

.pix-row span{
  font-weight:800;
}

.pix-row button{
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  border:none;
  color:#fff;
  padding:8px 16px;
  border-radius:10px;
  cursor:pointer;
  font-weight:700;
}

.btn-whatsapp{
  margin-top:16px;
  background:var(--success);
  color:#fff;
}

/* =====================================================
   FOOTER
===================================================== */
.footer{
  padding:30px 0;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

/* =====================================================
   RESPONSIVO
===================================================== */
@media(max-width:900px){
  .hero-inner{
    flex-direction:column;
    text-align:center;
  }

  .hero-card{
    width:100%;
  }

  .nav{
    display:none;
  }

  .menu-btn{
    display:block;
  }
}

@media(max-width:600px){
  .crypto-grid,
  .metrics-grid,
  .support-grid{
    grid-template-columns:1fr;
  }
}