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

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

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

.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.85) 100%);
    padding: 60px 0;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.vsl-container {
    max-width: 800px;
    margin: 40px auto;
}

.vsl-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: pulse 2s ease-in-out infinite;
}

.vsl-wrapper {
    position: relative; /* Essencial para o posicionamento do overlay e do vídeo */
    cursor: pointer;
}

.video-player {
    /* Garante que o vídeo ocupe o mesmo espaço da thumbnail */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.vsl-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.vsl-wrapper:hover {
    transform: scale(1.02);
}

.vsl-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vsl-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.vsl-wrapper:hover .vsl-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.6);
    transition: all 0.3s ease;
}

.vsl-wrapper:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.8);
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 25px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 69, 0, 0.6);
    background: linear-gradient(135deg, #ff6347 0%, #ff4500 100%);
}

.cta-button-large {
    font-size: 1.4rem;
    padding: 22px 50px;
}

.hero-guarantee {
    margin-top: 25px;
    font-size: 1rem;
    opacity: 0.95;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2d2d2d;
    font-weight: 700;
}

.problem {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.problem-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff4500;
}

.problem-warning {
    background: linear-gradient(135deg, #8b0000 0%, #ff4500 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.problem-warning h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.problem-warning p {
    font-size: 1.1rem;
}

.solution {
    padding: 80px 0;
    background: #fff;
}

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

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.solution-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.solution-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.solution-list {
    list-style: none;
    margin: 30px 0;
}

.solution-list li {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #fff;
}

.benefits .section-title {
    color: #fff;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4);
    border-color: rgba(255, 99, 71, 0.5);
}

.benefit-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(255, 69, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) translateY(-10px);
    filter: drop-shadow(0 8px 20px rgba(255, 99, 71, 0.8));
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ff6347;
}

.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.testimonial-item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
    color: #fff;
}

.offer .section-title {
    color: #fff;
    font-size: 2.5rem;
}

.countdown-timer {
    text-align: center;
    margin: 30px auto;
    max-width: 500px;
}

.countdown-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4500;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.offer-box {
    background: #fff;
    color: #333;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ebook-badge {
    max-width: 350px;
    margin: 0 auto 30px;
    display: block;
}

.price-box {
    margin: 30px 0;
}

.price-old {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: #999;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0;
}

.price-highlight {
    font-size: 3rem;
    color: #ff4500;
}

.price-installment {
    font-size: 1.2rem;
    color: #666;
}

.offer-urgency {
    background: #fff3cd;
    border: 2px solid #ff4500;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.offer-urgency p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.payment-info {
    margin: 30px 0;
}

.payment-methods {
    max-width: 400px;
    margin: 20px auto;
    display: block;
}

.payment-text {
    font-size: 0.9rem;
    color: #666;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
}

.guarantee img {
    max-width: 120px;
    height: auto;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text h4 {
    font-size: 1.3rem;
    color: #ff4500;
    margin-bottom: 10px;
}

.faq {
    padding: 80px 0;
    background: #fff;
}

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

.faq-item {
    background: #f9f9f9;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid #ff4500;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #ff6347;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

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

.social-links {
    margin-top: 20px;
}

.social-links p {
    margin-bottom: 10px;
}

.social-links a {
    color: #ff6347;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff4500;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .offer-box {
        padding: 30px 20px;
    }

    .price-highlight {
        font-size: 2.5rem;
    }

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

    .guarantee-text {
        text-align: center;
    }

    .logo {
        max-width: 220px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .cta-button-large {
        font-size: 1.1rem;
        padding: 18px 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .problem-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .offer {
        padding: 40px 10px;
    }

    .offer .section-title {
        font-size: 1.2rem;
        padding: 0 15px;
        line-height: 1.4;
        word-wrap: break-word;
        word-break: break-word;
    }

    .offer-box {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .offer-box h3 {
        font-size: 1.05rem !important;
        padding: 0 5px !important;
        line-height: 1.4 !important;
    }

    .offer-box p {
        font-size: 0.9rem !important;
        padding: 0 5px !important;
        line-height: 1.6 !important;
    }

    .ebook-badge {
        max-width: 90%;
        margin: 0 auto 20px;
    }

    .price-highlight {
        font-size: 1.8rem;
    }

    .price-current {
        font-size: 1.3rem;
    }

    .price-old {
        font-size: 1.1rem;
    }

    .price-installment {
        font-size: 1rem;
    }

    .offer-urgency {
        padding: 15px 10px;
        margin: 20px 0;
    }

    .offer-urgency p {
        font-size: 0.9rem;
        padding: 0 5px;
    }

    .payment-methods {
        max-width: 90%;
        margin: 15px auto;
    }

    .payment-text {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .cta-button-large {
        font-size: 0.95rem;
        padding: 15px 25px;
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .guarantee img {
        max-width: 100px;
    }

    .guarantee-text {
        text-align: center;
    }

    .guarantee-text h4 {
        font-size: 1.05rem;
    }

    .guarantee-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .countdown-timer {
        margin: 20px auto;
        max-width: 90%;
    }

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

    .countdown-display {
        padding: 15px 10px;
    }

    .countdown-item {
        padding: 12px 15px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }
}
