/* Estilos para as seções de conteúdo */
.main-content {
    background: linear-gradient(to bottom, var(--ocean-blue), #004080);
    padding-top: 80px; /* Espaço para o header fixo */
}

.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.section h2 {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    position: relative;
}

.section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--sun-yellow);
    border-radius: 2px;
}

.section-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Seção ABOUT */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--sun-yellow);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 215, 0, 0.2));
    border-left: 4px solid var(--sun-yellow);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

/* Seção TOKENOMICS */
.tokenomics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tokenomics-chart {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.chart-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.tokenomics-info {
    flex: 1;
    min-width: 300px;
}

.tokenomics-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--tropical-green);
}

.tokenomics-card h4 {
    font-size: 1.3rem;
    color: var(--sun-yellow);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tokenomics-card h4 span {
    margin-right: 10px;
    font-size: 1.5rem;
}

.tokenomics-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.token-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    flex: 1;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-box h5 {
    font-size: 0.9rem;
    color: var(--sand-white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stat-box p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sun-yellow);
    margin: 0;
}

/* Seção JOIN US */
.join-us-container {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

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

.social-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    background-color: var(--tropical-green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-name {
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.buy-section {
    margin-top: 50px;
}

.big-buy-button {
    background: linear-gradient(to bottom, var(--sun-yellow), var(--sunset-orange));
    color: white;
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.big-buy-button:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.big-buy-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.big-buy-button:hover:before {
    left: 100%;
    opacity: 1;
}

/* Seção CHART */
.chart-section-container {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chart-embed {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
}

.chart-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.chart-option {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-option.active {
    background-color: var(--tropical-green);
}

.chart-option:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--sun-yellow);
}

.footer-copyright {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-penguin {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-penguin:hover {
    opacity: 1;
    transform: translateY(-10px);
}

/* Responsividade para seções */
@media (max-width: 768px) {
    .section h2 {
        font-size: 2.5rem;
    }
    
    .about-container, .tokenomics-container {
        flex-direction: column;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .chart-embed {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 15px;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .section-content {
        padding: 20px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .social-name {
        font-size: 1rem;
    }
    
    .big-buy-button {
        font-size: 1.5rem;
        padding: 12px 30px;
    }
    
    .chart-embed {
        height: 300px;
    }
}
