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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Barra de Urgência */
.urgency-bar {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.urgency-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.timer {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Video Container */
.video-container {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea, #764ba2);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #333;
    position: absolute;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    color: white;
}

.video-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-overlay ul {
    list-style: none;
    text-align: left;
}

.video-overlay li {
    margin-bottom: 8px;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Warning Box */
.warning-box {
    background: rgba(255,193,7,0.2);
    border: 2px solid #ffc107;
    color: #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 600px;
    font-weight: 600;
    text-align: center;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
    margin: 20px 0;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40,167,69,0.6);
}

.main-cta {
    font-size: 1.4rem;
    padding: 25px 50px;
    margin: 30px 0;
}

.guarantee {
    margin-top: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Problem Section */
.problem {
    background: #f8f9fa;
    padding: 80px 0;
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 50px;
    font-weight: 800;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.problem-text h3 {
    font-size: 1.8rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.problem-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 0;
}

.solution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.solution-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Social Proof */
.social-proof {
    background: white;
    padding: 80px 0;
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 50px;
    font-weight: 800;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #28a745;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #28a745;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #28a745;
    font-weight: 600;
}

/* Method Section */
.method {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 80px 0;
}

.method h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.method-result {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Guarantee Section */
.guarantee-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.guarantee-badge {
    font-size: 4rem;
    margin-bottom: 20px;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 30px;
    font-weight: 800;
}

.guarantee-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #28a745;
}

.guarantee-box h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.offer h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.pricing {
    margin-bottom: 50px;
}

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 10px;
}

.price-new {
    font-size: 4rem;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 10px;
}

.discount {
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 10px;
}

.installments {
    font-size: 1.2rem;
    opacity: 0.9;
}

.offer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
}

.premium-package {
    border-color: #ffc107;
    transform: scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 30px;
}

.package ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    padding-left: 10px;
}

.premium-cta {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #333;
}

.payment-methods {
    margin-top: 50px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.payment-icons span {
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
}

.urgency-reminder {
    background: rgba(255,68,68,0.2);
    border: 2px solid #ff4444;
    color: #ffc107;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 30px;
}

/* Bonus Section */
.bonus {
    background: #f8f9fa;
    padding: 80px 0;
}

.bonus h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 50px;
    font-weight: 800;
}

.bonus-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bonus-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #28a745;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.bonus-value {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
}

/* FAQ Section */
.faq {
    background: white;
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 800;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.final-cta-btn {
    font-size: 1.5rem;
    padding: 25px 50px;
    margin: 30px 0;
}

.final-message {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 20px;
}

/* Purchase Notifications */
.purchase-notifications {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    max-width: 300px;
}

.notification {
    background: #28a745;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Viewers Count */
.viewers-count {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1000;
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .offer-content {
        grid-template-columns: 1fr;
    }
    
    .premium-package {
        transform: none;
    }
    
    .urgency-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .timer {
        font-size: 16px;
    }
    
    .payment-icons {
        justify-content: center;
        gap: 10px;
    }
    
    .payment-icons span {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .main-cta {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
    
    .price-new {
        font-size: 3rem;
    }
    
    .package {
        padding: 25px;
    }
}

