/* 
   Design System - Operação Primeira Vaga 
   Estética: Ultra Clean (Sem efeitos, foco em legibilidade)
   SECTION: BLOCK R1
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg-color: #04060f;
    --bg-card: #0c1120;
    --bg-surface: #111827;
    --accent-green: #00e676;
    --accent-green-dim: #00c853;
    --accent-blue: #2979ff;
    --accent-red: #ff3d3d;
    --text-light: #f0f4ff;
    --text-muted: #8892a4;
    --border-subtle: rgba(255,255,255,0.07);

    --font-main: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    
    /* Proteção contra arrasto e seleção */
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* ─── TOP BAR ─── */
.top-badge-container {
    display: flex;
    justify-content: center;
    padding: 14px 20px;
    background: #0c1120;
    border-bottom: 1px solid var(--border-subtle);
}

.top-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-text-main {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0;
    text-transform: none; /* Removido uppercase */
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
}

/* ─── HERO ─── */
.hero-section {
    background: var(--bg-color);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0 80px;
    content-visibility: auto; /* Browser só renderiza quando chega perto */
    contain-intrinsic-size: 1px 500px; /* Ajuda o scroll a não saltar */
}

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

/* ─── HEADLINES ─── */
.question-headline {
    display: inline-block;
    color: var(--accent-red);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
    margin-bottom: 32px;
    text-transform: none; /* Removido uppercase */
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 6px;
}

.question-wrapper {
    display: flex;
    justify-content: center;
}

.main-headline {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0;
    text-transform: none;
}

.highlight-green {
    color: #00ff77 !important;
    font-weight: 900 !important;
    text-shadow: 0 0 10px rgba(0, 255, 119, 0.3);
}

.highlight-red {
    color: var(--accent-red);
    font-weight: 800;
}

.highlight-yellow {
    color: #ffeb3b;
    font-weight: 800;
}

.highlight-badge-green {
    background-color: var(--accent-green);
    color: #04060f;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    margin-top: 5px;
}

/* ─── CTA ─── */
.cta-box {
    margin-bottom: 10px;
}

.cta-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 14px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-green);
    color: #04060f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.2s ease;
    text-transform: none; /* Removido uppercase */
}

.btn-primary:hover {
    background: #33ff8d;
}

/* ─── IMAGEM ─── */
/* ─── PILLS (BALÕES) ─── */
.pills-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.pills-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 850px;
    margin: 0 auto;
}

.pill-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borda muito mais sutil */
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 15px;
    color: var(--text-light);
    backdrop-filter: blur(5px);
}

.pill-check {
    color: var(--accent-green);
    font-weight: 800;
}

.hero-image-container {
    margin-top: 50px;
    position: relative;
    background: transparent; /* Removido para não quebrar a camuflagem */
    min-height: 300px;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    display: block;
    margin: 0 auto;
    
    /* Camuflagem Linear Suave com o Fundo */
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    filter: brightness(0.8) contrast(1.1); /* Escurecido para mesclar melhor */
    opacity: 0.95;
    
    /* Impede que a imagem seja arrastada ou selecionada */
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* ─── COPY SECTION ─── */
.copy-section {
    margin-top: 50px;
    margin-bottom: 25px; /* Reduzido para aproximar da lista */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copy-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
}

.copy-text span {
    color: var(--accent-green);
    font-weight: 700;
}

.copy-emphasis {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-red);
    margin-top: 30px;
}

.final-cta {
    margin-top: 40px;
    margin-bottom: 60px;
}

/* ─── CHECKLIST SECTION ─── */
.checklist-section {
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.5;
}

.checklist-emoji {
    font-size: 20px;
    line-height: 1.4;
    flex-shrink: 0;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
    .main-headline { font-size: 28px; }
    .question-headline { font-size: 20px; }
    .btn-primary { width: 100%; }
}

/* ─── BLOCK R2 (LIGHT THEME) ─── */
.block-r2 {
    background-color: #bae6fd; /* Azul mais definido */
    color: #0f172a;
}

.r2-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.r2-subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 40px;
}

.highlight-r2 {
    color: #008a4a;
}

/* ─── PROOF GRID (R2) ─── */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 100px; /* Mais espaço para os badges */
}

.proof-card {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 0;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease;
}

.proof-badge {
    position: absolute;
    top: -55px; /* Movido mais para cima */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #0277bd;
    color: white;
    padding: 10px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.proof-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #0277bd;
}

