@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Poppins:wght@300;400;600&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
    background-color: #000;
    color: #fff;
}

/* ============================= */
/* CENTRALIZAR SOMENTE A IMAGEM */
/* ============================= */

.extra-container {
    display: flex;
    justify-content: center;   /* centraliza horizontal */
    width: 100%;
    margin: 60px 0;            /* espaço sem quebrar layout */
}

.imagem-centralizada {
    max-width: 90%;
    height: auto;
    display: block;
}
/* TEXTO ABAIXO DA IMAGEM */
/* TEXTO TOKENOMICS – ESTILO FUTURISTA */
.extra-text {
    max-width: 820px;
    margin: 24px auto 0;
    text-align: center;

    font-family: 'Orbitron', sans-serif; /* futurista */
    font-size: 1.95rem;                  /* menor e elegante */
    letter-spacing: 0.08em;              /* espaçamento moderno */
    line-height: 1.7;

    color: #19f8a2; /* azul tecnológico */
    text-shadow: 
        0 0 6px rgba(0, 180, 255, 0.35),
        0 0 14px rgba(0, 120, 255, 0.25);
}
/* ==DESTAQUE DOURADO APENAS NO STRONG  100.000,000 DE TOKENS==*/
.extra-text strong {
    color: #ee9609; /* dourado premium */
    font-weight: 700;
    text-shadow:
        0 0 8px rgba(245, 193, 108, 0.6),
        0 0 16px rgba(245, 193, 108, 0.4);
}
@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
/* ======AMINAÇÃO NA PARTE DE 100,000,000 =======*/

.extra-text strong {
    color: #d6eb1f; /* dourado */
    font-weight: 700;

    display: inline-block; /* obrigatório para transform */
    animation: zoomPulse 2.5s ease-in-out infinite;

    text-shadow:
        0 0 8px rgba(245, 193, 108, 0.6),
        0 0 18px rgba(245, 193, 108, 0.4);
}


/* ========ATLERA O TAMANHO DO ZOOM DA PAGINA INTEIRA=======*/
/* =========================
   RESET BÁSICO
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;   /* tamanho base */
    line-height: 1.5;
    background-color: #000; /* ou a cor que você quiser */
    color: #fff;
}

/* =========================
   CONTAINERS
========================= */
.container {
    width: 100%;       /* ocupa a tela inteira */
    max-width: 1200px; /* limite de largura para não esticar demais */
    margin: 0 auto;    /* centraliza na tela */
    padding: 0 20px;   /* espaçamento interno */
}

/* =========================
   HERO / SEÇÕES PRINCIPAIS
========================= */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;   /* tamanho fixo, não vw */
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;   /* tamanho fixo */
    max-width: 800px;  /* limite de largura do parágrafo */
    margin: 0 auto;
}

/* =========================
   BOTOES
========================= */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;   /* tamanho fixo */
    text-decoration: none;
    border-radius: 8px;
    background-color: #ffd700; /* dourado */
    color: #000;
    transition: 0.3s;
}

.btn:hover {
    background-color: #e6c200;
}

/* =========================
   IMAGENS
========================= */
img {
    max-width: 100%;
    height: auto;
}

/* =========================
   OUTRAS SEÇÕES
========================= */
section {
    padding: 60px 0;
}

/* =========================
   MEDIA QUERIES (RESPONSIVO)
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}


/* ===================== VARIÁVEIS DE CORES ===================== */
:root {
    --primary-color: #00b4d8;  /* dourado */
    --secondary-color: #ffd700; /* neon azul */
    --dark-bg: #000000ea;         /* fundo escuro */
    --glass-bg: rgba(255, 255, 255, 0.05);
}


/* ===================== BODY / FUNDO ===================== */
body {
        background-image: url('imagem02.jpeg');
        animation: energyPulse 2s infinite;
        


    }
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.836), rgba(0,0,0,0.7)),
        url("imagem02.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
}


/* ================HEADER TITULO  AONDE FICA A LOGO ================= */
.header {
    width: 100%;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 2px 40px rgba(0,255,225,0.1);
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Grid responsivo */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 225, 0.2);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    
}

/* Efeito hover nos cavalos rede solana */
.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 30px rgb(0, 255, 255);
}

