/* Root Variables */
:root {

    --primary-color: #9C27B0;
    /* Roxo Neon */
    --primary-color-rgb: 156, 39, 176;
    --secondary-color: #2196F3;
    /* Azul Neon */
    --secondary-color-rgb: 33, 150, 243;
    --accent-color: #4CAF50;
    /* Verde Vibrante */
    --accent-color-rgb: 76, 175, 80;
    --text-color: #D4D4D8;
    /* Branco */
    --text-color-rgb: 255, 255, 255;
    --dark-bg: #0D0D2B;
    /* Fundo Escuro Espacial */
    --dark-bg-rgb: 13, 13, 43;
    --purple-rgb: 136, 84, 252;
    /* 50% de opacidade */
    --text-color-gray: #dcdcdc;
    /* Cinza claro */
    --text-color-blue: #a3d8f4;
    /* Azul claro */
    --text-color-purple: #c3a6e3;
    /* Roxo suave */
    --text-color-green: #a8e6cf;
    /* Verde claro */

    --font-primary: 'Audiowide', sans-serif;
    /* Principal */
    --font-orbitron: 'Orbitron', sans-serif;
    /* Alternativa futurista */
    --font-exo2: 'Exo 2', sans-serif;
    /* Suave e moderna */
    --font-michroma: 'Michroma', sans-serif;
    /* Minimalista */
    --font-rajdhani: 'Rajdhani', sans-serif;
    /* Versátil */
    --font-quantico: 'Quantico', sans-serif;
    /* Estilo militar/espacial */
}



/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {

    margin: 0 auto;

}


.content-limiter {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;

}




body {
    font-family: var(--font-quantico), Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

}


body p {

    font-family: var(--font-quantico), Arial, sans-serif;
}

h1, h2, h3 {

    font-family: var(--font-quantico), Arial, sans-serif;

}

a, button, i {
    cursor: pointer;
}

/* Header Container */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #FFFFFF;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Gradiente Inicial */
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1B41, #292D63);
    z-index: -1;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

/* Gradiente Hover */
.header:hover::before {
    background: linear-gradient(135deg, #292D63, #3A3F85);
    opacity: 0.8;
}



.header.show {
    opacity: 1;
    transform: translateY(0);
}

.header {
    transition: padding-top 0.3s ease-in-out;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1%;
    margin: 0 auto;
}

.fa-brands {
    display: inline-block;
    font-size: 24px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: var(--font-quantico);
    font-weight: 700;

}

.nav-links a:hover {
    color: var(--text-color-purple);

}

.nav-links .cta-button:hover {
    /* color: var(--primary-color); */
    transform: scale(1.05);
    box-shadow: 1px 1px 2px var(--text-color-purple);

}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg,
            rgba(30, 31, 56, 0.75),
            rgba(42, 45, 86, 0.75)), url('./assets/images/image-hero-1.webp') no-repeat center center;
    background-size: cover;
    color: var(--text-color-gray);
    min-height: 93vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0rem 2rem;
}


/* Hero Title */
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-color);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Subtitle */
.hero p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 1rem auto;
}

/* Hero Buttons */
.hero .cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero .cta-buttons .cta-button-large {
    width: auto;
    flex: 1;
    max-width: 200px;
    text-align: center;
}


.hero-content-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    margin-top: 4rem;
}