.proof-card:hover {
    transform: translateY(-5px);
}

.proof-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* ─── MOBILE R2 ─── */
@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .r2-title {
        font-size: 26px;
    }
}

/* ─── BLOCK R3 (DARK THEME) ─── */
.block-r3 {
    background-color: var(--bg-color);
    color: var(--text-light);
}

.r3-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.r3-image-container {
    margin-top: 20px;
    background: transparent;
    min-height: 250px;
}

.r3-image {
    width: 100%;
    max-width: 750px;
    display: block;
    margin: 0 auto;
    
    /* Camuflagem Linear com o fundo */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    filter: brightness(0.85) contrast(1.1);
    
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.r3-copy {
    margin-top: 50px;
    max-width: 600px; /* Reduzido para centralizar melhor o bloco alinhado à esquerda */
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Alinhamento solicitado */
}

.r3-copy-text {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 10px; /* Reduzido para o efeito escadinha */
}

/* Efeito Escadinha Removido */
.r3-copy-text span {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ─── WARNING BOX ─── */
.warning-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #a32a2a;
    border-radius: 24px;
    padding: 30px 40px;
    max-width: 800px;
    margin: 60px auto 20px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(163, 42, 42, 0.3);
}

.warning-icon {
    font-size: 60px;
    line-height: 1;
}

.warning-text-main {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.warning-text-sub {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* ─── MOBILE R3 ─── */
@media (max-width: 768px) {
    .warning-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 15px;
    }
    
    .warning-icon { font-size: 50px; }
    .warning-text-main { font-size: 20px; }
}

/* ─── BLOCK R4 (LIGHT THEME) ─── */
.block-r4 {
    background-color: #bae6fd;
    color: #0f172a;
}

.r4-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1px;
    max-width: 900px;
    margin: 0 auto;
}

/* ─── BLOCK R5 (DARK — AGITAÇÃO / TEASER) ─── */
.block-r5 {
    background-color: var(--bg-color);
    color: var(--text-light);
}

.r5-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.r5-line {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.r5-line--muted {
    color: var(--text-muted);
}

.r5-line--reveal {
    color: var(--text-light);
    font-size: 34px;
    font-weight: 800;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

/* Cards do R5 — revelação do mercado escondido */
.r5-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 52px auto 0;
    text-align: left;
}

.r5-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border-subtle);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.r5-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.25);
}

.r5-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    font-size: 28px;
    margin-bottom: 18px;
}

.r5-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.35;
    margin-bottom: 10px;
}

.r5-card-title strong {
    font-weight: 800;
    color: var(--accent-green);
}

.r5-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 640px) {
    .r5-cards-grid { grid-template-columns: 1fr; }
    .r5-card { padding: 26px 22px; }
}

@media (max-width: 768px) {
    .r5-line { font-size: 22px; }
    .r5-line--reveal { font-size: 26px; }
}

/* ─── BLOCK R6 ─── */
.block-r6 {
    background: var(--bg-color);
    padding-top: 20px;
}

.r6-intro {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.r6-main-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.r6-sub {
    font-size: 22px;
    color: var(--text-light);
    font-weight: 600;
}

/* ─── BLOCK R7 (LIGHT THEME) ─── */
.block-r7 {
    background-color: #bae6fd;
    color: #0f172a;
}

.r7-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    max-width: 850px;
    margin: 0 auto 50px;
    letter-spacing: -1px;
}

.r7-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 750px;
    margin: 0 auto;
}

.r7-step-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease;
}

.r7-step-item:hover {
    transform: translateX(10px);
}

.r7-step-num {
    font-size: 13px;
    font-weight: 800;
    color: #0277bd;
    background: #e1f5fe;
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
}

.r7-step-text {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}
/* ─── BLOCK R8 (DARK THEME) ─── */
.block-r8 {
    background-color: var(--bg-color);
    color: var(--text-light);
}

.r8-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 60px;
    letter-spacing: -1px;
}

/* Módulos */
.r8-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.r8-module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 32px;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.r8-module-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.3);
}

.r8-module-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-green);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.r8-module-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-light);
}

.full-width {
    grid-column: span 2;
}

.r8-areas-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.area-pill {
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 700;
    transition: all 0.2s ease;
}

.area-pill:hover {
    background: rgba(0, 230, 118, 0.1);
    border-color: var(--accent-green);
    transform: scale(1.05);
}

