:root {
    --primary-color: #D4AF37; /* Dourado luxo */
    --primary-dark: #b5952f;
    --bg-dark: #0f1115;
    --bg-darker: #08090b;
    --text-light: #e0e0e0;
    --text-white: #ffffff;
    --accent-green: #00b85c;
    --danger: #ff4757;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3 {
    color: var(--text-white);
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), #009048);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 184, 92, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 184, 92, 0.4);
}

.cta-button.large {
    max-width: 600px;
    font-size: 1.4rem;
    padding: 22px 40px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

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

/* Header / Hero */
.hero {
    padding: 60px 0;
    background: radial-gradient(circle at 50% 0%, #1a1e26 0%, var(--bg-darker) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.urgency-badge {
    display: inline-block;
    background-color: rgba(255, 71, 87, 0.1);
    color: var(--danger);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.headline {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.price-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 5px 0;
}

.small-text {
    font-size: 1rem;
    font-weight: 400;
    color: #a0a0a0;
}

.warning-text {
    color: var(--danger);
    font-weight: 600;
    font-size: 0.9rem;
}

.security-badges {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    max-width: 400px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.mockup {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: -20px 20px 50px rgba(0,0,0,0.5);
    transform: rotateY(-15deg);
    transition: transform 0.5s ease;
}

.mockup:hover {
    transform: rotateY(0deg);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pain-card {
    background: rgba(255,255,255,0.02);
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.pain-card i {
    font-size: 3rem;
    color: var(--danger);
    margin-bottom: 20px;
}

.pain-card h3 {
    margin-bottom: 15px;
}

.transition-text {
    font-size: 1.3rem;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 10px;
}

.benefits-list li i {
    color: var(--accent-green);
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    text-align: center;
}

.cta-section .section-title {
    margin-bottom: 20px;
}

.scarcity-box {
    background: rgba(255, 71, 87, 0.05);
    border: 1px dashed var(--danger);
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 10px;
}

.scarcity-box h3 {
    color: var(--danger);
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #333;
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--danger);
    width: 24%; /* 12 out of 50 */
    transition: width 1s ease;
}

.spots-text {
    font-size: 1.1rem;
}

.payment-methods {
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: linear-gradient(to right, #001f10, var(--bg-dark));
    border-top: 2px solid var(--primary-color);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-icon i {
    font-size: 5rem;
    color: var(--primary-color);
}

.guarantee-text h2 {
    margin-bottom: 10px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background-color: #050608;
    color: #666;
    font-size: 0.9rem;
}

.legal-links {
    margin: 15px 0;
}

.legal-links a {
    color: #888;
    text-decoration: none;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.disclaimer {
    font-size: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-button {
        margin: 0 auto;
    }

    .security-badges {
        margin: 20px auto;
    }
    
    .mockup {
        transform: rotateY(0);
        margin-top: 40px;
    }

    .pain-points {
        grid-template-columns: 1fr;
    }

    .headline {
        font-size: 2.2rem;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}