/* Título */
.card-3d {
    margin-top: 60px; /* desce a imagem central da pagina */

    display: flex;           /* ativa flexbox */
    justify-content: center; /* centraliza horizontalmente */
    align-items: center;     /* centraliza verticalmente, caso o div tenha altura */
    width: 100%;             /* garante que ocupe a largura total */
    height: auto;            /* se quiser altura automática */
}

/* Texto */
.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #17ecc9;
}

/* Glow animado no fundo */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,255,225,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

/* Responsivo */
@media (max-width: 600px) {
    .card h3 {
        font-size: 1.3rem;
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
}

/* LOGO */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.animated-text { font-size: 50px; /* ⬅ aumenta aqui */
    background: linear-gradient(90deg, #02b7ee, #d0ff006c, #ffc400);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: plasma 5s infinite linear;
}

@keyframes plasma {
   50% { background-position: 90%; }
    50% { background-position:180%; }
}

/* Animação de brilho pulsante */
@keyframes glow {
    0% {
        text-shadow:
            0 0 5px #ff6600,
            0 0 10px #0044ff,
            0 0 5px #ff0000,
            0 0 5px #00FFE1;
        color: #00c3ff;
    }
    50% {
        text-shadow:
            0 0 5px #ff0000,
            0 0 5px #0026ff,
            0 0 px #1100ff,
            0 0 20px #ff0000;
        color: #fbff05; /* tom mais claro dourado */
    }
    100% {
        text-shadow:
            0 0 5px #ff0000,
            0 0 5px #00FFE1,
            0 0 10px #ff7300,
            0 0 20px #00FFE1;
        color: #fffb00;
    }
}


.logo span {
    color: var(--secondary-color);
}

/* NAV */
.nav {
    list-style: none;
    display: flex;
    gap: 50px;
    
}

.nav li a {
    text-decoration: none;
    color: #34e1ff;
    font-weight: 800;
    transition: 0.3s ease;
    position: relative;
}

.nav li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    left: 0;
    bottom: -5px;
    background: var(--primary-color);
    transition: 0.3s ease;
}

.nav li a:hover::after {
    width: 100%;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centraliza verticalmente */
    align-items: center;     /* centraliza horizontalmente */
    text-align: center;
    min-height: 80vh;        /* altura mínima da hero */
    color: #fff;
    padding: 50px 20px;
    background-size: cover;
    background-position: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 20px 45px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    min-width: 220px;
    text-align: center;
    background: linear-gradient(90deg, #00c3ff, #ffff1c); /* exemplo de cor gradient */
    color: #000;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: scale(1.05);
}

/* TÍTULO HERO */
.hero h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    
    /* Cores e Gradiente */
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* CENTRALIZAÇÃO */
    text-align: center;       /* Centraliza o texto internamente */
    display: block;           /* Garante que ele se comporte como um bloco */
    margin: 0 auto 30px auto; /* 'auto' nas laterais empurra o bloco para o centro */
    width: 100%;             /* Garante que ele use o espaço total disponível para centralizar */
    max-width: 800px;        /* Opcional: limita a largura para o texto não ficar esticado demais */

    animation: glowText 2s infinite alternate;
}

@keyframes glowText {
    from { text-shadow: 0 0 60px rgba(6, 169, 233, 0.705); }
    to { text-shadow: 0 0 50px rgba(241, 237, 1, 0.37); }
}
/* FORMATA OS BOTOES DE COIMARKETCAP COMMUNITY SOCIAL MEDIA*/
/* Container que envolve os botões */
.container-heros {
    display: flex;           /* Ativa o layout flexível */
    justify-content: center;  /* Centraliza horizontalmente na tela */
    align-items: center;      /* Alinha verticalmente */
    gap: 30px;               /* Cria o espaçamento entre cada botão */
    flex-wrap: wrap;         /* Permite que os botões quebrem linha em telas menores (celular) */
    width: 100%;             /* Garante que o container use toda a largura disponível */
    margin: 30px 0;          /* Adiciona um espaço acima e abaixo do grupo de botões */
}

/* Garante que os botões mantenham o estilo visual da imagem */
.container-heros .btn.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 50px;     /* Mantém o formato arredondado original */
    border: none;
    font-weight: bold;
    text-decoration: none;   /* Remove sublinhados de links */
    color: #000;             /* Texto preto para contraste no gradiente */
    background: linear-gradient(to right, #20d5d2, #e7db3e); /* Gradiente ciano e amarelo */
    cursor: pointer;
}


/* PARÁGRAFO HERO */
.hero {
    width: 100vw;           /* pega 100% da largura da tela */
    height: auto;           /* altura automática */
    padding: 0px;          /* espaçamento mínimo nas bordas */
    box-sizing: border-box; /* inclui padding na largura */
    background: url('0cb0ed93-769d-4d58-a4b0-c12507553981.png') no-repeat center center;
    background-size: cover; /* cobre toda a área */
    display: flex;
    justify-content: center;
}

.hero p {
    width: 80%;
    margin: 0 auto;          /* ← ISSO é o ajuste correto */
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.8;
    color: #f3f3f3fb;
    text-align: center;
}




/* BOTÕES HERO */
.hero {
    position: center;
    min-height: auto;     /* NÃO usar height fixa */
    overflow: visible;    /* impede corte */
    padding-bottom: 120px; /* espaço para a imagem */
}

.btn {
    padding: 10px 30px;
    font-weight:100;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s ease;
    box-shadow: 0 0 20px rgba(231, 40, 6, 0.2);
}

.btn.primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #0b0f1a;
    box-shadow: 0 0 30px rgba(70, 65, 43, 0.925);
}