/* Bônus */
.r8-bonus-wrapper {
    margin-top: 80px;
    text-align: center;
}

.r8-bonus-headline {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
}

.r8-bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.r8-bonus-item {
    background: rgba(0, 230, 118, 0.03);
    border: 1px solid rgba(0, 230, 118, 0.1);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.bonus-emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

.r8-bonus-item p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .r8-title { font-size: 28px; }
    .r8-modules-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .r8-bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .r8-module-card { padding: 24px; }
}
/* ─── BLOCK R9 (LIGHT THEME) ─── */
.block-r9 {
    background-color: #bae6fd;
    color: #0f172a;
}

.r9-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 50px;
    letter-spacing: -1px;
}

.r9-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

/* ─── IMAGEM R9 SEM CAMUFLAGEM ─── */
.r9-image-wrapper {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.03);
    min-height: 400px;
}

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

.r9-item {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease;
}

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

.r9-check {
    font-size: 20px;
    flex-shrink: 0;
}

.r9-item p {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 900px) {
    .r9-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .r9-title { font-size: 28px; }
    .r9-grid { grid-template-columns: 1fr; }
}

/* ─── BLOCK R10 (DARK THEME) ─── */
.block-r10 {
    background-color: var(--bg-color);
    color: var(--text-light);
}

.r10-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 60px;
    letter-spacing: -1px;
}

.r10-costs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.r10-cost-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.r10-x { font-size: 18px; }

.r10-cost-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.r10-emotional-box {
    margin-top: 60px;
    text-align: center;
    background: rgba(255, 61, 61, 0.05);
    border: 1px solid rgba(255, 61, 61, 0.1);
    padding: 40px;
    border-radius: 24px;
}

.r10-worst {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.r10-emotional-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
}

.r10-subtitle {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .r10-subtitle { font-size: 24px; }
}

/* ─── BLOCK R11 (OFERTA FINAL) ─── */
.block-r11 {
    background-color: #bae6fd;
    color: #0f172a;
}

.r11-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 850px;
    margin: 0 auto 60px;
    letter-spacing: -1.5px;
}

/* Card de Checkout Premium */
.checkout-card {
    background: #ffffff;
    max-width: 520px;
    margin: 0 auto 30px;
    border-radius: 24px;
    padding: 50px 40px 40px;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255,255,255,0.8);
}

.discount-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: #04060f;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
    white-space: nowrap;
}

.offer-details {
    margin-bottom: 35px;
}

.offer-intro {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-product {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
}

.offer-product span {
    color: var(--accent-green-dim);
}

.price-area {
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.price-label {
    font-size: 16px;
    color: #475569;
    margin-bottom: 15px;
    font-weight: 600;
}

.strikethrough {
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 5px;
}

.main-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #0f172a;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 800;
    margin-top: 12px;
    margin-right: 4px;
}

.amount {
    font-size: 84px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
}

.decimals {
    font-size: 24px;
    font-weight: 800;
    margin-top: 12px;
}

.installments {
    font-size: 15px;
    color: #64748b;
}

.installments strong {
    color: #0f172a;
    font-weight: 800;
}

/* Botão Glow */
.btn-glow {
    width: 100%;
    padding: 24px;
    border-radius: 12px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 230, 118, 0.2);
}

.btn-glow:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.4);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.badge-item {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.guarantee-box-mini {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.guarantee-box-mini p {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.microcopy {
    font-size: 14px;
    color: #475569;
    font-weight: 600;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .checkout-card {
        padding: 45px 25px 30px;
        margin: 0 10px;
    }
    
    .amount { font-size: 64px; }
    .r11-title { font-size: 28px; }
}

/* ─── BLOCK R12 (FAQ) ─── */
.block-r12 {
    background-color: var(--bg-color);
    color: var(--text-light);
}

.r12-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 230, 118, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .r12-title { font-size: 28px; }
    .faq-item { padding: 20px; }
    .faq-question { font-size: 16px; }
    .faq-answer { font-size: 14px; }
}

/* ─── BLOCK R13 (CONVERSA SÉRIA) ─── */
.block-r13 {
    background-color: #bae6fd;
    color: #0f172a;
}

.r13-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.r13-intro {
    font-size: 24px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 40px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.comparison-path {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.path-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0f172a;
}

.path-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.path-list li {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.path-negative {
    background: #f8fafc;
    border: 1px dashed #e2e8f0;
    box-shadow: none;
}

.path-negative .path-list li {
    color: #94a3b8;
}

.urgency-box {
    margin-top: 60px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #1e293b;
}

.r13-closing {
    font-size: 28px;
    font-weight: 800;
    margin-top: 40px;
    line-height: 1.2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .r13-title { font-size: 30px; }
    .comparison-grid { grid-template-columns: 1fr; }
    .r13-closing { font-size: 22px; }
    .comparison-path { padding: 25px; }
}

/* ─── BLOCK R14 (AUTORIDADE) ─── */
.block-r14 {
    background-color: var(--bg-color);
    color: var(--text-light);
}

.r14-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.authority-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 30px 20px;
    border-radius: 20px;
    transition: var(--transition);
}

.authority-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.2);
}

.auth-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 15px;
}

