/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #8b4513;
    --background-color: #1a1a1a;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --accent-color: #ff6b35;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-dark: linear-gradient(135deg, #000000, #1a1a1a);
    --shadow-light: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--background-color);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-3px);
}

.btn-buy {
    background: var(--accent-color);
    color: white;
    font-size: 18px;
    padding: 20px 40px;
    width: 100%;
    justify-content: center;
    margin: 20px 0;
}

.btn-buy:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    background: var(--primary-color);
    color: var(--background-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px var(--primary-color); }
    to { text-shadow: 0 0 30px var(--primary-color), 0 0 40px var(--primary-color); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-weight: 300;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 20px;
    color: var(--text-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Como Funciona */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--gradient-dark);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-light);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: var(--text-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: var(--gradient-dark);
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.step-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.step-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Bônus */
.bonus-items {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-item {
    padding: 25px;
    background: var(--gradient-dark);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

/* Pricing */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--gradient-dark);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--background-color);
    border-radius: 27px;
    z-index: -1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.price-original {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #ff4444;
    font-weight: 600;
}

.price-main {
    margin-bottom: 30px;
}

.installment-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.installments {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--primary-color);
}

.price {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
}

.cash-price {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-color);
    font-weight: 600;
}

.payment-info, .immediate-access {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.guarantees {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.guarantee-item {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-icon {
    font-size: 30px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--gradient-dark);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 1000;
    box-shadow: var(--shadow-dark);
}

.cookie-notice p {
    margin: 0;
    color: var(--text-secondary);
}

.cookie-notice.hidden {
    display: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .guarantees {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card {
        margin: 0 20px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