.btn.primary:hover {
    transform: scale(1.20);
    box-shadow: 0 0 50px rgba(255, 196, 0, 0.932);
}

.btn.secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn.secondary:hover {
    background: var(--primary-color);
    color: #0b0f1a;
    transform: scale(1.20);
    box-shadow: 0 0 30px rgba(226, 156, 4, 0.562);
}
.rotacao360 {
    animation: girar3d 3s linear infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 0 15px #FFD700);
}
.card-3d {
    margin-top: 60px; /* desce a imagem central da pagina */
}

    /* INFORMAÇAÕ DE SUPPIY*/
}
.token h2 {
    font-size: 2.90rem;
    font-weight: bold;
    background: linear-gradient(45deg, #FFD700, #FFC700, #2b2212);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.token .supply {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #FFD700, #FFEA70, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
/* TEXTO NO FINAL DA PAGINA QUE CONTEM DIREITOS ALTORAIS DA WIBYCOIN*/

/* CENTRALIZA O CONTEÚDO */
.footer-center {
    text-align: center;
}

/* TEXTO PRINCIPAL */
.footer p {
    font-size: 0.9rem;
    margin: 0;
}

/* DISCLAIMER */
.footer .disclaimer {
    font-size: 0.84rem;
    opacity: 0.7;
    margin-top: 6px;
}
/*=======CONFIGURAÇÃO DO TEXTO ROADMAP ====*/
/* ============================= */
/* TOKEN SUPPLY */
.token-supply {
    text-align: center;
    margin-bottom: 120px;
}

/* ============================= */
/* ROADMAP */
.roadmap {
    max-width: 1100px;
    margin: 0 auto 150px auto;
    padding: 0 20px;
    text-align: center;
}

.roadmap h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #fbff00, #02b7ff, #a30aeb);
    -webkit-background-clip: text;
    color: transparent;
}

.roadmap-phase {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    backdrop-filter: blur(8px);
}

.roadmap-phase h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.roadmap-phase ul {
    list-style: none;
    padding: 0;
}

.roadmap-phase li {
    font-size: 18px;
    margin: 10px 0;
    color: #e0e0e0;
}

/* CORES DAS FASES */
.roadmap-phase.gold h3 { color: #ffd700; }
.roadmap-phase.blue h3 { color: #00cfff; }
.roadmap-phase.purple h3 { color: #b084ff; }

/* ============================= */
/* ANIMAÇÃO AO ROLAR A PÁGINA FINAL DO ROADMAP */
.roadmap-phase {
    position: relative;
    z-index: 1;
}

/* Glow atrás (apagado) */
.roadmap-phase::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.7) 0%,
        rgba(255, 215, 0, 0.35) 40%,
        transparent 75%
    );
    filter: blur(40px);
    opacity: 0;
    transform: scale(0.6);
    z-index: -1;
}

/* Ativa ao entrar na tela */
.roadmap-phase.active::before {
    animation:
        glowOn 1s ease-out forwards,
        glowPulse 2.5s ease-in-out infinite alternate;
}

/*ROADMA EFEITO FUTURISTA */
/* ===== BASE ROADMAP ===== */
.roadmap {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #050b14, #02040a);
    font-family: 'Orbitron', sans-serif;
}

.roadmap h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #ffd700, #4aa3ff, #b366ff);
    -webkit-background-clip: text;
    color: transparent;
}

