:root {
    --primary-color: #000000;
    --secondary-color: #D4AF37;
    --text-color: #ffffff;
    --accent-color: #B8860B;
    --dark-gold: #8B6914;
    --gradient-gold: linear-gradient(135deg, #D4AF37, #B8860B);
    --gradient-dark: linear-gradient(135deg, #000000, #1a1a1a);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonts */
@font-face {
    font-family: 'MemeBoom';
    src: url('Fonts/MemeBoom.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 200px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 35px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(64, 224, 255, 0.2));
}

/* Nav Mobile */
.nav-mobile {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    margin-left: auto;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-end;
}

.nav-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(64, 224, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #40E0FF;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
}

.navbar[data-section="about"] .nav-dot.active,
.navbar[data-section="roadmap"] .nav-dot.active {
    background: #FF69B4;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.navbar[data-section="team"] .nav-dot.active {
    background: #FF69B4;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.nav-arrow {
    margin-left: 6px;
    color: #40E0FF;
    font-size: 14px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(64, 224, 255, 0.1);
    transform: translateY(2px);
}

.navbar[data-section="about"] .nav-arrow,
.navbar[data-section="roadmap"] .nav-arrow {
    color: #FF69B4;
}

.navbar[data-section="about"] .nav-arrow:hover,
.navbar[data-section="roadmap"] .nav-arrow:hover {
    background: rgba(255, 105, 180, 0.1);
}

/* Animação da seta */
.nav-arrow i {
    transition: transform 0.3s ease;
}

.nav-arrow i.fa-chevron-up {
    transform: translateY(-1px);
}

.nav-arrow i.fa-chevron-down {
    transform: translateY(1px);
}

.nav-arrow:hover i.fa-chevron-up {
    transform: translateY(-2px);
}

.nav-arrow:hover i.fa-chevron-down {
    transform: translateY(2px);
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: transparent;
    border: 1px solid transparent;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(90deg, #40E0FF, #2B95C3);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
}

/* Removendo o antigo efeito de linha */
.nav-links a::after {
    display: none;
}

/* Ajustando as cores do efeito por seção */
.navbar[data-section="about"] .nav-links a::before,
.navbar[data-section="roadmap"] .nav-links a::before {
    background: linear-gradient(90deg, #FF69B4, #4B0082);
}

/* Docs Link Styling */
.docs-link {
    background: rgba(64, 224, 255, 0.1) !important;
    border: 1px solid rgba(64, 224, 255, 0.2) !important;
    color: #40E0FF !important;
}

.docs-link:hover {
    background: rgba(64, 224, 255, 0.2) !important;
    border-color: rgba(64, 224, 255, 0.4) !important;
    color: #40E0FF !important;
    box-shadow: 0 5px 15px rgba(64, 224, 255, 0.2) !important;
}

.docs-link i {
    margin-right: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Estrelas espalhadas por toda a seção - densidade maior */
        radial-gradient(2px 2px at 15% 25%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1.5px 1.5px at 85% 15%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 25% 75%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 75% 85%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2.5px 2.5px at 45% 35%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 65% 65%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(3px 3px at 35% 55%, rgba(64, 224, 255, 0.9), transparent),
        radial-gradient(1.5px 1.5px at 55% 25%, rgba(255, 105, 180, 0.8), transparent),
        radial-gradient(1px 1px at 10% 60%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1.5px 1.5px at 30% 10%, rgba(64, 224, 255, 0.7), transparent),
        radial-gradient(1px 1px at 70% 90%, rgba(255, 105, 180, 0.6), transparent),
        radial-gradient(1.5px 1.5px at 20% 45%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 80% 30%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 50% 80%, rgba(64, 224, 255, 0.6), transparent),
        /* Estrelas adicionais para densidade */
        radial-gradient(1px 1px at 5% 15%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 95% 25%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 15% 95%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 85% 85%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 40% 5%, rgba(64, 224, 255, 0.6), transparent),
        radial-gradient(1px 1px at 60% 95%, rgba(255, 105, 180, 0.6), transparent),
        radial-gradient(1px 1px at 25% 50%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1.5px 1.5px at 75% 50%, rgba(255, 255, 255, 0.7), transparent),
        /* Mais estrelas para cobertura completa */
        radial-gradient(1px 1px at 12% 35%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 88% 65%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1.5px 1.5px at 35% 15%, rgba(64, 224, 255, 0.5), transparent),
        radial-gradient(1px 1px at 65% 85%, rgba(255, 105, 180, 0.5), transparent),
        radial-gradient(1px 1px at 8% 75%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 92% 25%, rgba(255, 255, 255, 0.5), transparent),
        /* Estrelas extras sutis */
        radial-gradient(1.5px 1.5px at 18% 55%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 82% 45%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 38% 75%, rgba(64, 224, 255, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 62% 25%, rgba(255, 105, 180, 0.6), transparent),
        radial-gradient(1px 1px at 28% 85%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 72% 15%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 48% 65%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 52% 35%, rgba(255, 255, 255, 0.5), transparent),
        /* Background base escuro */
        #1a1f2e;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    animation: starTwinkle 8s ease-in-out infinite;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.hero h1 span {
    background: linear-gradient(135deg, #FF69B4 0%, #4B0082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin: 0.3rem 0;
    font-size: 3.5rem;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 90%;
    max-width: 250px;
    height: auto;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

@keyframes starFloat {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn.primary {
    background: linear-gradient(135deg, #FF69B4, #4B0082);
    color: #fff;
    border: none;
}

.btn.secondary {
    background: transparent;
    border: 2px solid #FF69B4;
    color: #FF69B4;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #FF69B4, #4B0082);
    opacity: 0.9;
}

.btn.secondary:hover {
    background: rgba(255, 105, 180, 0.1);
}

.btn.primary.disabled {
    background: rgba(212, 175, 55, 0.3);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}

.btn.primary.disabled:hover {
    transform: none;
    box-shadow: none;
    background: rgba(212, 175, 55, 0.3);
}

/* Sections */
section {
    background: #1a1f2e;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

section::before {
    display: none;
}

section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    text-shadow: none;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #40E0FF, #2B95C3);
    opacity: 0.7;
}

/* About Section */
.about {
    background: #1C1B26;
    position: relative;
}

.about::before {
    display: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.features {
    list-style: none;
    margin-top: 2rem;
}

.features li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.features i {
    color: #FF69B4;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Lista aninhada para projetos do Canaveral */
.nested-features {
    list-style: none;
    margin: 1rem 0 0 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255, 105, 180, 0.3);
}

.nested-features li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.nested-features li::before {
    content: "→";
    position: absolute;
    left: -1.5rem;
    color: #40E0FF;
    font-weight: bold;
}

.nested-features i {
    color: #40E0FF;
    margin-right: 0.8rem;
    font-size: 1rem;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 600px;
    margin: 0 auto;
}

.about h2 {
    color: #fff;
    text-shadow: none;
}

.about h2::after {
    background: linear-gradient(90deg, #FF69B4, #4B0082);
    opacity: 0.7;
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

/* Estrutura da plataforma principal */
.main-platform {
    background: rgba(26, 31, 46, 0.6);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.main-platform::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 224, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.platform-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.platform-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.4));
}

.platform-info h3 {
    color: #FF69B4;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.platform-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FF69B4, #4B0082);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.launched-projects h4 {
    color: #40E0FF;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.nested-grid {
    padding: 2rem 0;
}

.nested-card {
    border: 1px solid rgba(64, 224, 255, 0.2) !important;
    background: rgba(25, 35, 50, 0.6) !important;
    transform: scale(0.9);
    position: relative;
}

.nested-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(64, 224, 255, 0.3), rgba(255, 105, 180, 0.3));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nested-card:hover::before {
    opacity: 1;
}

.nested-card h3 {
    color: #40E0FF !important;
}

.independent-projects {
    margin-top: 3rem;
}

.independent-projects h4 {
    color: #FF69B4;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.tokenomics-card {
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(25, 35, 50, 0.8);
    border-radius: 50%;
    aspect-ratio: 1;
    border: 1px solid rgba(64, 224, 255, 0.1);
    overflow: hidden;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.tokenomics-card h3 {
    position: absolute;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
    width: 90%;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 0 1rem;
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 1;
}

.card-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.tokenomics-card:hover {
    border-color: rgba(64, 224, 255, 0.2);
    background: rgba(25, 35, 50, 0.9);
}

.tokenomics-card:hover::before {
    opacity: 1;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.95));
}

.tokenomics-card:hover .card-image {
    filter: blur(4px);
    opacity: 0.4;
}

.tokenomics-card .description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 85%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tokenomics-card .learn-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(64, 224, 255, 0.1);
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 20px;
    color: #40E0FF;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.tokenomics-card .learn-more:hover {
    background: rgba(64, 224, 255, 0.2);
    transform: translateY(-2px);
}

.tokenomics-card:hover h3 {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.tokenomics-card:hover .description {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* Estilos específicos para cada logo */
.boom-logo img {
    width: 75%;
    height: 75%;
}

.karamelo-image img {
    width: 85%;
    height: 85%;
}

.cryptofan-image img {
    width: 85%;
    height: 85%;
}

.goldenx-image img,
.blockchain-school-image img {
    width: 100%;
    height: auto;
    max-width: 85%;
}

/* Roadmap Section */
.roadmap {
    background: #1C1B26;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.roadmap-item {
    background: rgba(255, 105, 180, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 105, 180, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.roadmap-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 105, 180, 0.1);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.03);
}

.roadmap-item h3 {
    color: #FF69B4;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.roadmap-item ul {
    list-style: none;
}

.roadmap-item li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.roadmap-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FF69B4;
    font-weight: bold;
}

/* Community Section */
.community {
    text-align: center;
    background: #1a1f2e;
    padding: 6rem 0;
}

.community h2::after {
    background: linear-gradient(90deg, #40E0FF, #2B95C3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.social-link {
    color: #40E0FF;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(64, 224, 255, 0.02);
    border: 1px solid rgba(64, 224, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(64, 224, 255, 0.1);
    box-shadow: 0 5px 15px rgba(64, 224, 255, 0.03);
    color: #40E0FF;
}

.fa-x-twitter:before {
    content: "\f099";
}

/* Team Section */
.team {
    background: #1C1B26;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 1;
}

.team .container {
    position: relative;
    z-index: 2;
}

.team h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: none;
    position: relative;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FF69B4, #4B0082);
    border-radius: 2px;
    opacity: 0.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-member {
    background: rgba(255, 105, 180, 0.03);
    border: 1px solid rgba(255, 105, 180, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(138, 43, 226, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 105, 180, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 105, 180, 0.1);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 105, 180, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.member-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #FF69B4, #8A2BE2, #4B0082);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.team-member:hover .member-image::before {
    opacity: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.member-role {
    font-size: 1rem;
    color: #FF69B4;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-twitter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    background: rgba(255, 105, 180, 0.05);
}

.member-twitter:hover {
    color: #FF69B4;
    border-color: rgba(255, 105, 180, 0.5);
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-2px);
}

.member-twitter i {
    font-size: 1rem;
}

/* Footer */
footer {
    background: #1a1f2e;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(64, 224, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #1a1f2e);
    pointer-events: none;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(64, 224, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(43, 149, 195, 0.03) 0%, transparent 40%);
    opacity: 0.8;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .tokenomics-card {
        width: 280px;
        height: 280px;
    }

    .platform-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .platform-logo img {
        width: 100px;
        height: 100px;
    }

    .platform-info h3 {
        font-size: 1.8rem;
    }

    .nested-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    /* Team responsive for tablets */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    /* Team responsive for medium tablets */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .team-member {
        padding: 1.8rem;
    }

    .member-image {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .logo {
        max-width: 150px;
        margin-left: 0;
    }

    .nav-mobile {
        display: flex;
        margin-right: 0;
        padding: 0.5rem;
        gap: 0.75rem;
        align-items: center;
        position: relative;
    }

    .nav-dots {
        display: flex;
        flex-direction: column;
        gap: 3px;
        align-items: flex-end;
        margin-right: 4px;
    }

    .nav-arrow {
        margin-left: 0;
        width: 24px;
        height: 24px;
    }

    .navbar {
        background: rgba(26, 31, 46, 0.98);
        border-bottom: 1px solid rgba(64, 224, 255, 0.05);
        height: 60px;
        display: flex;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 70vh;
        padding-top: 60px;
        margin-top: 0;
        border-top: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 0;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        max-width: 500px;
        padding-top: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 span {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .btn-group {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        margin: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .btn {
        display: block;
        margin: 1rem 0;
        text-align: center;
    }

    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .tokenomics-card {
        width: 260px;
        height: 260px;
    }

    .main-platform {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .platform-header {
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .platform-logo img {
        width: 80px;
        height: 80px;
    }

    .platform-info h3 {
        font-size: 1.5rem;
    }

    .platform-info p {
        font-size: 1rem;
    }

    .nested-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1rem 0;
    }

    .nested-card {
        transform: scale(1);
        width: 240px;
        height: 240px;
    }

    .launched-projects h4,
    .independent-projects h4 {
        font-size: 1.3rem;
    }

    /* Popup responsivo */
    .popup-content {
        width: 95%;
        max-height: 90vh;
    }

    .popup-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .popup-header img {
        width: 60px;
        height: 60px;
    }

    .popup-title h3 {
        font-size: 1.5rem;
    }

    .popup-body {
        padding: 1.5rem;
    }

    .popup-body p {
        font-size: 1rem;
    }

    .popup-features h4 {
        font-size: 1.2rem;
    }

    .popup-footer {
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
    }

    .popup-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .tokenomics-card h3 {
        font-size: 1.2rem;
        width: 80%;
        top: 30%;
    }

    .tokenomics-card .description {
        font-size: 0.8rem;
        width: 80%;
        gap: 0.3rem;
    }

    .tokenomics-card .learn-more {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    /* Team responsive for mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .team-member {
        padding: 1.5rem;
        max-width: 350px;
        margin: 0 auto;
    }

    .member-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .tokenomics-card {
        width: 240px;
        height: 240px;
    }

    .tokenomics-card h3 {
        font-size: 1.1rem;
        width: 75%;
        top: 25%;
    }

    .tokenomics-card .description {
        font-size: 0.75rem;
        width: 75%;
        gap: 0.2rem;
    }

    .tokenomics-card .learn-more {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
    }

    /* Team responsive for small screens */
    .team {
        padding: 3rem 0;
    }

    .team h2 {
        font-size: 2rem;
    }

    .team-grid {
        gap: 1.5rem;
    }

    .member-image {
        width: 90px;
        height: 90px;
    }

    .member-info h3 {
        font-size: 1.3rem;
    }

    .member-twitter {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Remover animações de scroll */
.fade-in {
    opacity: 1;
    transform: none;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Ajustar pesos de fonte específicos */
.nav-links a {
    font-weight: 500;
}

.btn {
    font-weight: 600;
}

.tokenomics-card h3 {
    font-weight: 600;
}

.tokenomics-card p {
    font-weight: 700;
}

.hero h1 {
    font-weight: 700;
}

.tokenomics-card .description {
    font-weight: 400;
}

@media (min-width: 769px) {
    .nav-mobile {
        display: none;
    }
}

.about::before, .roadmap::before, .community::before, .team::before {
    display: none;
}

/* Efeito Espacial Melhorado */
.hero-composition {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    overflow: visible;
}

/* Fundo de estrelas removido - agora está na seção inteira */

/* Camada de profundidade espacial */
.space-depth {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 200px 100px at 20% 30%, rgba(64, 224, 255, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 150px 80px at 80% 70%, rgba(255, 105, 180, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 120px 60px at 60% 20%, rgba(138, 43, 226, 0.02) 0%, transparent 70%);
    animation: nebulaFloat 15s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-composition img {
    position: absolute;
    object-fit: contain;
    z-index: 100;
    transition: all 0.3s ease;
}

/* Garantir que elementos floating sejam visíveis */
.floating {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hover removido para não interferir nas órbitas */

/* Sistema Solar - Canaveral como Sol Central */
.canaveral {
    width: 100px !important;
    height: 100px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 110;
    animation: solarPulse 4s ease-in-out infinite;
    filter:
        drop-shadow(0 0 25px rgba(255, 69, 0, 0.9))
        drop-shadow(0 0 50px rgba(255, 140, 0, 0.6))
        drop-shadow(0 0 75px rgba(255, 215, 0, 0.3));
}

/* Planetas orbitando ao redor do Sol */
.boom-coin {
    width: 80px !important;
    height: 80px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 108;
    animation: orbit1 12s linear infinite;
    animation-delay: 0s;
    filter:
        drop-shadow(0 0 15px rgba(255, 215, 0, 0.7))
        drop-shadow(0 0 30px rgba(255, 165, 0, 0.4));
}

.karamelo {
    width: 65px !important;
    height: 65px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 107;
    animation: orbit2 18s linear infinite;
    animation-delay: -4.5s;
    filter:
        drop-shadow(0 0 12px rgba(255, 105, 180, 0.6))
        drop-shadow(0 0 20px rgba(255, 20, 147, 0.3));
}

.cryptofan {
    width: 60px !important;
    height: 60px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 106;
    animation: orbit3 24s linear infinite;
    animation-delay: -12s;
    filter:
        drop-shadow(0 0 12px rgba(64, 224, 255, 0.6))
        drop-shadow(0 0 20px rgba(0, 191, 255, 0.3));
}

.school {
    width: 75px !important;
    height: 30px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 105;
    animation: orbit4 30s linear infinite;
    animation-delay: -15s;
    filter:
        drop-shadow(0 0 12px rgba(138, 43, 226, 0.6))
        drop-shadow(0 0 20px rgba(75, 0, 130, 0.3));
}

.chico {
    width: 55px !important;
    height: 55px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 104;
    animation: orbit5 36s linear infinite;
    animation-delay: -18s;
    filter:
        drop-shadow(0 0 12px rgba(50, 205, 50, 0.6))
        drop-shadow(0 0 20px rgba(34, 139, 34, 0.3));
}

/* Partículas espaciais melhoradas */
.particles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(3px 3px at 20% 30%, rgba(255, 105, 180, 0.8) 30%, transparent 70%),
        radial-gradient(2px 2px at 40% 70%, rgba(64, 224, 255, 0.9) 30%, transparent 70%),
        radial-gradient(4px 4px at 60% 20%, rgba(255, 215, 0, 0.7) 30%, transparent 70%),
        radial-gradient(2px 2px at 80% 60%, rgba(138, 43, 226, 0.8) 30%, transparent 70%),
        radial-gradient(3px 3px at 10% 80%, rgba(255, 105, 180, 0.6) 30%, transparent 70%),
        radial-gradient(2px 2px at 90% 40%, rgba(64, 224, 255, 0.7) 30%, transparent 70%);
    animation: particleFloat 12s linear infinite;
    opacity: 0.4;
    z-index: 2;
}

/* Órbitas visuais do sistema solar */
.hero-composition::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background:
        /* Órbita 1 - BOOM */
        radial-gradient(circle at center, transparent 119px, rgba(255, 215, 0, 0.15) 120px, rgba(255, 215, 0, 0.15) 121px, transparent 122px),
        /* Órbita 2 - Karamelo */
        radial-gradient(circle at center, transparent 159px, rgba(255, 105, 180, 0.12) 160px, rgba(255, 105, 180, 0.12) 161px, transparent 162px),
        /* Órbita 3 - CryptoFan */
        radial-gradient(circle at center, transparent 199px, rgba(64, 224, 255, 0.12) 200px, rgba(64, 224, 255, 0.12) 201px, transparent 202px),
        /* Órbita 4 - School */
        radial-gradient(circle at center, transparent 239px, rgba(138, 43, 226, 0.12) 240px, rgba(138, 43, 226, 0.12) 241px, transparent 242px),
        /* Órbita 5 - Chico */
        radial-gradient(circle at center, transparent 279px, rgba(50, 205, 50, 0.12) 280px, rgba(50, 205, 50, 0.12) 281px, transparent 282px);
    animation: orbitGlow 10s ease-in-out infinite;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

/* Efeito de campo de energia ao redor do Sol Central */
.canaveral::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid transparent;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg, transparent, rgba(255, 69, 0, 0.3), transparent, rgba(255, 140, 0, 0.2), transparent);
    animation: rotate 6s linear infinite;
    z-index: -1;
}

.canaveral::after {
    content: '';
    position: absolute;
    inset: -35px;
    border: 1px solid transparent;
    border-radius: 50%;
    background:
        conic-gradient(from 180deg, transparent, rgba(255, 215, 0, 0.2), transparent, rgba(255, 69, 0, 0.1), transparent);
    animation: rotate 10s linear infinite reverse;
    z-index: -1;
}

/* Animações Espaciais Melhoradas */
@keyframes spaceFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    20% {
        transform: translate(-8px, -12px) rotate(2deg);
    }
    40% {
        transform: translate(6px, -18px) rotate(-3deg);
    }
    60% {
        transform: translate(-4px, -8px) rotate(1deg);
    }
    80% {
        transform: translate(10px, -15px) rotate(-1deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    75% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

@keyframes nebulaFloat {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateX(-20px) translateY(-10px) rotate(1deg);
        opacity: 0.5;
    }
    66% {
        transform: translateX(15px) translateY(-5px) rotate(-1deg);
        opacity: 0.4;
    }
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
}

@keyframes particleFloat {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.4;
    }
    25% {
        background-position: 25% 25%, -25% 25%, 25% -25%, -25% -25%, 25% 25%, -25% 25%;
        opacity: 0.6;
    }
    50% {
        background-position: 50% 50%, -50% 50%, 50% -50%, -50% -50%, 50% 50%, -50% 50%;
        opacity: 0.3;
    }
    75% {
        background-position: 75% 75%, -75% 75%, 75% -75%, -75% -75%, 75% 75%, -75% 75%;
        opacity: 0.7;
    }
    100% {
        background-position: 100% 100%, -100% 100%, 100% -100%, -100% -100%, 100% 100%, -100% 100%;
        opacity: 0.4;
    }
}

/* Animações de órbita para o sistema solar */
@keyframes orbit1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(160px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(160px) rotate(-360deg);
    }
}

@keyframes orbit3 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(200px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(200px) rotate(-360deg);
    }
}

@keyframes orbit4 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(240px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(240px) rotate(-360deg);
    }
}

@keyframes orbit5 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(280px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(280px) rotate(-360deg);
    }
}

/* Animação do Sol Central */
@keyframes solarPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        filter:
            drop-shadow(0 0 25px rgba(255, 69, 0, 0.9))
            drop-shadow(0 0 50px rgba(255, 140, 0, 0.6))
            drop-shadow(0 0 75px rgba(255, 215, 0, 0.3));
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        filter:
            drop-shadow(0 0 35px rgba(255, 69, 0, 1))
            drop-shadow(0 0 70px rgba(255, 140, 0, 0.8))
            drop-shadow(0 0 105px rgba(255, 215, 0, 0.5));
    }
}

/* Animações de órbita para mobile */
@keyframes orbit1Mobile {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(80px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(80px) rotate(-360deg);
    }
}

@keyframes orbit2Mobile {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

@keyframes orbit3Mobile {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes orbit4Mobile {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(140px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(140px) rotate(-360deg);
    }
}

@keyframes orbit5Mobile {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(160px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(160px) rotate(-360deg);
    }
}

/* Efeito de pulsação para o logo principal */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        filter:
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.4))
            drop-shadow(0 0 40px rgba(255, 165, 0, 0.2));
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        filter:
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.6))
            drop-shadow(0 0 60px rgba(255, 165, 0, 0.4));
    }
}

/* Rotação para campos de energia */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Brilho das órbitas */

/* Project Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #FF69B4;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.popup-close:hover {
    color: #40E0FF;
    transform: scale(1.1);
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.popup-header img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.4));
}

.popup-title h3 {
    color: #FF69B4;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.popup-title p {
    color: #40E0FF;
    font-size: 1.1rem;
    font-weight: 600;
}

.popup-body {
    padding: 2rem;
}

.popup-body p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.popup-features h4 {
    color: #40E0FF;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.popup-features ul {
    list-style: none;
    padding: 0;
}

.popup-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.popup-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FF69B4;
    font-weight: bold;
}

.popup-footer {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.popup-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-btn:not(.secondary) {
    background: linear-gradient(135deg, #FF69B4, #4B0082);
    color: white;
}

.popup-btn.secondary {
    background: transparent;
    border: 2px solid #40E0FF;
    color: #40E0FF;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.popup-btn.secondary:hover {
    background: rgba(64, 224, 255, 0.1);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.2);
}

.popup-btn.disabled {
    background: rgba(128, 128, 128, 0.5) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.5 !important;
}

.popup-btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}
@keyframes orbitGlow {
    0%, 100% {
        opacity: 0.4;
    }
    25% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.8;
    }
}

/* Trilhas de luz em movimento */
@keyframes lightTrails {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    25% {
        background-position: 25% 25%, -25% 25%, 10% 10%, -10% 10%, 5% 5%;
    }
    50% {
        background-position: 50% 50%, -50% 50%, 20% 20%, -20% 20%, 10% 10%;
    }
    75% {
        background-position: 75% 75%, -75% 75%, 30% 30%, -30% 30%, 15% 15%;
    }
    100% {
        background-position: 100% 100%, -100% 100%, 40% 40%, -40% 40%, 20% 20%;
    }
}

/* Ajuste responsivo para efeito espacial */
@media (max-width: 768px) {
    .hero-composition {
        height: 300px;
        background:
            radial-gradient(ellipse 400px 200px at center, rgba(26, 31, 46, 0.7) 0%, rgba(26, 31, 46, 0.3) 40%, transparent 70%),
            radial-gradient(ellipse 300px 150px at center, rgba(64, 224, 255, 0.02) 0%, transparent 60%),
            radial-gradient(ellipse 200px 100px at center, rgba(255, 105, 180, 0.01) 0%, transparent 50%);
        border-radius: 40px;
        box-shadow:
            inset 0 0 60px rgba(0, 0, 0, 0.6),
            inset 0 0 120px rgba(26, 31, 46, 0.8),
            0 0 40px rgba(26, 31, 46, 0.4);
        -webkit-mask:
            radial-gradient(ellipse 90% 80% at center, black 15%, rgba(0,0,0,0.8) 35%, rgba(0,0,0,0.4) 65%, rgba(0,0,0,0.1) 85%, transparent 100%);
        mask:
            radial-gradient(ellipse 90% 80% at center, black 15%, rgba(0,0,0,0.8) 35%, rgba(0,0,0,0.4) 65%, rgba(0,0,0,0.1) 85%, transparent 100%);
    }

    /* Sistema Solar Mobile - Órbitas menores */
    .canaveral {
        width: 60px !important;
        height: 60px !important;
        animation: solarPulse 4s ease-in-out infinite;
    }

    .boom-coin {
        width: 50px !important;
        height: 50px !important;
        animation: orbit1Mobile 10s linear infinite;
        animation-delay: 0s;
    }

    .karamelo {
        width: 42px !important;
        height: 42px !important;
        animation: orbit2Mobile 14s linear infinite;
        animation-delay: -3.5s;
    }

    .cryptofan {
        width: 38px !important;
        height: 38px !important;
        animation: orbit3Mobile 18s linear infinite;
        animation-delay: -9s;
    }

    .school {
        width: 45px !important;
        height: 18px !important;
        animation: orbit4Mobile 22s linear infinite;
        animation-delay: -11s;
    }

    .chico {
        width: 35px !important;
        height: 35px !important;
        animation: orbit5Mobile 26s linear infinite;
        animation-delay: -13s;
    }

    /* Órbitas menores para mobile */
    .hero-composition::after {
        width: 400px;
        height: 400px;
        background:
            radial-gradient(circle at center, transparent 79px, rgba(255, 215, 0, 0.15) 80px, rgba(255, 215, 0, 0.15) 81px, transparent 82px),
            radial-gradient(circle at center, transparent 99px, rgba(255, 105, 180, 0.12) 100px, rgba(255, 105, 180, 0.12) 101px, transparent 102px),
            radial-gradient(circle at center, transparent 119px, rgba(64, 224, 255, 0.12) 120px, rgba(64, 224, 255, 0.12) 121px, transparent 122px),
            radial-gradient(circle at center, transparent 139px, rgba(138, 43, 226, 0.12) 140px, rgba(138, 43, 226, 0.12) 141px, transparent 142px),
            radial-gradient(circle at center, transparent 159px, rgba(50, 205, 50, 0.12) 160px, rgba(50, 205, 50, 0.12) 161px, transparent 162px);
    }

    /* Reduzir intensidade das partículas em mobile */
    .particles {
        opacity: 0.15;
    }

    /* Ajustar intensidade das estrelas em mobile */
    .hero::before {
        opacity: 0.6;
    }

    /* Simplificar linhas de constelação em mobile */
    .hero-composition::after {
        opacity: 0.2;
    }

    /* Campos de energia removidos do boom-coin */
}

/* Hero Section */
.navbar[data-section="hero"] {
    background: rgba(26, 31, 46, 0.95);
    border-bottom: 1px solid rgba(64, 224, 255, 0.1);
    box-shadow: 0 4px 30px rgba(64, 224, 255, 0.05);
}

.navbar[data-section="hero"] .nav-links a:hover {
    color: #40E0FF;
    background: rgba(64, 224, 255, 0.05);
    border-color: rgba(64, 224, 255, 0.1);
}

.navbar[data-section="hero"] .nav-links a::after {
    background: linear-gradient(90deg, #40E0FF, #2B95C3);
}

/* About Section */
.navbar[data-section="about"] {
    background: rgba(28, 27, 38, 0.95);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    box-shadow: 0 4px 30px rgba(255, 105, 180, 0.05);
}

.navbar[data-section="about"] .nav-links a:hover {
    color: #FF69B4;
    background: rgba(255, 105, 180, 0.05);
    border-color: rgba(255, 105, 180, 0.1);
}

.navbar[data-section="about"] .nav-links a::after {
    background: linear-gradient(90deg, #FF69B4, #4B0082);
}

/* Projects Section */
.navbar[data-section="projects"] {
    background: rgba(26, 31, 46, 0.95);
    border-bottom: 1px solid rgba(64, 224, 255, 0.1);
    box-shadow: 0 4px 30px rgba(64, 224, 255, 0.05);
}

.navbar[data-section="projects"] .nav-links a {
    position: relative;
    transition: all 0.3s ease;
}

.navbar[data-section="projects"] .nav-links a:hover,
.navbar[data-section="projects"] .nav-links a.active {
    color: #40E0FF;
    background: rgba(64, 224, 255, 0.05);
    border-color: rgba(64, 224, 255, 0.1);
}

.navbar[data-section="projects"] .nav-links a::before {
    background: linear-gradient(90deg, #40E0FF, #2B95C3);
}

/* Link ativo */
.nav-links a.active {
    font-weight: 600;
    transform: translateY(-2px);
}

.navbar[data-section="hero"] .nav-links a.active,
.navbar[data-section="projects"] .nav-links a.active,
.navbar[data-section="community"] .nav-links a.active,
.navbar[data-section="team"] .nav-links a.active {
    color: #40E0FF;
    border-color: rgba(64, 224, 255, 0.2);
}

.navbar[data-section="about"] .nav-links a.active,
.navbar[data-section="roadmap"] .nav-links a.active {
    color: #FF69B4;
    border-color: rgba(255, 105, 180, 0.2);
}

/* Roadmap Section */
.navbar[data-section="roadmap"] {
    background: rgba(28, 27, 38, 0.95);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    box-shadow: 0 4px 30px rgba(255, 105, 180, 0.05);
}

.navbar[data-section="roadmap"] .nav-links a:hover {
    color: #FF69B4;
    background: rgba(255, 105, 180, 0.05);
    border-color: rgba(255, 105, 180, 0.1);
}

.navbar[data-section="roadmap"] .nav-links a::after {
    background: linear-gradient(90deg, #FF69B4, #4B0082);
}

/* Community Section */
.navbar[data-section="community"] {
    background: rgba(26, 31, 46, 0.95);
    border-bottom: 1px solid rgba(64, 224, 255, 0.1);
    box-shadow: 0 4px 30px rgba(64, 224, 255, 0.05);
}

.navbar[data-section="community"] .nav-links a:hover {
    color: #40E0FF;
    background: rgba(64, 224, 255, 0.05);
    border-color: rgba(64, 224, 255, 0.1);
}

.navbar[data-section="community"] .nav-links a::after {
    background: linear-gradient(90deg, #40E0FF, #2B95C3);
}

/* Team Section */
.navbar[data-section="team"] {
    background: rgba(26, 31, 46, 0.95);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    box-shadow: 0 4px 30px rgba(255, 105, 180, 0.05);
}

.navbar[data-section="team"] .nav-links a:hover {
    color: #FF69B4;
    background: rgba(255, 105, 180, 0.05);
    border-color: rgba(255, 105, 180, 0.1);
}

.navbar[data-section="team"] .nav-links a::after {
    background: linear-gradient(90deg, #FF69B4, #40E0FF);
}