/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.7;
    padding-top: 50px;
    font-weight: 400;
}

/* Barra Fixa de Escassez */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #dc2626;
    color: #ffffff;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5);
}

.top-bar p {
    margin: 0;
}

/* Container Principal */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Headline */
.headline-section {
    text-align: center;
    margin-bottom: 50px;
}

.headline-section h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

/* CTA Inicial */
.cta-top-section {
    text-align: center;
    margin-bottom: 60px;
}

.cta-top-button {
    display: inline-block;
    background-color: #dc2626;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    padding: 24px 56px;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
    border: none;
    cursor: pointer;
}

.cta-top-button:hover {
    background-color: #ef4444;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.5);
}

/* Vídeo */
.video-section {
    margin-bottom: 50px;
}

.video-container {
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
    border: 2px solid #dc2626;
    border-radius: 8px;
    padding: 120px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.video-placeholder {
    color: #999999;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

/* Subheadline */
.subheadline-section {
    text-align: center;
    margin-bottom: 60px;
}

.subheadline-section h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #e5e5e5;
    letter-spacing: 0.3px;
}

/* Prova Social */
.testimonials-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: #0a0a0a;
    border: 1px solid #dc2626;
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #ef4444;
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.3);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 2px solid #dc2626;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 12px;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    font-size: 14px;
    color: #999999;
    font-weight: 500;
}

/* Benefícios */
.benefits-section {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-section h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.benefits-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.benefits-list li {
    font-size: 17px;
    color: #ffffff;
    padding: 18px 22px;
    margin-bottom: 14px;
    background-color: #0a0a0a;
    border-left: 4px solid #dc2626;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

/* Oferta e CTA */
.offer-section {
    margin-bottom: 60px;
}

.offer-box {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    border: 2px solid #dc2626;
    border-radius: 10px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.3);
}

.offer-text {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 500;
}

.offer-price {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 36px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background-color: #dc2626;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    padding: 22px 52px;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ef4444;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.5);
}

.downsell-link {
    display: block;
    color: #666666;
    font-size: 13px;
    text-decoration: underline;
    margin-top: 18px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.downsell-link:hover {
    color: #999999;
}

/* Responsivo - Tablet */
@media (min-width: 768px) {
    .top-bar {
        font-size: 14px;
        padding: 15px 20px;
    }

    .headline-section h1 {
        font-size: 44px;
    }

    .subheadline-section h2 {
        font-size: 22px;
    }

    .testimonials-section {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-section h3 {
        font-size: 32px;
    }

    .cta-button {
        font-size: 18px;
        padding: 24px 56px;
    }

    .cta-top-button {
        font-size: 19px;
        padding: 26px 60px;
    }
}

/* Responsivo - Desktop */
@media (min-width: 1024px) {
    body {
        padding-top: 60px;
    }

    .container {
        padding: 70px 50px;
    }

    .headline-section h1 {
        font-size: 52px;
    }

    .headline-section {
        margin-bottom: 60px;
    }

    .benefits-section {
        margin-bottom: 60px;
    }

    .offer-section {
        margin-bottom: 80px;
    }

    .cta-top-button {
        font-size: 20px;
        padding: 28px 64px;
    }
}