/* ===== CARD BASE ===== */
.roadmap-phase {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 35px;
    border-radius: 18px;
    background: rgba(10, 15, 30, 0.85);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.5s ease;
    overflow: hidden;
}

/* Glow animado interno */
.roadmap-phase::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(
        120deg,
        transparent,
        currentColor,
        transparent
    );
    opacity: 0;
    filter: blur(25px);
    transition: opacity 0.5s ease;
}

/* Linha energética */
.roadmap-phase::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        currentColor,
        transparent
    );
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.roadmap-phase:hover::after {
    opacity: 1;
    animation: borderRun 2.5s linear infinite;
}

@keyframes borderRun {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}


/* ===== HOVER ANIMATION ===== */
.roadmap-phase:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 0 60px currentColor;
}

.roadmap-phase:hover::before,
.roadmap-phase:hover::after {
    opacity: 1;
}

/* ===== TEXTO ===== */
.roadmap-phase h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.roadmap-phase p {
    color: #cfd8ff;
    margin-bottom: 15px;
}

.roadmap-phase ul {
    padding-left: 20px;
}

.roadmap-phase li {
    color: #e5e9ff;
    margin-bottom: 8px;
}

/* ===== CORES POR FASE ===== */
.roadmap-phase.gold {
    color: #776a1f;
}

.roadmap-phase.blue {
    color: #1c4670;
}

.roadmap-phase.purple {
    color: #6b28ad;
}

/* ===== ANIMAÇÃO SUAVE 2D ===== */
.roadmap-phase:hover {
    animation: float2D 3s ease-in-out infinite;
}