.authority-item p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

/* Centraliza o 7º item (Atualização constante) abaixo da 2ª coluna no Desktop */
@media (min-width: 769px) {
    .authority-grid .authority-item:last-child {
        grid-column: 2;
    }
}

.r14-focus-box {
    margin-top: 80px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.r14-dream-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.r14-focus-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

.r14-focus-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.r14-focus-tags span {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-green);
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 800;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

@media (max-width: 768px) {
    .r14-title { font-size: 30px; }
    .authority-grid { grid-template-columns: repeat(2, 1fr); }
    .r14-focus-title { font-size: 26px; }
    .r14-focus-tags span { font-size: 16px; }
}

/* ─── AJUSTES DE RESPONSIVIDADE UNIVERSAL ─── */
@media (max-width: 768px) {
    .section-padding { padding: 40px 0; }
    
    .container { padding: 0 20px; }

    /* Headlines Hero */
    .hero-title { font-size: 32px !important; }
    .hero-subtitle { font-size: 18px !important; }
    .question-headline { font-size: 18px !important; }

    /* Grids */
    .r8-grid, .r10-costs-grid, .r12-faq-grid, .r14-grid, .comparison-grid, .r16-faq-grid, .r8-bonus-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Itens Emocionais (R10) */
    .r10-emotional-items {
        flex-direction: column !important;
        gap: 15px !important;
        font-size: 18px !important;
    }

    /* Checkout Card (R11) */
    .checkout-card {
        padding: 40px 20px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .offer-product {
        font-size: 20px !important;
    }

    .amount { font-size: 60px !important; }

    /* Botões */
    .btn-primary { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px !important; }
    
    /* Garantir que nada quebre a tela */
    .container { padding: 0 16px; }

    .r11-title { font-size: 24px !important; }
}

/* Prevenção final de overflow horizontal */
html, body {
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

* {
    max-width: 100vw;
}

/* ─── BLOCK R15 (RECAP FINAL) ─── */
.block-r15 {
    background-color: #bae6fd;
    color: #0f172a;
}

.r15-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.r15-recap-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.r15-recap-item {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.r15-cta-box {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .r15-title { font-size: 28px; }
    .r15-recap-container { gap: 10px; }
    .r15-recap-item { font-size: 14px; padding: 8px 16px; }
}

/* ─── BLOCK R16 (FAQ COMPACTO) ─── */
.block-r16 {
    background-color: var(--bg-color);
    color: var(--text-light);
}

.r16-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

.r16-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.r16-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 24px;
    border-radius: 16px;
    text-align: left;
}

.r16-q {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
}

.r16-a {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-green);
}

@media (max-width: 768px) {
    .r16-faq-grid { grid-template-columns: 1fr; }
    .r16-title { font-size: 26px; }
}

/* ─── INTEGRATED FOOTER REFINADO ─── */
.integrated-footer {
    margin-top: 80px;
    padding-bottom: 40px;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 40px;
}

.footer-mini-brand {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 25px;
    opacity: 0.6;
}

.footer-main-links {
    margin-bottom: 30px;
}

.footer-link-item {
    color: var(--accent-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-link-item:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.footer-legal-container {
    max-width: 700px;
    margin: 0 auto;
}

.footer-disclaimer-text {
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-muted);
    opacity: 0.5;
    margin-bottom: 15px;
}

.footer-disclaimer-text strong {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-copy {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .integrated-footer { margin-top: 50px; }
    .footer-link-item { font-size: 12px; }
}
