:root {
    --primary: #2c3e50;
    --secondary: #16a085;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #2c3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    background-color: #f8f9fa;
    line-height: 1.6;
}

.navbar {
    background-color: var(--primary);
    padding: 15px 0;
}

.token-price {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 15px;
    font-size: 0.9rem;
}

/* Estilos para o seletor de idioma */
.language-selector {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.language-option {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.language-option.active {
    color: white;
    font-weight: bold;
}

.language-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 2px;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 15px 0;
}

.center-title .section-title:after {
    margin: 15px auto;
}

.card {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: none;
    margin-bottom: 20px;
}

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

.value-card {
    text-align: center;
    padding: 25px 15px;
}

.value-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bg-light-custom {
    background-color: var(--light);
}

.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    padding: 10px 25px;
    font-weight: 600;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.roadmap-step {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

.roadmap-step:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--secondary);
}

.roadmap-step:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 23px;
    width: 2px;
    height: calc(100% + 25px);
    background: var(--secondary);
}

.roadmap-step:last-child:after {
    display: none;
}

.tokenomics-chart {
    max-width: 300px;
    margin: 0 auto;
}

footer {
    background-color: var(--primary);
    color: white;
    padding: 50px 0 20px;
}

.social-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.testimonial-card {
    border-left: 4px solid var(--secondary);
}

.ai-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.loading {
    opacity: 0.7;
}

.calculator-card {
    margin-top: 2rem;
}

.calculator-input {
    margin-bottom: 1rem;
}

.calculator-result {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
}

a{
text-decoration: none;
color: white;
}

a:hover{
text-decoration: underline;
color: white;
}

/* Novos estilos para as estatísticas */
.stats-row {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 15px;
    position: relative;
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #dee2e6;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-description {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
}

.stats-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.stats-loading .spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 15px;
        padding: 15px 0;
    }
    
    .stat-item:not(:last-child):after {
        display: none;
    }
}

.contract-links {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.contract-btn {
    transition: all 0.3s ease;
    border-width: 2px;
    font-weight: 600;
}

.contract-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contract-btn i {
    font-size: 1.2em;
}