@keyframes float2D {
    0%   { transform: translateY(0) scale(1.02); }
    50%  { transform: translateY(-10px) scale(1.04); }
    100% { transform: translateY(0) scale(1.02); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .roadmap-phase {
        padding: 25px;
    }

    .roadmap h2 {
        font-size: 2rem;
    }
}

/* ===================== RESPONSIVO ===================== */

/* Tablets e telas médias */
@media (max-width: 992px) {
    .hero {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .nav {
        gap: 15px;
    }

    .grid {
        gap: 25px;
    }
}

/* Tablets menores e celulares grandes */
@media (max-width: 768px) {
    .hero {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 80px;
        text-align: center;
        align-items: center;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
        width: 90%;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .grid {
        grid-template-columns: 1fr; /* força 1 coluna */
        gap: 20px;
    }

    .nav {
        flex-direction: column;
        position: fixed;
        top: 80px;
        right: -100%;
        width: 220px;
        height: calc(100% - 80px);
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        transition: right 0.3s ease;
    }

    .nav.active {
        right: 0;
    }

    .roadmap h2 {
        font-size: 2rem;
    }

    .roadmap-phase {
        padding: 25px;
        margin-bottom: 25px;
    }

    .roadmap-phase h3 {
        font-size: 1.2rem;
    }

    .roadmap-phase li {
        font-size: 0.95rem;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
        min-width: 180px;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        font-size: 13px;
        padding: 8px 18px;
        min-width: 160px;
    }

    .roadmap h2 {
        font-size: 1.6rem;
    }

    .roadmap-phase h3 {
        font-size: 1rem;
    }

    .roadmap-phase li {
        font-size: 0.9rem;
    }

    .grid {
        gap: 15px;
    }

    .card-3d img {
        width: 80%;
        margin: 20px auto;
    }
/* Força o container a se ajustar ao tamanho da tela */
.header .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

/* Força o menu a ficar na horizontal e não quebrar */
.nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 10px !important;
}

/* Ajuste radical para Celular */
@media (max-width: 600px) {
    .header .container {
        flex-direction: column !important; /* Logo em cima, menu embaixo */
        text-align: center !important;
    }
    
    .nav {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

    .nav li {
        margin: 5px !important;
    }
}
@media (max-width: 768px) {
    .header .container {
        flex-direction: column; /* Empilha o nome e o menu no celular */
        text-align: center;
    }
    .nav {
        justify-content: center;
        margin-top: 10px;
    }
}
/* ================= HERO VIDEO ================= */
.hero-video {
    position: relative;
    width: 100%;       /* CORRIGIDO: De 200% para 100% para não vazar da tela */
    height: 100vh;     /* Ocupa a altura da tela */
    overflow: hidden;
    background: #000;  /* Fundo preto caso o vídeo demore a carregar */
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Garante que o vídeo preencha o espaço sem sobrar bordas */
    z-index: 1;
    filter: brightness(0.45);
}

/* Ajuste específico para Mobile (Vertical) */
@media (max-width: 768px) {
    .hero-video {
        height: 100svh; /* 'svh' é melhor no mobile para evitar o pulo da barra de endereços */
    }
    
    .hero-overlay {
        padding: 15px; /* Reduz um pouco o respiro lateral em telas pequenas */
    }

    .btn-hero {
        padding: 12px 24px; /* Botão um pouco menor para caber melhor na vertical */
        font-size: 0.9rem;
    }
}
/* ================= HERO VIDEO RESPONSIVO ================= */
@media (max-width: 768px) {

    .hero-video {
        height: 100vh;   /* não exagera no mobile */
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
        max-width: 90%;
    }

    .btn-hero {
        padding: 12px 26px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    .hero-video {
        height: 90vh;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-overlay p {
        font-size: 0.9rem;
    }
}
/* ===== AJUSTE FINO PARA MOBILE (VÍDEO NÃO CORTAR) ===== */

@media (max-width: 768px) {

    .hero-video video {
        object-fit: contain;          /* não corta o vídeo */
        background: #000;             /* evita bordas feias */
        filter: brightness(0.45);
    }

    .hero-video {
        height: 100vh;
    }
}

@media (max-width: 480px) {

    .hero-video video {
        object-fit: contain;
        object-position: center; /* centraliza certinho */
    }

    .hero-video {
        height: 90vh;
    }
}
/* ===== TOKENOMICS VIDEO CENTRALIZADO ===== */
.tokenomics-video {
    display: block;
    margin: 40px auto;        /* centraliza horizontal */
    width: 90%;               /* aumenta tamanho */
    max-width: 1100px;        /* limite grande */
    border-radius: 22px;
    box-shadow: 0 0 50px rgba(255,215,0,0.45);
}

/* Mobile */
@media (max-width: 768px) {
    .tokenomics-video {
        width: 95%;
        max-width: 100%;
    }
}
video {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 16px;
}
}
/* ================================
   CARD LED MODERNO | WIBYCOIN
   ================================ */
/* ============================= */
/* ANIMAÇÃO APENAS NO CARD       */
/* ============================= */

.led-card {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    will-change: transform;
}

/* Hover desktop apenas */
@media (hover: hover) {
    .led-card:hover {
        transform: translateY(-6px);
        box-shadow:
            0 0 60px rgba(0,255,255,.25),
            inset 0 0 35px rgba(0,255,255,.08);
    }

    .led-card:hover .led-glow {
        opacity: 0.95;
        filter: blur(50px);
    }

    .led-card:hover .card-3d {
        transform: translateY(-4px);
    }
}

/* IMAGEM 3D – animação suave contínua */
.card-3d {
    transition: transform 0.6s ease;
}

.imagem-centralizada {
    animation: floatSafe 7s ease-in-out infinite;
}

@keyframes floatSafe {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* CARD COM LED SUAVE AO REDOR */
.led-card {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: clamp(24px, 4vw, 55px);
    border-radius: 26px;
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 255, 0.25);

    /* LED SUAVE */
    box-shadow:
        0 0 25px rgba(0, 255, 225, 0.35),
        0 0 45px rgba(0, 170, 255, 0.25),
        0 0 65px rgba(123, 92, 255, 0.15);
}
/* sesivel ao mouse */
.led-card {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: clamp(24px, 4vw, 55px);
    border-radius: 26px;
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 255, 0.25);

    /* Variáveis controladas pelo mouse */
    --x: 0px;
    --y: 0px;

    box-shadow:
        calc(var(--x) * 0.15) calc(var(--y) * 0.15) 30px rgba(0, 255, 225, 0.35),
        calc(var(--x) * 0.25) calc(var(--y) * 0.25) 60px rgba(0, 170, 255, 0.25),
        calc(var(--x) * 0.35) calc(var(--y) * 0.35) 90px rgba(123, 92, 255, 0.18);

    transition: box-shadow 0.12s ease;
}
/*CODIGO PARA EDIÇÃO DO TEXTO CONTRATO WIBYCOIN*/
.contract-box {
    max-width: 560px;
    margin: 40px auto;
    padding: 26px 30px;
    background: linear-gradient(145deg, #0b0f14, #121a22);
    border-radius: 16px;
    text-align: center;
    box-shadow:
        0 0 22px rgba(0, 255, 200, 0.22),
        inset 0 0 14px rgba(0, 255, 200, 0.12);
}

/* Título */
.contract-label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    letter-spacing: 1.6px;
    color: #00ffe0;
    margin-bottom: 14px;
}

/* Endereço – máxima legibilidade */
.contract-address {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 15.5px;
    letter-spacing: 0.8px;
    line-height: 1.7;
    word-break: break-all;

    color: #eafffb;
    background: rgba(0, 0, 0, 0.55);
    padding: 14px 16px;
    border-radius: 10px;

    border: 1px solid rgba(0, 255, 200, 0.4);
    text-shadow: 0 0 6px rgba(0, 255, 200, 0.25);
}

/* Descrição */
.contract-name {
    display: block;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    letter-spacing: 0.4px;
    color: #a7fff0;
}
/*FORMATAÇÃO DOS BOTÔES SUPERIOS */
/* REMOVE QUALQUER FUNDO DA NAVBAR */
.navbar {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* REMOVE FUNDO DE UL E LI */
.navbar ul,
.navbar li {
    background: transparent !important;
}

/* ESTRUTURA */
.nav-links {
    display: flex !important;
    justify-content: center !important;
    gap: 32px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* LINKS = BOTÕES */
.nav-links li a {
    background: transparent !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    position: relative !important;

    transition: 
        transform 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

/* BORDA DE ENERGIA */
.nav-links li a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(0, 255, 213, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* HOVER */
.nav-links li a:hover {
    color: #00ffd5 !important;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 
        0 0 20px rgba(0, 255, 213, 0.6),
        0 0 40px rgba(124, 255, 107, 0.3);
}

.nav-links li a:hover::before {
    opacity: 1;
}

/* LINHA FUTURISTA */
.nav-links li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffd5, #7cff6b);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 60%;
}
/* centralizar video da logo  */
/* 1. CENTRALIZAR A MOEDA E TRAZER PARA FRENTE */
.site-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza tudo horizontalmente */
    padding-top: 20px;
}

.coin-3d-container {
    width: 200px;      /* Tamanho do container */
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;       /* Garante que fique na frente de outros elementos */
    margin-bottom: 20px;
}

.coin-3d-video {
    width: 100%;       /* O vídeo ocupa todo o container */
    height: auto;
    border-radius: 50%; /* Se o vídeo for quadrado e quiser circular */
    /* Se o vídeo tiver fundo preto e você quiser tentar remover via CSS: */
    /* mix-blend-mode: screen; */ 
}

/* 2. REMOVER O FUNDO PRETO DOS BOTÕES */
.navbar {
    width: 100%;
    background: transparent !important; /* Tira o fundo preto */
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    background: transparent; /* Garante que a lista também não tenha fundo */
    padding: 10px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ccff00; /* Destaque ao passar o mouse */
    text-shadow: 0 0 10px #ccff00;
}
/* Configuração para o Vídeo/Moeda */
.coin-3d-video {
    max-width: 100%;    /* Nunca deixa o vídeo ser maior que a tela */
    height: auto;       /* Mantém a proporção */
}

/* Media Query: Ajustes específicos para Celulares (Telas até 600px) */
@media (max-width: 600px) {
    .coin-3d-container {
        width: 120px;   /* Diminui a moeda no celular para sobrar espaço */
        height: 120px;
    }

    .nav-links {
        gap: 15px;      /* Diminui o espaço entre os botões para caberem lado a lado */
    }

    .nav-links a {
        font-size: 12px; /* Diminui a letra no celular */
        padding: 5px 10px;
    }
}
@media (max-width: 768px) {
    body {
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: scroll; /* trava o bug */
    }
}
