/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Smooth Scroll */
html {
    scroll-behavior: auto;
}

:root {
    --primary-color: #ff5c00;
    --secondary-color: #1a1a1a;
    --accent-color: #ff8a3d;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    position: relative;
    padding-top: 80px;
}

section {
    scroll-margin-top: 100px; /* Adiciona margem para compensar a navbar */
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.98);
    padding: 1rem 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition);
    position: relative;
    opacity: 0.9;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border-radius: 8px;
}

.btn-outline-light {
    border-width: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-outline-light:hover::before {
    left: 0;
}

.btn-outline-light:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #ff7b33);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff7b33, var(--primary-color));
    transition: var(--transition);
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 92, 0, 0.3);
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--light-color);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.video-background,
.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.slide-content {
    padding-right: 2rem;
}

.slide-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.slide-content .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-color);
    opacity: 0.9;
}

.rewards-stats {
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-color);
    opacity: 0.9;
}

/* Swiper Navigation */
.swiper-pagination,
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

/* Tokenomics Section Upgrade */
.tokenomics {
    padding: 100px 0;
    background: #fff;
}

.tokenomics-content {
    padding-right: 3rem;
}

.tokenomics-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.tokenomics-content .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.tokenomics-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
}

.contract-box {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.contract-address {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--secondary-color);
    word-break: break-all;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.1);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Info Box Labels */
.info-label {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.info-label::after {
    content: '';
    display: inline-block;
    width: 15px;
}

.info-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.tokenomics-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

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

/* FAQ Section Upgrade */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.accordion-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
    background: white;
    transition: all 0.4s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: linear-gradient(45deg, rgba(255, 92, 0, 0.03), rgba(255, 92, 0, 0.08));
}

.accordion-button::after {
    background-size: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg) scale(1.2);
}

.accordion-collapse {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.accordion-body {
    padding: 25px 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--secondary-color);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
}

/* Footer Upgrade */
.footer {
    background: var(--gradient-dark);
    padding: 80px 0 30px;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--primary-color),
        transparent
    );
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social {
    margin-top: 30px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
}

/* Scroll Bar Customization */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--secondary-color), var(--primary-color));
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        background-color: rgba(26, 26, 26, 0.98);
    }

    .slide-content {
        text-align: center;
        padding: 0 1rem;
    }

    .slide-content h1 {
        font-size: 3.2rem;
    }

    .slide-content .lead {
        font-size: 1.2rem;
    }

    .rewards-stats {
        justify-content: center;
    }

    .stat-item {
        text-align: center;
    }

    .chart-legend {
        grid-template-columns: 1fr;
    }
    
    .token-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .floating-image {
        max-width: 60%;
        margin: 2rem 0;
    }

    .tokenomics-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .tokenomics-box {
        padding: 1.5rem;
    }

    .info-box {
        padding: 1.2rem;
    }

    .info-value {
        font-size: 1.5rem;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .tokenomics-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content .lead {
        font-size: 1.1rem;
    }
    
    .rewards-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .video-background {
        display: none;
    }

    .image-background {
        display: block;
        background-image: url('logo.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .tokenomics-content h2 {
        font-size: 2.2rem;
    }

    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content .lead {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Seção de Tecnologia */
.technology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
}

.tech-content {
    padding-right: 50px;
}

.tech-features {
    margin-top: 40px;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon img {
    width: 100%;
    height: auto;
}

.tech-info h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Seção de Parceiros */
.partners-section {
    padding: 100px 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.partner-card h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Seção da Equipe */
.team-section {
    display: none;
}

/* Responsividade para novas seções */
@media (max-width: 991px) {
    .tech-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .tech-item {
        padding: 15px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
    }

    .partner-card {
        padding: 20px;
    }

    .team-card {
        max-width: 300px;
        margin: 0 auto 30px;
    }
}

.solana-gradient {
    background: linear-gradient(45deg, #9945FF, #14F195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.solana-text {
    background: linear-gradient(45deg, #9945FF, #14F195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    cursor: help;
    transition: all 0.3s ease;
    display: inline-block;
}

.solana-text:hover {
    transform: translateY(-2px);
}

.solana-text::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-wrap;
    width: max-content;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.solana-text:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 15px);
    transform: translateX(-50%) scale(1);
}

.solana-text::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.95);
    bottom: calc(100% + 7px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: none;
}

.solana-text:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 7px);
}

.copy-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    white-space: nowrap;
}

