/* =========================================
   RESET E CONFIGURAÇÕES GERAIS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #111111; /* Fundo escuro que envolve a página no print */
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo principal */
}

/* Container principal para limitar a largura da página (simulando mobile/desktop) */
.main-container {
    width: 100%;
    max-width: 600px; /* Largura focada para o estilo do print */
    background-color: #111; /* Fundo branco das seções de oferta */
    min-height: 0vh;
}





/* =========================================
   SEÇÃO 1: CABEÇALHO (HEADER)
   ========================================= */
   .header-cbs {
    background-color: #111111; /* Cor de fundo escura, padrão do print */
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
}

.header-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   SEÇÃO 1: ÁREA DO VSL
   ========================================= */
   .vsl-section {
    background-color: #101010; 
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 0px !important; 
    margin-bottom: 0px !important;  
}

.vsl-container {
    width: 100%;
    max-width: 600px; /* Trava na mesma largura do resto do site */
    background-color: #111;
    position: relative;
    
    /* REMOVEMOS o aspect-ratio para o Vturb ditar a própria altura.
       E usamos essas regras para matar qualquer espaço invisível. */
    line-height: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important; 
}

/* Garante que o iframe do Vturb preencha o container sem criar buracos embaixo */
.vsl-container iframe,
.vsl-container video,
.vsl-container > div {
    width: 100% !important;
    margin-bottom: 0px !important;
    display: block !important;
}

/* Pode manter essa classe no CSS, mas lembre-se de APAGAR a div dela no seu arquivo HTML! */
.vsl-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16; 
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #333;
    padding: 20px;
    text-align: center;
}


/* =========================================
   SEÇÃO 2: OFERTAS (HÍBRIDO)
   ========================================= */
   .offer-section {
    width: 100%;
    background-color: #101010; 
    padding: 40px 20px; 
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10; 
}

.offer-container {
    width: 100%;
    max-width: 600px; 
    display: flex;
    flex-direction: column; 
    gap: 30px; 
    align-items: center;
}

/* Estrutura base dos Cards */
.hybrid-card {
    width: 100%;
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Variação 1: Destaque Azul (6 Potes) */
.theme-blue {
    border: 3px solid #2B60DE;
}

.theme-blue .card-header {
    background-color: #2B60DE;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    padding: 10px;
    text-transform: uppercase;
}

/* Variação 2: Padrão (3 e 2 Potes) */
.theme-standard {
    border: 2px solid #dddddd; /* Borda neutra para os pacotes menores */
}

/* Corpo e Imagem do Card */
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-top-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px; /* Dá um respiro antes de começar a parte em código */
}

/* CÓDIGO INFERIOR: Texto, Botão e Segurança */
.card-coded-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.delivery-text {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.text-red {
    color: #d9534f;
}

/* Botões */
.btn-buy-now {
    width: 100%;
    background-color: #F47C20; /* Laranja da sua foto */
    color: #ffffff;
    border: none;
    border-radius: 40px; /* Deixa o botão bem arredondado nas pontas */
    padding: 16px;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-buy-now:hover {
    background-color: #e06c15;
    transform: scale(1.02); /* Efeitinho sênior: o botão cresce levemente ao passar o mouse */
}

/* Variação Botão Amarelo para os cards secundários (opcional, como na foto) */
.btn-yellow {
    background-color: #F4C12E; 
    color: #000000;
}
.btn-yellow:hover {
    background-color: #dfad1f;
}

/* Ícones SVG Gerais */
.icon-svg {
    width: 18px;
    height: 18px;
    fill: #000000;
}
.fill-white { fill: #ffffff; }
.fill-black { fill: #000000; }

/* Pagamento e Checkout */
.payment-logos {
    margin-bottom: 10px;
}
.payment-logos img {
    height: 60px; /* Controla a altura das bandeiras de cartão */
    width: auto;
}

.secure-checkout {
    font-size: 12px;
    font-weight: 800;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hide-before-pitch {
    display: none !important;
}

/* Remove o sublinhado padrão de links dos cards de oferta */
a.hybrid-card, 
.offer-link {
    text-decoration: none !important;
}

/* Garante que textos específicos dentro do link não herdem cores azuis do navegador */
.offer-link p, 
.offer-link span, 
.offer-link div {
    text-decoration: none !important;
}




/* =========================================
   SEÇÃO 3: RODAPÉ DE COPY (NEWS STYLE)
   ========================================= */
   .footer-copy-section {
    background-color: #101010; 
    width: 100%;
    padding: 5px 20px 50px 20px !important; 
    
    /* ZERAMOS A MARGEM NEGATIVA. Agora ele não vai mais "morder" as ofertas */
    margin-top: 0px !important; 
    
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.footer-copy-container {
    width: 100%;
    max-width: 600px; 
    text-align: left;
    margin: 0 auto; 
}

.footer-headline {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-top: 0px !important; 
    margin-bottom: 15px;
}

.footer-subheadline {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 20px;
}

.live-badge {
    display: inline-block;
    background-color: #c41e1e;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}