/* ============================================
   PROTOCOL 47 - MAGA PATRIOT STYLE
   Mobile-First | American Theme | Maximum Conversion
   Red, White & Blue | Eagles & Flags
   ============================================ */

/* ===== GLOBAL VARIABLES - MAGA THEME ===== */
:root {
    /* Primary Colors - American Patriot Theme */
    --bg-dark: #0a1628;
    --bg-card: #0f1d32;
    --bg-card-hover: #152642;
    
    /* Action Colors - Stars & Stripes */
    --yellow-alert: #FFD700; /* Gold for highlights */
    --yellow-dark: #DAA520;
    --green-military: #002868; /* Old Glory Blue */
    --green-light: #3C6EB4;
    --green-glow: rgba(0, 40, 104, 0.5);
    
    /* Alert Colors - Old Glory Red */
    --red-danger: #BF0A30;
    --red-dark: #8B0000;
    
    /* Neutral Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #C0C0C0;
    --text-muted: #8899AA;
    
    /* Special Colors - Patriot */
    --gold: #FFD700;
    --silver: #C0C0C0;
    --diamond: #3C6EB4;
    
    /* Tipografia */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    
    /* Bordas */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transições */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET E BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    min-height: 100dvh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scanlines effect (TV antiga) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

/* ===== BARRA DE PROGRESSO ===== */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-military), var(--green-light));
    transition: width var(--transition-normal);
    box-shadow: 0 0 10px var(--green-glow);
}

.progress-text {
    position: absolute;
    right: var(--spacing-md);
    top: var(--spacing-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-light);
    text-shadow: 0 0 10px var(--green-glow);
}

/* ===== CONTAINER PRINCIPAL ===== */
.app-container {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}

/* ===== TELAS (SCREENS) ===== */
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: none;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.screen.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.screen.exit {
    transform: translateX(-100%);
}

/* Permitir scroll na tela de oferta */
#screen-offer {
    min-height: 100vh;
}

#screen-offer .offer-container {
    min-height: 100vh;
}

/* ===== TELA INICIAL (HERO) ===== */
#screen-start {
    position: relative;
    background: var(--bg-dark);
}

#screen-start::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/Donald_Trump_official_portrait.jpg') center top / cover no-repeat;
    filter: grayscale(10%) contrast(1.1) brightness(0.9);
    z-index: 0;
}

#screen-start::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 11, 10, 0.4) 0%,
        rgba(10, 11, 10, 0.7) 40%,
        rgba(10, 11, 10, 0.95) 70%,
        rgba(10, 11, 10, 1) 100%
    );
    z-index: 1;
}

.hero-bg {
    display: none;
}

.hero-image {
    display: none;
}

.hero-overlay {
    display: none;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: var(--spacing-2xl) var(--spacing-lg);
    text-align: center;
    gap: var(--spacing-md);
}

/* Badge de Alerta - Ajuste de Contraste */
.badge-alert {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(220, 20, 60, 0.15);
    border: 1px solid var(--red-danger);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff; /* Texto Branco para leitura máxima */
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.2);
    animation: pulse-border 2s infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--red-danger);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--red-danger); /* Glow no ponto */
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(220, 20, 60, 0); }
}

/* Headlines */
.headline {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight-yellow {
    color: var(--yellow-alert);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.highlight-green {
    color: var(--green-light);
    text-shadow: 0 0 20px var(--green-glow);
}

.highlight-red {
    color: var(--red-danger);
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.underline-effect {
    position: relative;
    display: inline-block;
}

.underline-effect::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red-danger);
}

.subheadline {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 400px;
}

/* Security Badges */
.security-badges {
    display: flex;
    gap: var(--spacing-md);
}

.sec-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sec-badge svg {
    color: var(--green-light);
}

/* INPUT DE SEGURANÇA (NOVO) */
.input-group-security {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
    text-align: left;
}

.input-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--yellow-alert);
    letter-spacing: 1px;
    margin-left: 4px;
}

.input-security {
    width: 100%;
    background: #1a1a1a; /* Fundo mais claro para contraste */
    border: 2px solid #333; /* Borda mais grossa */
    border-radius: var(--radius-lg);
    padding: 16px;
    color: #fff; /* Texto branco puro */
    font-family: 'Courier New', monospace;
    font-size: 1.25rem; /* Fonte maior para idosos */
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    transition: all var(--transition-fast);
    outline: none;
}