.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
    animation: fadeInOut 2s ease forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, 10px); }
    20% { opacity: 1; transform: translate(-50%, 0); }
    80% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -10px); }
}

/* Auth Section */
.auth-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.auth-section.active {
    display: flex;
}

.auth-box {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
    box-shadow: var(--glass-shadow);
    border: var(--glass-border);
}

.close-auth {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-auth:hover {
    color: var(--primary-color);
}

.auth-header {
    text-align: center;
    margin-bottom: 15px;
}

.auth-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 14px;
    margin-bottom: 10px;
}

.auth-tabs {
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    opacity: 0.7;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.tab-btn.active {
    color: var(--primary-color);
    opacity: 1;
}

.tab-btn.active::after {
    width: 50%;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    margin-bottom: 4px;
    display: block;
    font-size: 14px;
}

.form-control {
    padding: 8px 12px;
    font-size: 14px;
}

.form-text {
    font-size: 12px;
    margin-top: 4px;
}

.form-check {
    margin: 12px 0;
}

.password-error {
    font-size: 12px;
    margin-top: 4px;
}

.btn-primary {
    margin-top: 15px;
    padding: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .auth-box {
        padding: 2rem;
        margin: 1rem;
    }

    .auth-header h2 {
        font-size: 1.8rem;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
    }
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
}

.user-email {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.btn-logout {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: var(--primary-color);
    color: white;
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-timeline {
    position: relative;
    padding: 60px 0;
    margin-top: 50px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent,
        var(--primary-color),
        transparent
    );
    box-shadow: 0 0 15px var(--primary-color);
}

.roadmap-item {
    position: relative;
    margin-bottom: 80px;
    width: 50%;
    padding-right: 50px;
    opacity: 0.7;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.roadmap-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 50px;
    transform: translateX(30px);
}

.roadmap-item.active {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-item::before {
    content: '';
    position: absolute;
    right: -9px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    animation: glow 2s ease-in-out infinite;
}

.roadmap-item:nth-child(even)::before {
    right: auto;
    left: -11px;
}

.roadmap-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(255, 92, 0, 0.2);
}

.roadmap-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.roadmap-content .phase {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-content h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

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

.roadmap-content ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--secondary-color);
    opacity: 0.9;
}

.roadmap-content ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
}

.roadmap-content ul li i.fa-check {
    color: #28a745;
}

.roadmap-content ul li i.fa-spinner {
    color: #ffc107;
}

@media (max-width: 991px) {
    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-bottom: 50px;
    }

    .roadmap-item:nth-child(even) {
        margin-left: 0;
        padding-left: 60px;
    }

    .roadmap-item::before {
        left: 11px;
        right: auto;
    }

    .roadmap-item:nth-child(even)::before {
        left: 11px;
    }
}

@media (max-width: 576px) {
    .roadmap-content {
        padding: 20px;
    }

    .roadmap-content h3 {
        font-size: 1.2rem;
    }
}

/* Efeitos de Glassmorphism e Gradientes */
:root {
    --primary-color: #ff5c00;
    --secondary-color: #1a1a1a;
    --accent-color: #ff8a3d;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

/* Efeitos de Hover Modernos */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

/* Navbar Moderna */
.navbar {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Cards com Efeito de Vidro */
.tokenomics-box, .roadmap-content, .tech-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tokenomics-box:hover, .roadmap-content:hover, .tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Animações de Entrada */
.section-header {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Efeitos de Texto */
h1, h2, h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

/* Efeitos de Partículas no Hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 92, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Efeitos de Scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Melhorias no Roadmap */
.roadmap-timeline::before {
    background: linear-gradient(to bottom, 
        transparent,
        var(--primary-color),
        transparent
    );
    box-shadow: 0 0 15px var(--primary-color);
}

.roadmap-item::before {
    box-shadow: 0 0 15px var(--primary-color);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px var(--primary-color); }
    50% { box-shadow: 0 0 25px var(--primary-color); }
}

/* Efeitos nos Botões de Ação */
.cta-buttons .btn {
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0)
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.cta-buttons .btn:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

/* Footer Moderno */
.footer {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--primary-color),
        transparent
    );
}

.footer-social a {
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}

/* Efeitos de Loading */
.loading-effect {
    position: relative;
    overflow: hidden;
}