.hero-text {
    flex: 1;
    text-align: left;
    color: var(--text-color-gray);
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;

    flex: 1;
    text-align: left;
    background: linear-gradient(180deg, #dcdcdc, #9159d9, #1ec6a2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--text-color-gray);
    font-family: var(--font-quantico);
    text-align: justify;
}


/* Botão */
/* Estilo atualizado para o botão com gradiente */
.cta-button-large {
    position: relative;
    background: linear-gradient(90deg, #1ec6a2, #5967e2, #7e43e6);
    background-size: 200% 200%;
    animation: gradient-animation 5s linear infinite;
    color: var(--text-color-gray);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    transform: translateY(0);
    text-shadow: 1px 1px 2px #0D0D2B;
}

/* LED contornando */
.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(transparent 0%,
            rgba(255, 255, 255, 0.3) 30%,
            rgb(255, 255, 255) 40%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    border-radius: 12px;
    animation: rotate-border 2s linear infinite;
}

/* Fundo para cobrir o centro */
.cta-button-large::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(90deg, #1ec6a2, #5967e2, #7e43e6);
    background-size: 200% 200%;
    border-radius: 10px;
    animation: gradient-animation 5s linear infinite;
}

/* Conteúdo do botão */
.cta-button-large span {
    position: relative;
    z-index: 1;
}

/* Efeito hover mais suave */
.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(30, 198, 162, 0.2),
        0px 10px 20px rgba(89, 103, 226, 0.2),
        0px 12px 25px rgba(126, 67, 230, 0.2);
}

.cta-button-large:active {
    transform: translateY(0);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* countdown */
.countdown-timer {
    font-family: var(--font-quantico);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color-gray);
    text-align: center;
    margin-top: 10px;
    /* background: linear-gradient(90deg, #1ec6a2, #5967e2, #7e43e6); */
    /* padding: 10px 15px; */
    /* border-radius: 10px; */
    display: inline-block;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

.countdown-timer span {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);

}


/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Estilo do Conteúdo do Popup */
.popup-content {
    background: linear-gradient(135deg, #1A1B41, #292D63);
    color: var(--text-color-gray);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    max-width: 650px;
    max-height: 75vh;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Área rolável dentro do Popup */
.popup-scroll {
    overflow-y: auto;
    max-height: 60vh;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #7e43e6 #1A1B41;
}

/* Para navegadores WebKit (Chrome, Edge, Safari) */
.popup-scroll::-webkit-scrollbar {
    width: 6px;
}

.popup-scroll::-webkit-scrollbar-track {
    background: #1A1B41;
    border-radius: 10px;
}

.popup-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7e43e6, #1ec6a2);
    border-radius: 10px;
}


/* Título do Popup */
.popup-content h2 {
    font-family: var(--font-quantico);
    font-size: 1.5rem;
    color: var(--text-color-purple);
    margin-bottom: 10px;
}

/* Texto do Popup */
.popup-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.popup-content ul {
    list-style: none;
    padding: 0;
}

/* Botão Fechar */
.popup-content button {
    margin-top: 15px;
    background: linear-gradient(90deg, #1ec6a2, #5967e2);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.popup-content button:hover {
    background: linear-gradient(90deg, #7e43e6, #1ec6a2);
    transform: scale(1.05);
}

/* Animação de Entrada */
.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content.show {
    transform: translateY(0);
}



/* Container geral para a imagem */
.hero-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
}

/* Imagem principal */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}

/* Hover aprimorado */
.hero-image:hover {
    transform: translateY(-15px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}


/* Container lateral */
.side-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1A1B41, #292D63);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    border-radius: 20px 0 0 20px;
    padding: 10px 0;
    width: 60px;
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.side-container:hover {

    box-shadow: 0px 6px 15px rgba(126, 67, 230, 0.9);
}

/* Botões de ícone */
.icon-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    color: var(--text-color-gray);
    font-size: 1.5rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

/* Apenas o ícone recebe o hover */
.icon-button i:hover {
    transform: scale(1.2);
    /* color: var(--text-color-purple); */
    transition: transform 0.5s ease, color 0.5s ease;
}

.icon-button img {
    transition: transform 0.3s ease-in-out;
}

.icon-button:hover img {
    transform: scale(1.2) !important;
}


/* Fundo do botão estático */
.icon-button:hover {
    background: none;
}

/* Adiciona um efeito visual ao botão como um todo */
.icon-button {
    position: relative;
}

.icon-button::before {
    content: '';
    position: absolute;
    inset: 0;

    border-radius: 10px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.icon-button:hover::before {
    opacity: 1;
}

/* Tooltip */
.icon-button::after {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #1A1B41;
    color: var(--text-color-gray);
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

/* Exibir o tooltip no hover */
.icon-button:hover::after {
    opacity: 1;
    visibility: visible;
}



/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/* Aplicando animações */

.hero-text {
    animation: fadeInUp 1s ease-in-out forwards;
    opacity: 0;
}

.hero-image img {
    animation: fadeIn 1.5s ease-in-out forwards;
    opacity: 0;
}

.cta-button-large {
    animation: fadeInUp 2s ease-in-out forwards;
    opacity: 0;
}

.hero-text {
    animation-delay: 0.3s;
}

.hero-image img {
    animation-delay: 0.6s;
}

.cta-button-large {
    animation-delay: 1.2s;
}

.countdown-timer {
    animation: fadeIn 2.5s ease-in-out forwards !important;
    opacity: 0;
}


.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Marquee Section */
.marquee-section {
    background: var(--text-color-gray);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

/* Marquee container */
.marquee {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* Marquee content */
.marquee-content {
    display: flex;
    animation: marquee-scroll 20s linear infinite;
    width: max-content;
}

/* Marquee items */
.marquee-content span {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    color: #0D0D2B;
    white-space: nowrap;
    text-transform: uppercase;
    margin-right: 30px;
    letter-spacing: 1px;
}

/* Infinite scrolling animation */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


/* Tokenomics Section */
#tokenomics {
    background: linear-gradient(90deg,
            rgba(30, 198, 162, 0.9),
            rgba(89, 103, 226, 0.9),
            rgba(126, 67, 230, 0.9)),
        url('./assets/images/start-now-bg.1f60a866.svg');
    background-size: cover;
    background-blend-mode: overlay;
    animation: gradient-animation 6s ease infinite;
    color: var(--text-color-gray);
    padding: 7rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 90vh;
}


#tokenomics h2 {

    font-size: 2.5rem;
    margin-bottom: 1rem;

}

/* Animação do gradiente */
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Detalhes: Imagem ao lado do texto */
.tokenomics-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.image-and-text {
    display: flex;
    gap: 12rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.details-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.details-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}


.details-text {
    max-width: 600px;
    text-align: left;
    color: var(--text-color-gray);
}

.details-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.details-text ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.details-text ul li {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    line-height: 1.5;
}



/* Estilo dos cards */
.tokenomics-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.card {
    flex: 1 1 calc(20% - 2rem);
    min-width: 200px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 2rem;
    color: var(--text-color-gray);
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    color: var(--text-color-gray);
    margin: 0.5rem 0;
}

.card strong {
    font-size: 1.2rem;
    color: var(--text-color-gray);
}



/* Seção Geral */
.faq {
    padding: 7rem 0;
    min-height: 90vh;
    text-align: center;

    background: linear-gradient(180deg,
            rgba(30, 31, 56, 0.9),
            rgba(42, 45, 86, 0.9)),
        url('./assets/images/background-2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;

    color: var(--text-color-gray);
}



.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}


/* Timeline */
.timeline {
    position: relative;
    margin: 0 auto;
    max-width: 800px;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
}

/* Timeline Item */
.timeline-item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
    cursor: pointer;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item .timeline-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg,
            rgba(30, 198, 162, 0.9),
            rgba(89, 103, 226, 0.9),
            rgba(126, 67, 230, 0.9));
    color: var(--text-color-gray);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.timeline-item .timeline-content {
    width: 40%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.timeline-item h3 {
    font-size: 1.5rem;
    color: var(--text-color-gray);
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 1rem;
    color: var(--text-color-gray);
}


/* Final Text */
.final-text {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.final-text h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    max-width: 600px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    color: var(--text-color-gray);
    text-align: center;
}


.final-text-link a {

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    font-size: 1.1rem;
    margin-top: 1.5rem;
    /* max-width: 600px; */
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    color: var(--text-color-gray);
}


/*Banner de anúncio */
.announcement-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #1ec6a2, #5967e2, #7e43e6);
    color: white;
    text-align: center;
    font-size: 0.9rem;
    font-family: var(--font-quantico);
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 9998;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Botão no Banner */
.banner-button {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid white;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.banner-button:hover {
    background: white;
    color: #1A1B41;
}

/* Ícone de Fechar */
.close-banner {
    font-size: 1.3rem;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    transition: 0.3s;
}

.close-banner:hover {
    color: #ff6b6b;
}

/* Adiciona espaçamento ao header quando o banner está visível */
.header {
    transition: padding-top 0.3s ease-in-out;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1B41, #292D63);
    padding: 2rem 2%;
    text-align: center;
    color: var(--text-color-gray);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Estilo dos Ícones */
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-gray);
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

/* Hover nos Ícones */
.social-links a:hover {
    transform: scale(1.2);
    color: var(--text-color-purple);
    transition: transform 0.5s ease, color 0.5s ease;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 1rem;
    color: var(--text-color-gray);
}

.footer-bottom {
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color-gray);
}


.to-top {
    position: fixed;
    bottom: 50px;
    right: 30px;
    background: linear-gradient(180deg,
            rgba(30, 31, 56, 0.9),
            rgba(42, 45, 86, 0.9));
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
}

.to-top.show {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    background: linear-gradient(135deg,
            rgba(30, 198, 162, 0.9),
            rgba(89, 103, 226, 0.9),
            rgba(126, 67, 230, 0.9))
}



/* Responsive Design */

/* Para Tablets (768px ou menos) */
@media (max-width: 768px) {

    /* Geral */
    .content-limiter {
        padding: 0 1rem;
    }

    /* 🚀 Ajusta o banner para telas pequenas */
    .announcement-banner {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 8px 10px;
    }

    /* Texto menor no banner */
    .announcement-banner p {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    /* Botão ajustado para mobile */
    .banner-button {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-top: 5px;
    }

    /* Ícone de fechar (X) */
    .close-banner {
        font-size: 1.2rem;
        top: 65px;
        right: 8px;
    }

    /* Ajuste no header para mobile */
    .header {
        transition: padding-top 0.3s ease-in-out;
    }


    .hero-image img {
        max-width: 60%;
    }

    .hero-text, .hero-image img, .cta-button-large {
        animation-duration: 1.2s;
    }

    /* Títulos e Textos */
    h1, h2, h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Hero Section */
    .hero-content-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-image img {
        max-width: 80%;
        height: auto;
    }

    /* Botões */
    .cta-button-large {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        max-width: 300px;
        border-radius: 20px;
        margin: 0 auto;
        display: block;
    }

    .tokenomics {
        /* padding: 0rem 0; */
        text-align: center;
        min-height: 70vh !important;
    }

    .countdown-timer {
        font-size: 1.2rem !important;
        padding: 8px 12px;
    }

    .countdown-timer span {
        font-size: 1.4rem;
    }



    /* FAQ Items */

    .faq {

        padding: 0rem 0;
        min-height: 70vh;
    }

    .faq-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .faq-image img {
        max-width: 150px;
    }

    /* Rodapé */
    .footer-text {
        font-size: 0.8rem;
        text-align: center;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
    }

    .social-icons img {
        width: 40%;
        height: 40%;
    }
}

/* Para Smartphones (480px ou menos) */
@media (max-width: 480px) {

    .menu-toggle {
        display: block;
        color: var(--text-color-gray);
    }


    .nav-links {
        display: none;
        flex-direction: column;
        background: linear-gradient(135deg, #1A1B41, #292D63);
        position: fixed;
        top: 4.5rem;
        right: 0;
        padding: 1.5rem;
        border-radius: 0 0 8px 8px;
        z-index: 1000;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;

        text-align: center;
        opacity: 0.95;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0.5rem 0;
        font-size: 1rem;
        color: #ffffff;
        text-decoration: none;
        text-align: center;
        padding: 0.8rem 0;
        border-radius: 5px;
        transition: background-color 0.3s ease, transform 0.3s ease;

    }


    .logo img {
        height: 50px;
        width: auto;
    }

    .nav-links a:hover {
        background-color: #292D63;
        transform: scale(1.05);
    }


    .content-limiter {
        padding: 0 1rem;
    }


    .side-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        padding: 3px 0;
        height: 7%;
        width: 100%;
        background: linear-gradient(135deg, #1A1B41, #292D63);
        border-radius: 5px 5px 0 0;
        box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.3);
    }

    .side-container a[data-tooltip]::after {
        font-size: 0.7rem;

        display: none;
    }

    .icon-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        border-radius: 50%;
    }

    .icon-button:hover {
        transform: scale(1.1);
        box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3);
    }


    h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    h2 {
        font-size: 1.6rem !important;
        line-height: 1.4;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.4;
        text-align: center;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Hero Section */

    .hero {

        padding: 8.5rem 0 !important;
    }

    .hero-content-container {
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-text p {
        font-size: 1rem !important;
    }

    .hero-image img {
        max-width: 45% !important;
        height: auto;
        border-radius: 10px;
    }

    /* Botões */
    .cta-button-large {
        padding: 1rem 0.5rem !important;

        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem !important;
        line-height: 1.2rem !important;
        display: block;
        min-width: 90%;
        margin: 0 auto;
        overflow-wrap: break-word;
        word-wrap: break-word;
        box-sizing: border-box;
        border-radius: 12px;
    }


    .hero-image img {

        margin-top: 1.5rem;
        max-width: 300px !important;
    }


    .tokenomics {
        padding: 3.5rem 0;
        text-align: center;
    }

    .tokenomics h2 {

        margin-bottom: 2rem !important;
        margin-top: 0rem !important;
    }


    .tokenomics-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tokenomics-list li {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        width: 100%;
        height: 120px;
        box-sizing: border-box;
    }

    .tokenomics-list li p,
    .tokenomics-list li span {
        flex: 1;
        text-align: left;
        word-wrap: break-word;
        margin: 0;
    }

    .tokenomics-list li strong {
        display: block;
        text-align: right;
    }


    .details-text h3 {
        font-size: 1.6rem !important;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .details-text li {

        font-size: 1.1rem !important;
    }


    .timeline-item .timeline-icon {
        width: 30px;
        height: 30px;
    }

    .timeline-item .timeline-content {
        width: 44%;
        padding: 10px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }


    /* FAQ Items */

    .faq {

        padding: 3.5rem 0;
    }

    .faq h2 {

        margin-top: 3rem;
    }

    .faq-items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
        align-items: center;
    }

    .faq-item {
        padding: 1rem;
    }

    .timeline {
        max-width: 85vw;
    }


    .final-text {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 80%;
        text-align: center;
        margin: 0 auto;
        height: 100%;
    }

    .social-links {

        display: none;
    }

    .footer-bottom {

        margin-bottom: 3rem;
    }

    .to-top {

        display: none;
    }


    /* Rodapé */
    .footer-text {
        font-size: 0.7rem;
    }

    .footer-bottom {
        font-size: 0.7rem;
    }

    /* popup */
    .popup-content {
        max-width: 85%;
        padding: 15px;
        font-size: 0.9rem;
        /* margin-top: 5rem; */
    }

    .popup-content h2 {
        font-size: 1.1rem !important;
    }

    .popup-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .popup-content ul {
        padding-left: 15px;


    }

    .popup-content button {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem !important;
    }

}