.input-security:focus {
    border-color: var(--yellow-alert);
    background: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.input-security::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Shake Animation para erro */
.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    border-color: var(--red-danger) !important;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* Botões */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 360px;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, var(--yellow-alert), var(--yellow-dark));
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
    min-height: 60px;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-pulse {
    animation: btn-glow 2s infinite;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--text-muted);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== TELAS DE PERGUNTAS ===== */
.question-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: var(--spacing-xl) var(--spacing-lg);
    padding-top: 60px;
    padding-bottom: var(--spacing-2xl);
    text-align: center;
}

.question-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-light);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(34, 139, 34, 0.1);
    border: 1px solid rgba(34, 139, 34, 0.3);
    border-radius: 100px;
}

.question-text {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Respostas */
.answers-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
    max-width: 400px;
    margin-bottom: var(--spacing-xl);
}

.btn-answer {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    width: 100%;
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
    min-height: 80px;
}

.btn-answer:active {
    transform: scale(0.98);
}

.btn-positive {
    border-color: rgba(34, 139, 34, 0.3);
}

.btn-positive:hover, .btn-positive:focus {
    border-color: var(--green-light);
    background: rgba(34, 139, 34, 0.1);
}

.btn-negative {
    border-color: rgba(102, 102, 102, 0.3);
    opacity: 0.6;
}

.btn-negative:hover {
    border-color: var(--red-danger);
    opacity: 1;
}

.answer-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.btn-positive .answer-icon {
    background: rgba(34, 139, 34, 0.2);
    color: var(--green-light);
}

.btn-negative .answer-icon {
    background: rgba(220, 20, 60, 0.2);
    color: var(--red-danger);
}

.answer-text {
    flex: 1;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.avatars {
    display: flex;
}

.avatar {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-military), var(--green-light));
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(34, 139, 34, 0.1);
    border: 1px solid rgba(34, 139, 34, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.813rem;
    color: var(--green-light);
    max-width: 400px;
}

.comparison-box {
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--yellow-alert);
    max-width: 400px;
}

/* ===== TELA DE LOADING ===== */
.loading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: var(--spacing-lg);
    padding-top: 60px;
}

.scanner-ring {
    width: 150px;
    height: 150px;
    border: 3px solid rgba(34, 139, 34, 0.2);
    border-radius: 50%;
    position: relative;
    margin-bottom: var(--spacing-xl);
    animation: scanner-pulse 2s infinite;
}

.scanner-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-top-color: var(--green-light);
    border-radius: 50%;
    animation: scanner-rotate 1.5s linear infinite;
}

.scanner-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-light), transparent);
    transform-origin: left center;
    animation: scanner-sweep 2s linear infinite;
}

@keyframes scanner-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--green-glow); }
    50% { box-shadow: 0 0 40px var(--green-glow); }
}

@keyframes scanner-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scanner-sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.status-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-light);
    margin-bottom: var(--spacing-lg);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.step {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.step.active {
    color: var(--text-primary);
}

.step.completed {
    color: var(--green-light);
}

.step.completed .step-icon {
    color: var(--green-light);
}

.step-icon {
    font-size: 0.75rem;
}

/* ===== TELA DE RESULTADO ===== */
.result-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: var(--spacing-lg);
    padding-top: 60px;
    text-align: center;
}

.approved-badge {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 139, 34, 0.1);
    border: 3px solid var(--green-light);
    border-radius: 50%;
    margin-bottom: var(--spacing-lg);
    animation: approved-pop 0.5s ease-out;
}

.approved-badge.badge-warning {
    border-color: var(--red-danger);
    background: rgba(220, 20, 60, 0.1);
    animation: pulse-border 1s infinite;
}

.approved-badge.badge-warning svg {
    color: var(--red-danger);
}

.text-red {
    color: var(--red-danger) !important;
}

.bg-red {
    background-color: var(--red-danger) !important;
}

.result-warning-box {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--red-danger);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
    color: #ffcccc;
    font-size: 0.9rem;
    text-align: left;
}

@keyframes approved-pop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.result-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.result-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xl);
}

.result-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--yellow-alert);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== PÁGINA DE OFERTA ===== */
.offer-container {
    width: 100%;
    padding-bottom: 80px; /* Espaço para o sticky button */
}

/* Barra de Escassez */
.scarcity-bar {
    background: #000;
    padding: var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid #333;
}

.scarcity-text {
    font-size: 0.8rem;
    color: #ff4444;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    letter-spacing: 1px;
}