.loading-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to { left: 100%; }
}

/* Responsividade Aprimorada */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
}

.navbar-collapse {
    transition: all 0.3s ease;
}

.navbar-collapse.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.navbar-collapse.show {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll Links */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #ff5c00 0%, #ff8f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.feature-highlights {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.highlight-item {
    text-align: center;
    padding: 15px;
}

.highlight-item i {
    font-size: 24px;
    color: #ff5c00;
    margin-bottom: 10px;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 92, 0, 0.2) 0%, transparent 70%);
    top: 0;
    left: 0;
    z-index: -1;
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Rewards Section */
.rewards-section {
    padding: 100px 0;
    background: white;
}

.rewards-formula {
    text-align: center;
    margin: 30px 0;
}

.formula-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5c00;
}

.formula-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff5c00, transparent);
    margin: 15px auto;
    width: 50%;
}

.rewards-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: rgba(255, 92, 0, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 24px;
    color: #ff5c00;
    margin-bottom: 10px;
}

.rewards-highlight {
    text-align: center;
    margin-top: 40px;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff5c00;
}

.highlight-border {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff5c00, transparent);
    margin: 15px auto;
    width: 30%;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Strategy Section */
.strategy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
}

.strategy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.strategy-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-item.hover-effect:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.item-icon {
    font-size: 36px;
    color: #ff5c00;
    margin-bottom: 20px;
}

.pulse-text {
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.custom-accordion {
    margin-top: 50px;
}

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-button {
    padding: 20px;
    font-weight: 600;
    background: white;
    color: #333;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ff5c00 0%, #ff8f00 100%);
    color: white;
}

.custom-accordion .accordion-button i {
    margin-right: 15px;
    color: #ff5c00;
}

.custom-accordion .accordion-button:not(.collapsed) i {
    color: white;
}

.steps-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.steps-list li {
    position: relative;
    padding: 15px 0 15px 50px;
    counter-increment: step;
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #ff5c00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.info-box {
    background: rgba(255, 92, 0, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.info-box i {
    color: #ff5c00;
    font-size: 20px;
    margin-right: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-highlights {
        flex-direction: column;
    }
    
    .highlight-item {
        margin-bottom: 20px;
    }
    
    .rewards-features {
        grid-template-columns: 1fr;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
}

/* Tax Breakdown Styles */
.tax-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tax-title span {
    color: var(--secondary-color);
}

.tax-title .percentage {
    color: var(--primary-color);
}

/* Password Requirements Styles */
.password-requirements {
    margin-top: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    font-size: 0.9rem;
}

.requirement-title {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: #666;
}

.password-requirements li i {
    margin-right: 8px;
    font-size: 14px;
}

.password-requirements li i.fa-times {
    color: #dc3545;
}

.password-requirements li i.fa-check {
    color: #28a745;
}

.password-requirements li.valid {
    color: #28a745;
}

.password-match-message {
    margin-top: 5px;
    font-size: 0.9rem;
}

.password-match-message.valid {
    color: #28a745;
}

.password-match-message.invalid {
    color: #dc3545;
}

input[type="date"] {
    position: relative;
    background: #fff;
    cursor: pointer;
    padding-right: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff5c00' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    display: none;
}

input[type="date"]::-webkit-datetime-edit {
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-year-field {
    max-width: 4ch;
}

/* Popup de Registro - Versão melhorada */
.register-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-width: 360px;
    width: calc(100% - 40px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 92, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.register-popup.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.register-popup .popup-icon {
    background: linear-gradient(135deg, var(--primary-color), #ff8a3d);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.register-popup .popup-icon i {
    color: white;
    font-size: 1.2rem;
}

.register-popup .popup-content {
    flex-grow: 1;
}

.register-popup p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.register-popup .popup-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.register-popup .popup-register {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.register-popup .popup-register:hover {
    background: #ff7b33;
    transform: translateY(-1px);
}

.register-popup .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--secondary-color);
    opacity: 0.5;
    cursor: pointer;
    padding: 5px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.register-popup .close-popup:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Responsividade do Popup */
@media (max-width: 576px) {
    .register-popup {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 12px 20px;
    }

    .register-popup .popup-icon {
        width: 35px;
        height: 35px;
    }

    .register-popup p {
        font-size: 0.9rem;
    }

    .register-popup .popup-buttons {
        margin-top: 8px;
    }
} 