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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Warning and Urgency Elements */
.warning-banner {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
    border-radius: 5px;
    animation: pulse 2s infinite;
}

.urgency-text {
    color: #ff6b9d;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}

.scarcity-banner {
    background: linear-gradient(45deg, #ff0000, #ff6b9d);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 30px;
    border-radius: 10px;
    animation: pulse 1.5s infinite;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-subtitle {
    color: #ff6b9d;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

.highlight {
    color: #ff6b9d;
    font-weight: 700;
}

.highlight-box {
    background: rgba(255, 107, 157, 0.1);
    border: 2px solid #ff6b9d;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 600;
}

.warning-text {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    color: #ff4444;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    border: none;
    padding: 20px 45px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.6);
}

.cta-button.large {
    padding: 25px 55px;
    font-size: 20px;
}

.pulse {
    animation: pulse 2s infinite;
}

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

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.stars {
    color: #ffd700;
    font-size: 20px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 107, 157, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
}

/* Video Placeholder */
.video-placeholder {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.video-frame {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 2px dashed #ff6b9d;
    position: relative;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.vsl-content {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.vsl-content h3 {
    color: #ff6b9d;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.vsl-content p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.vsl-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.vsl-content li {
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 10px;
}

.vsl-content em {
    color: #ff6b9d;
    font-style: italic;
    text-align: center;
    display: block;
    margin-top: 20px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6b9d;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a1a 100%);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #cccccc;
}

/* Authority Section */
.authority-section {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 100%);
}

.authority-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.science-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff6b9d;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.science-box h3 {
    color: #ff6b9d;
    margin-bottom: 20px;
}

.science-box ul {
    list-style: none;
    padding: 0;
}

.science-box li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

/* Social Proof Section */
.social-proof-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a1a 100%);
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    backdrop-filter: blur(10px);
}

.testimonial.urgent {
    border-color: #ff6b9d;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 16px;
}

.testimonial-author {
    color: #ff6b9d;
    font-weight: 600;
    margin-bottom: 10px;
}

.result-time {
    color: #00ff00;
    font-weight: bold;
    font-size: 14px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #ff6b9d;
    display: block;
}

.stat-label {
    color: #cccccc;
    margin-top: 10px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 100%);
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.benefit-icon {
    font-size: 30px;
    min-width: 50px;
}

.benefit-item h3 {
    color: #ff6b9d;
    margin-bottom: 10px;
    font-size: 20px;
}

.benefit-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a1a 100%);
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ff6b9d;
}

.step p {
    color: #cccccc;
    line-height: 1.6;
}

.warning-box {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
}

.warning-box h3 {
    color: #ff4444;
    margin-bottom: 20px;
}

.warning-box ul {
    color: #cccccc;
    padding-left: 20px;
}

.warning-box li {
    margin-bottom: 10px;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 100%);
    text-align: center;
}

.offer-header {
    margin-bottom: 50px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 80px;
    border: 2px solid #ff6b9d;
}

.countdown-number {
    font-size: 32px;
    font-weight: bold;
    color: #ff6b9d;
}

.countdown-label {
    font-size: 14px;
    color: #cccccc;
    text-transform: uppercase;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.package-list h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ff6b9d;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    text-align: left;
}

.package-icon {
    font-size: 20px;
    min-width: 30px;
}

.pricing {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
}

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

.original-price {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 10px;
}

.crossed {
    text-decoration: line-through;
    color: #ff4444;
}

.emergency-price {
    font-size: 20px;
    color: #ff6b9d;
    font-weight: bold;
    margin-bottom: 10px;
}

.price {
    display: block;
    font-size: 60px;
    font-weight: bold;
    color: #ff6b9d;
    margin-bottom: 20px;
}

.payment-options {
    margin-top: 20px;
}

.payment-option {
    padding: 10px;
    margin: 5px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 14px;
}

.guarantee-section {
    margin-top: 30px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #00ff00;
}

.bonus-guarantee {
    background: rgba(255, 107, 157, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ff6b9d;
    font-size: 14px;
}

.final-warning {
    margin-top: 50px;
    background: rgba(255, 0, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff0000;
}

.final-warning h3 {
    color: #ff4444;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a1a 100%);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.faq-toggle {
    font-size: 24px;
    color: #ff6b9d;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding-bottom: 20px;
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b9d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .offer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .price {
        font-size: 48px;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .video-frame {
        padding: 30px 20px;
    }
    
    .vsl-content {
        text-align: center;
    }
    
    .vsl-content ul {
        text-align: left;
    }
    
    /* Correção específica para mobile - remove overflow */
    .warning-banner {
        font-size: 12px;
        padding: 8px;
        word-wrap: break-word;
    }
    
    .urgency-text {
        font-size: 14px;
        word-wrap: break-word;
    }
    
    .scarcity-banner {
        font-size: 14px;
        padding: 12px;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 14px;
        word-wrap: break-word;
    }
    
    .cta-button.large {
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .video-frame {
        padding: 20px 15px;
    }
    
    .vsl-content h3 {
        font-size: 20px;
    }
    
    .vsl-content p {
        font-size: 14px;
    }
    
    .vsl-content li {
        font-size: 14px;
    }
    
    /* Correções específicas para mobile pequeno */
    .warning-banner {
        font-size: 11px;
        padding: 6px;
    }
    
    .scarcity-banner {
        font-size: 12px;
        padding: 10px;
    }
    
    .urgency-text {
        font-size: 12px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-text > * {
    animation-delay: 0.2s;
}

.hero-image {
    animation-delay: 0.4s;
}

