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

body {
    background-color: #F8F7F3;
    color: #111111;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    line-height: 1.5;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

.page-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* 1. Headline no Estilo Notícia / Matéria Simples */
.news-header-box {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.main-headline {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: clamp(1.3rem, 2.8vw, 1.85rem);
    font-weight: 800;
    line-height: 1.35;
    color: #0F0F0F;
    max-width: 720px;
    margin: 0 auto 1rem;
    letter-spacing: -0.2px;
}

.highlight-red {
    color: #FF5436;
    font-weight: 900;
}

.sub-headline {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: #333333;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.45;
}

/* 2. Vídeo de Vendas (VSL) */
.vsl-wrapper {
    width: 100%;
    margin-bottom: 1.75rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    background-color: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.play-btn {
    width: 65px;
    height: 65px;
    background: #FF5436;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 20px rgba(255, 84, 54, 0.5);
}

.play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

/* Barra de Progresso Vermelha em Destaque */
.custom-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 14px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
    pointer-events: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.custom-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #B91C1C 0%, #EF4444 50%, #DC2626 100%);
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.7);
    transition: width 0.25s linear;
}

.escondido {
    display: none !important;
}

.escondido {
    display: none !important;
}

/* Botão de Compra CTA Maior com Efeito de Expansão ao Passar o Mouse / Clicar */
.cta-wrapper {
    max-width: 580px;
    margin: 1.5rem auto 3.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    white-space: nowrap;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 1.25rem 1.2rem;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease, background 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    user-select: none;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.6);
    background: linear-gradient(90deg, #059669 0%, #10B981 100%);
}

.btn-cta:active {
    transform: scale(1.08);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.75);
}

.pulse-animation {
    animation: btnPulse 2s infinite ease-in-out;
}

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

.btn-cta:hover.pulse-animation, .btn-cta:active.pulse-animation {
    animation: none;
}

.btn-text {
    font-size: clamp(1.05rem, 4vw, 1.55rem);
    font-weight: 900;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
}

/* 3. Seção Resultados (3 Mulheres) */
.results-section {
    padding-top: 0.5rem;
}

.results-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    color: #111111;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.result-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.result-img {
    width: 100%;
    height: auto;
    display: block;
}

.result-info {
    padding: 0.95rem;
}

.result-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}

.result-comment {
    font-size: 0.85rem;
    color: #4B5563;
    font-style: italic;
    line-height: 1.4;
}