.scarcity-bar-bg {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    margin: var(--spacing-xs) 0;
}

.scarcity-bar-fill {
    width: 94%;
    height: 100%;
    background: linear-gradient(90deg, #ff4444, #ff6666);
    animation: pulse-bar 2s infinite;
}

@keyframes pulse-bar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.scarcity-capacity {
    font-size: 0.7rem;
    color: #888;
    margin-top: var(--spacing-xs);
}

/* Tag de Aprovado */
.approved-tag {
    background: var(--green-military);
    color: white;
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.offer-hero {
    height: auto;
    max-height: none;
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(to bottom, rgba(10,11,10,0.8), var(--bg-dark)), url('../img/3.webp');
    background-size: cover;
    background-position: center;
}

.offer-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.offer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 11, 10, 0.3) 0%,
        rgba(10, 11, 10, 0.7) 60%,
        rgba(10, 11, 10, 1) 100%
    );
}

.offer-hero-content {
    position: relative;
    bottom: auto;
    padding-top: var(--spacing-lg);
    width: 100%;
    padding: 0 var(--spacing-lg);
    text-align: center;
}

.offer-headline {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.offer-subheadline {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Manifesto */
.manifesto {
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
}

.manifesto h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.manifesto p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.manifesto-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    text-align: left;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Prova Social na Oferta */
.social-proof-box {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proof-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(34, 139, 34, 0.05);
    border-left: 3px solid var(--green-military);
    border-radius: var(--radius-md);
    text-align: left;
}

.proof-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.proof-content {
    flex: 1;
}

.proof-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    font-style: italic;
}

.proof-author {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Bonus Stack */
.bonus-stack {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    text-align: left;
}

.bonus-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

.bonus-subtitle {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.bonus-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bonus-img {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--text-muted);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
}

.bonus-content h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.bonus-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    margin-left: 0 !important; /* Override manifesto p */
    max-width: none !important;
}

.bonus-value {
    font-size: 0.7rem;
    color: var(--green-light);
    font-weight: 700;
    text-transform: uppercase;
}

/* Seção de Planos - Updates */
.plans-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
}

.plans-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.plans-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* Cards de Plano */
.plan-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.plan-featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--bg-card), rgba(255, 215, 0, 0.1));
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255, 215, 0, 0.2);
    z-index: 2;
}

.plan-elite {
    border-color: var(--diamond);
    background: linear-gradient(135deg, var(--bg-card), rgba(185, 242, 255, 0.05));
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: var(--spacing-md);
}

.badge-silver {
    background: linear-gradient(135deg, #C0C0C0, #808080);
    color: var(--bg-dark);
}

.badge-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--bg-dark);
}

.badge-diamond {
    background: linear-gradient(135deg, #B9F2FF, #87CEEB);
    color: var(--bg-dark);
}

.plan-header {
    margin-bottom: var(--spacing-md);
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: var(--spacing-sm);
}

.plan-price .currency {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.plan-price .value {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--text-primary);
}

.plan-price .cents {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.plan-anchor {
    font-size: 0.75rem;
    color: var(--yellow-alert);
    margin-bottom: var(--spacing-lg);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li span {
    color: var(--green-light);
    font-weight: 700;
}

.btn-plan {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--green-military);
    color: white;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 56px;
}

.btn-plan:active {
    transform: scale(0.98);
}

.btn-plan-featured {
    background: linear-gradient(135deg, var(--gold), var(--yellow-dark));
    color: var(--bg-dark);
    animation: btn-glow 2s infinite;
}

.btn-plan-elite {
    background: linear-gradient(135deg, var(--diamond), #87CEEB);
    color: var(--bg-dark);
}

/* Urgência */
.urgency-section {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-lg);
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: var(--radius-lg);
}

.urgency-icon {
    font-size: 1.5rem;
}

.urgency-section p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Garantia */
.guarantee-section {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.guarantee-section h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--green-light);
}

.guarantee-section p {
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
}

/* FAQ */
.faq-section {
    padding: var(--spacing-xl) var(--spacing-lg);
}

.faq-section h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    cursor: pointer;
    font-weight: 500;
}

