* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ff6b6b, #ffa500, #ff1744);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #E0E0E0;
    line-height: 1.4;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-item span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.hero-cta {
    margin-top: 40px;
}

.cta-button-hero {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.cta-button-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button-hero:hover::before {
    left: 100%;
}

.cta-button-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.cta-price {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.hero-guarantee {
    font-size: 0.9rem;
    color: #B0B0B0;
    margin: 0;
}



.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff1744, #ff6b6b);
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b6b;
}

.problem-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.problem-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    border-left: 5px solid #ff6b6b;
}

.problem-icon {
    font-size: 2rem;
    margin-right: 20px;
}

.problem-item p {
    font-size: 1.2rem;
    font-weight: 500;
}

.good-news {
    text-align: center;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    padding: 30px;
    border-radius: 20px;
    margin-top: 3rem;
}

.good-news-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffa500, #ff6b6b);
    color: white;
}

.solution h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.solution-description {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-based {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.includes {
    max-width: 900px;
    margin: 0 auto;
}

.includes h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.include-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.include-item:hover {
    transform: translateY(-10px);
}

.include-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.include-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b6b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.05);
    border-color: #ff6b6b;
}

.benefit-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: #ff6b6b;
}

.benefit-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial-photo {
    margin-bottom: 20px;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.client-photo:hover {
    transform: scale(1.1);
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #fff;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.stars {
    font-size: 1.2rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .client-photo {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.offer h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ff6b6b;
}

.price-container {
    margin: 2rem 0;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 10px;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b6b;
}

.new-price span {
    font-size: 1.2rem;
    font-weight: 400;
}

.digital-access {
    font-size: 1.2rem;
    margin: 2rem 0;
    color: #ffa500;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(45deg, #ff1744, #ff6b6b);
    color: white;
    padding: 25px 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2rem 0;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 23, 68, 0.6);
}

.guarantee {
    background: rgba(255, 107, 107, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.guarantee h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.urgency {
    background: linear-gradient(45deg, #ff1744, #ff6b6b);
    padding: 30px;
    border-radius: 20px;
    margin-top: 3rem;
}

.urgency-text {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.countdown {
    margin-top: 20px;
}

.countdown p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.time-unit label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin-bottom: 10px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    

    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        flex-direction: column;
        align-items: center;
    }
    
    .time-unit {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .problem-item {
        flex-direction: column;
        text-align: center;
    }
    
    .problem-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b6b;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 165, 0, 0.1));
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(255, 165, 0, 0.2));
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b6b;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-toggle {
        font-size: 1.5rem;
    }
}

/* Seção Final CTA */
.final-cta {
    background: linear-gradient(135deg, #8B0000 0%, #FF4500 50%, #8B0000 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::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"><circle cx="50" cy="50" r="2" fill="%23FFD700" opacity="0.1"/></svg>') repeat;
    animation: sparkle 3s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-header h2 {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: pulse 2s ease-in-out infinite;
}

.cta-header h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-text {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
}

.urgency-box {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #FF4500;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    animation: urgencyPulse 2s ease-in-out infinite;
}

.urgency-box p {
    margin: 5px 0;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
}

.price-highlight {
    color: #FFD700;
    font-size: 1.4em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.benefits-reminder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.benefits-reminder h4 {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.benefits-reminder ul {
    list-style: none;
    padding: 0;
}

.benefits-reminder li {
    color: white;
    font-size: 1.1rem;
    margin: 10px 0;
    padding-left: 10px;
}

.final-decision {
    margin: 40px 0;
}

.decision-text {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
}

.options {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.option-bad {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #FF0000;
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-size: 1.1rem;
}

.option-good {
    background: rgba(0, 255, 0, 0.2);
    border: 2px solid #00FF00;
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-size: 1.1rem;
    animation: goodOption 2s ease-in-out infinite;
}

.cta-button-final {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #8B0000;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    animation: ctaPulse 3s ease-in-out infinite;
}

.cta-button-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.button-subtext {
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.9;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.final-warning {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    animation: warning 2s ease-in-out infinite;
}

/* Animações */
@keyframes urgencyPulse {
    0%, 100% { border-color: #FF4500; }
    50% { border-color: #FF0000; }
}

@keyframes goodOption {
    0%, 100% { border-color: #00FF00; }
    50% { border-color: #32CD32; }
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes warning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-header h2 {
        font-size: 2.5rem;
    }
    
    .cta-header h3 {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-final {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
}

/* Pop-up de Vendas Simuladas */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    z-index: 9999;
    transform: translateX(-400px);
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 300px;
    min-width: 280px;
    font-family: 'Poppins', sans-serif;
}

.sales-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.popup-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.popup-icon {
    font-size: 2rem;
    margin-right: 15px;
    animation: popupPulse 2s ease-in-out infinite;
}

@keyframes popupPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.popup-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.popup-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #FFD700;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-weight: bold;
    line-height: 1;
}

.popup-close:hover {
    opacity: 1;
}

/* Animação de entrada */
@keyframes slideInLeft {
    from {
        transform: translateX(-400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animação de saída */
@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-400px);
        opacity: 0;
    }
}

/* Responsividade do Pop-up */
@media (max-width: 768px) {
    .sales-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        min-width: auto;
    }
    
    .popup-content {
        padding: 12px 15px;
    }
    
    .popup-icon {
        font-size: 1.5rem;
        margin-right: 10px;
    }
    
    .popup-text {
        font-size: 0.8rem;
    }
    
    .popup-text strong {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .sales-popup {
        bottom: 5px;
        left: 5px;
        right: 5px;
    }
}