/* Sales Page (Ultima Página) Styles */
.sales-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    background-color: #E6D9FF;
    color: #000;
}

.sales-fold {
    padding: 10px 0;
    margin-bottom: 10px;
}

/* Fold 1 - Header & VSL */
.sales-header {
    text-align: center;
    margin-bottom: 8px;
}

.sales-header h1 {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    color: #000;
}

.sales-header .purple-highlight {
    color: #7B1FA2;
}

.sales-subtitle {
    font-size: 0.9rem;
    color: #333;
    margin-top: 5px;
}

.vsl-container {
    width: 60%;
    /* Reduced size, slightly more than 50% for better mobile visibility, but user asked for 50% so let's stick closer to request or use a max-width approach */
    /* User said "diminua em 50%", so 50% width is literal. */
    width: 50%;
    margin: 0 auto 10px auto;
    /* Centered */
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vsl-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.pexels.com/photos/3768914/pexels-photo-3768914.jpeg?auto=compress&cs=tinysrgb&w=600');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

/* Fold 2 - Info & Scroll Testimonials */
.sales-headline-black {
    font-size: 0.55rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    padding: 0 10px;
}

.infographic-container {
    background: #FFF;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-scroll-container {
    height: 160px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.testimonial-scroll-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-scroll-item {
    min-width: 100%;
    padding: 0 5px;
    display: flex;
    justify-content: center;
}

.testimonial-scroll-item .testimonial-card {
    width: 90%;
    min-height: 140px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Fold 3 - Offer & Timer */
.offer-box {
    background: #FFEBEE;
    border: 1.5px dashed #D32F2F;
    border-radius: 20px;
    padding: 15px 15px;
    text-align: center;
    margin-bottom: 12px;
}

.timer-text {
    color: #D32F2F;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

#sales-timer {
    font-size: 2.2rem;
    font-weight: 900;
    color: #D32F2F;
}

.price-container {
    text-align: center;
    margin-bottom: 15px;
}

.price-old {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.price-promo-text {
    color: #007026;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.price-tag {
    font-size: 3.8rem;
    font-weight: 900;
    color: #00A650;
    margin: 0;
    line-height: 1;
    filter: drop-shadow(0 2px 5px rgba(0, 166, 80, 0.3));
}

.benefit-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    color: #666;
}

.price-subtext {
    font-size: 0.75rem;
    color: #444;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: -0.2px;
}

.btn-cta-animated {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
    font-weight: 900;
    color: #FFF;
    background: #6A1B9A;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(106, 27, 154, 0.4);
    animation: pulse-grow 2s infinite;
    text-transform: uppercase;
    margin: 8px 0;
}

.btn-cta-green {
    background: #43A047;
    box-shadow: 0 6px 20px rgba(67, 160, 71, 0.4);
}

@keyframes pulse-grow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Fold 4 - Guarantee */
.guarantee-fold {
    text-align: center;
}

.guarantee-seal {
    width: 120px;
    margin: 0 auto 20px;
}

.guarantee-title {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
}

.guarantee-text {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 10px;
}

/* VSL Overlay */
.vsl-unmute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    backdrop-filter: blur(2px);
}

.unmute-btn {
    background: #ff0000;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    animation: pulse-btn 1.5s infinite;
    text-transform: uppercase;
    border: 2px solid white;
}

@keyframes pulse-btn {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 0, 0, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 0, 0, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 0, 0, 0.6); }
}