/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner de Urgência */
.urgency-banner {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 10px 0;
    text-align: center;
    position: relative;
    animation: pulse 2s infinite;
}

.urgency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.fire-icon {
    font-size: 20px;
    animation: bounce 1s infinite;
}

.urgency-text {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 900;
    background: rgba(0,0,0,0.3);
    padding: 5px 15px;
    border-radius: 5px;
    border: 2px solid #fff;
}

/* Header */
.header {
    background: rgba(0,0,0,0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
}

.crypto-icon {
    font-size: 24px;
    color: #ffd700;
}

.btn-test {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}

.btn-test:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,0,0,0.4);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #000, #1a1a1a);
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.headline {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(255,215,0,0.3);
}

.subheadline {
    font-size: 24px;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 30px;
}

.profit-proof {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.profit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,215,0,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.profit-icon {
    font-size: 24px;
}

.profit-text {
    font-weight: 600;
    font-size: 16px;
}

.cta-section {
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,215,0,0.4);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-subtext {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 14px;
}

/* Hero Image - Profit Screenshot */
.hero-image {
    display: flex;
    justify-content: center;
}

.profit-screenshot {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    min-width: 300px;
}

.screenshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.platform {
    font-weight: 700;
    color: #ffd700;
}

.status {
    background: #00ff00;
    color: #000;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.profit-display {
    margin-bottom: 20px;
}

.profit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.coin {
    font-weight: 600;
    color: #fff;
}

.profit {
    font-weight: 700;
    font-size: 16px;
}

.profit.positive {
    color: #00ff00;
}

.total-profit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,215,0,0.1);
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
}

.total-amount {
    color: #ffd700;
    font-size: 18px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #111;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: #ffd700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 700;
    font-size: 16px;
}

.location {
    color: #999;
    font-size: 14px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.profit-badge {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 14px;
    display: inline-block;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: #000;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.plan {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,215,0,0.1);
}

.plan-pro {
    border: 3px solid #ffd700;
    transform: scale(1.05);
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffd700;
}

.plan-price {
    margin-bottom: 25px;
}

.currency {
    font-size: 18px;
    color: #ffd700;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
}

.period {
    font-size: 16px;
    color: #999;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: #ccc;
    font-size: 14px;
}

.btn-plan {
    width: 100%;
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-plan:hover {
    background: linear-gradient(135deg, #555, #777);
    transform: translateY(-2px);
}

.btn-pro {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.btn-pro:hover {
    background: linear-gradient(135deg, #ffed4e, #fff);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,215,0,0.1);
    padding: 15px 20px;
    border-radius: 25px;
    border: 1px solid #ffd700;
    font-weight: 600;
    font-size: 14px;
}

.badge-icon {
    font-size: 18px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #111;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,215,0,0.1);
}

.faq-icon {
    font-size: 20px;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-text {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.popup {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ffd700;
    max-width: 400px;
    text-align: center;
    animation: popupSlide 0.3s ease;
}

.popup-header {
    margin-bottom: 20px;
}

.popup-icon {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}

.popup h3 {
    font-size: 24px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 15px;
}

.popup p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-popup {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-popup:first-child {
    background: #333;
    color: #fff;
}

.btn-popup-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

/* Notifications */
.notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
}

.notification {
    background: #1a1a1a;
    border: 1px solid #ffd700;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    animation: notificationSlide 0.3s ease;
    max-width: 300px;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.notification-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
}

.notification-text {
    font-weight: 700;
    color: #ffd700;
}

.notification-content {
    color: #ccc;
    font-size: 14px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes notificationSlide {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .headline {
        font-size: 32px;
    }
    
    .subheadline {
        font-size: 20px;
    }
    
    .profit-proof {
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-pro {
        transform: none;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .popup {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .notifications {
        left: 20px;
        right: 20px;
    }
    
    .notification {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .headline {
        font-size: 28px;
    }
    
    .subheadline {
        font-size: 18px;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .plan-price .amount {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
}
