/* DeFi Theme - Inspirado no design da imagem */
:root {
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --accent-blue: #3a8eff;
    --accent-purple: #7c5cff;
    --accent-cyan: #00dfd8;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(30, 30, 30, 0.6);
    --card-border: rgba(255, 255, 255, 0.1);
    --success-green: #4caf50;
    --chart-orange: #ff9800;
    --chart-red: #f44336;
    --chart-blue: #2196f3;
    --glassmorphism-bg: rgba(18, 18, 18, 0.7);
    --glassmorphism-border: rgba(255, 255, 255, 0.05);
    --shadow-glow: 0 0 20px rgba(124, 92, 255, 0.3);
}

/* Reset e Base */
body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(124, 92, 255, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(0, 223, 216, 0.1) 0%, transparent 25%);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Header */
header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--glassmorphism-border);
    backdrop-filter: blur(10px);
    padding: 20px 0;
}

h1 {
    background: linear-gradient(90deg, var(--text-primary) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.subheadline {
    color: var(--accent-cyan);
    font-weight: 500;
}

/* Cards e Seções */
section {
    background: var(--glassmorphism-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glassmorphism-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.science-section {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(60, 30, 90, 0.8) 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.science-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-purple), transparent);
}

/* Autor e Bio */
.author-section {
    background: var(--glassmorphism-bg);
    border-radius: 16px;
    padding: 20px;
}

.author-image {
    border: 2px solid var(--accent-purple);
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.4);
}

.author-bio {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glassmorphism-border);
}

/* Depoimentos */
.testimonial {
    background: var(--glassmorphism-bg);
    backdrop-filter: blur(8px);
    border-left: 4px solid var(--accent-purple);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.testimonial::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Botões CTA */
.cta-button {
    background: linear-gradient(45deg, #7c5cff 0%, #3a8eff 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(124, 92, 255, 0.5);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 18px 36px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 0 30px rgba(124, 92, 255, 0.7);
    transform: translateY(-3px);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    z-index: 0;
    transition: all 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Blocos de Etapas do Programa */
.step-box {
    background: var(--glassmorphism-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glassmorphism-border);
    border-left: 4px solid var(--accent-blue);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(58, 142, 255, 0.3);
}

.step-box h3 {
    color: var(--accent-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

/* Lista de Benefícios */
.benefits-list li::before {
    color: var(--accent-cyan);
    content: "✓";
}

.benefits-list li {
    margin-bottom: 15px;
    position: relative;
}

/* Bônus */
.bonus-section {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(50, 30, 80, 0.8) 100%);
    border: 1px solid var(--glassmorphism-border);
}

.bonus-item {
    background: var(--glassmorphism-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glassmorphism-border);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.bonus-image {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Garantia */
.guarantee-box {
    background: var(--glassmorphism-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-blue);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-purple));
}

/* Escolhas */
.choice-box {
    background: var(--glassmorphism-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glassmorphism-border);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-box:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(124, 92, 255, 0.3);
    transform: translateY(-5px);
}

/* Modals */
.modal-content {
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glassmorphism-border);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-title {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glassmorphism-border);
}

.footer-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
}

/* Texto destacado */
.highlight {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Elementos de dado e gráficos */
.data-metrics {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.metric-card {
    background: var(--glassmorphism-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glassmorphism-border);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    flex: 1;
    padding: 20px;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 10px 0;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 768px) {
    section, .step-box, .testimonial, .bonus-item, .guarantee-box, .choice-box {
        padding: 20px;
    }
    
    .data-metrics {
        flex-direction: column;
    }
    
    .cta-button {
        padding: 15px 30px;
    }
} 