.faq-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer */
.offer-footer {
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.footer-disclaimer {
    font-size: 0.625rem !important;
    opacity: 0.5;
}

/* ===== BOTÃO FLUTUANTE STICKY ===== */
.sticky-cta {
    position: fixed !important; /* Forçar fixação */
    bottom: -120px; /* Escondido inicialmente */
    left: 0;
    right: 0;
    width: 100vw; /* Garantir largura total */
    background: linear-gradient(to top, rgba(10, 11, 10, 0.98), rgba(10, 11, 10, 0.95));
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 2147483647; /* Z-Index máximo possível */
    transition: bottom var(--transition-normal);
    border-top: 2px solid var(--yellow-alert);
}

.sticky-cta.visible {
    bottom: 0 !important; /* Mostrar forçadamente */
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    max-width: 600px;
    margin: 0 auto;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sticky-cta-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--yellow-alert);
    line-height: 1.2;
}

.sticky-cta-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sticky-cta-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--yellow-alert), var(--yellow-dark));
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
    animation: btn-glow 2s infinite;
}

.sticky-cta-btn:active {
    transform: scale(0.95);
}

@media (max-width: 480px) {
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sticky-cta-btn {
        width: 100%;
    }
}

/* ===== TELA REPROVADO ===== */
.rejected-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: var(--spacing-lg);
    padding-top: 60px;
    text-align: center;
}

.rejected-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
}

.rejected-container h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--red-danger);
    margin-bottom: var(--spacing-md);
}

.rejected-container p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
}

/* ===== MEDIA QUERIES (Desktop Enhancement) ===== */
@media (min-width: 768px) {
    .headline {
        font-size: 3.5rem;
    }
    
    .question-text {
        font-size: 2.25rem;
    }
    
    .offer-headline {
        font-size: 3.5rem;
    }
    
    .plans-section {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .manifesto {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Desabilitar seleção de texto em botões */
button {
    user-select: none;
    -webkit-user-select: none;
}

/* Smooth scroll para iOS */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* VSL Container (Video Sales Letter) */
.vsl-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 20;
}

.vsl-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    border-radius: var(--radius-lg);
    border: 1px solid var(--text-muted);
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    overflow: hidden;
}

.vsl-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--red-danger);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
    padding-left: 5px; /* Visual adjustment */
    margin-bottom: var(--spacing-md);
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 0 10px rgba(220, 20, 60, 0.3);
}

.vsl-overlay p {
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Ajuste do Hero para acomodar o VSL */
.offer-hero {
    height: auto;
    max-height: none;
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(to bottom, rgba(10,11,10,0.8), var(--bg-dark)), url('../img/3.webp');
    background-size: cover;
    background-position: center;
}

.offer-hero-content {
    position: relative;
    bottom: auto;
    padding-top: var(--spacing-lg);
}

/* SELETOR DE TIPO DE INPUT (NOVO) */
.input-type-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    width: 100%;
}

.btn-type {
    flex: 1;
    padding: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-type:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.btn-type.active {
    background: rgba(255, 215, 0, 0.15); /* Amarelo Tático */
    border-color: var(--yellow-alert);
    color: var(--yellow-alert);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

/* Ajuste no input group para acomodar o seletor */
.input-group-security {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 4px; /* Reduzir gap interno */
    margin-bottom: 8px;
    text-align: left;
}

/* =========================================
   ESTILO TERMINAL SCANNER (HACKER VIBE)
   ========================================= */
.scanner-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #004400;
    padding-bottom: 10px;
}

.blink-dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.timer-container {
    background: #111;
    border: 1px solid #333;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 4px;
}

.timer-label {
    display: block;
    color: #888;
    font-size: 0.7rem;
    margin-bottom: 2px;
}

.timer-clock {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.terminal-window {
    background: #000;
    border: 1px solid #00ff00;
    height: 300px;
    overflow: hidden;
    position: relative;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    text-align: left;
    border-radius: 4px;
    box-shadow: inset 0 0 20px rgba(0, 255, 0, 0.1);
    margin-bottom: 20px;
}

.terminal-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.log-line {
    margin-bottom: 5px;
    color: #00ff00;
    opacity: 0.8;
}

.log-line.error { color: #ff3333; }
.log-line.warning { color: #ffff00; }
.log-line.highlight { color: #fff; font-weight: bold; background: rgba(0, 255, 0, 0.1); }

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 10px #00ff00;
    animation: scan 3s linear infinite;
    z-index: 5;
    pointer-events: none;
}

.progress-container-new {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar-fill-new {
    height: 100%;
    background: #00ff00;
    width: 0%;
    transition: width 0.5s linear;
}

@keyframes scan {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}