/* ==========================================
   CSS RESET & VARIABLES
   ========================================== */
:root {
    --bg-base: #030303;
    --bg-surface: #0a0a0a;
    --bg-surface-elevated: #111111;

    --color-blue: #0056b3;
    --color-blue-hover: #007bff;
    --color-blue-dark: #004085;

    --color-gold: #004085;
    --color-gold-hover: #b8860b;
    --color-gold-light: #007bff;

    --color-text: #f0f0f0;
    --color-text-muted: #888888;

    --color-border: #1f1f1f;
    --color-border-glow: rgba(0, 123, 255, 0.4);

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-base);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px;
    /* Space for Sticky CTA */
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

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

.text-blue {
    color: var(--color-blue);
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.text-gold {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
}

.text-green {
    color: #00ff7f;
}

.font-bold {
    font-weight: 800;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-6 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.inline-block {
    display: inline-block;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* ==========================================
   CORE BUTTONS (CTA)
   ========================================== */
.btn-core {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.25rem 2rem;
    cursor: pointer;
    line-height: 1;
    border: 1px solid #007bff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), inset 0 2px 5px rgba(255, 255, 255, 0.4);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 0);
    transition: all 0.2s ease;
}

.btn-core:active {
    transform: translateY(2px);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.8);
}

.btn-core:hover {
    background: var(--color-blue-hover);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.75rem 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--bg-base);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

.pulse-anim {
    animation: ctaPulseCore 2s infinite;
}

@keyframes ctaPulseCore {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 30px rgba(0, 123, 255, 0.9), 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
    }
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 123, 255, 0.1);
    border-left: 3px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.35rem 1rem;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==========================================
   1. TOPO FIXO E LIMPO
   ========================================== */
.topbar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 10;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.05em;
}

.brand-icon {
    color: var(--color-blue);
    font-size: 1.75rem;
}

/* ==========================================
   2. HERO TOTALMENTE DIFERENTE
   ========================================== */
.hero-section {
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, #000815 0%, var(--bg-base) 80%);
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.elite-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--color-border);
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.elite-badge i {
    color: var(--color-gold);
    font-size: 1rem;
}

.hero-title {
    font-size: 1.85rem;
    /* Ajustado para encaixar melhor no celular */
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    max-width: 500px;
}

.hero-benefits {
    list-style: none;
    margin: 1.5rem 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.hero-benefits i {
    font-size: 1.25rem;
}

.micro-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.micro-proof .dot {
    opacity: 0.3;
}

/* Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.tech-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--color-blue);
    filter: blur(100px);
    opacity: 0.2;
}

.mockup-frame {
    position: relative;
    z-index: 1;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.mockup-img {
    width: 100%;
    max-width: 500px;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    filter: sepia(0.3) hue-rotate(320deg) saturate(1.5) brightness(0.8);
    /* Dark/Red tint */
}

/* HUD Overlay Elements */
.hud-overlay {
    position: absolute;
    inset: 0.5rem;
    pointer-events: none;
}

.hud-box {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(4px);
}

.hud-box.top-left {
    top: 1rem;
    left: 1rem;
    border-left: 2px solid var(--color-blue);
}

.hud-box.bottom-right {
    bottom: 1rem;
    right: 1rem;
    border-right: 2px solid var(--color-gold);
}


/* ==========================================
   3. FAIXA IMPACTO
   ========================================== */
.impact-bar {
    background: var(--color-blue);
    color: #fff;
    padding: 2.5rem 1.5rem;
    position: relative;
}

/* Angular Cut on top/bottom */
.impact-bar::before,
.impact-bar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 10px;
    background: inherit;
}

.impact-bar::before {
    top: -10px;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.impact-bar::after {
    bottom: -10px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.impact-text {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.impact-text .text-blue {
    color: #000;
    text-shadow: none;
}

.impact-subtext {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    max-width: 700px;
    margin: 1rem auto 0;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   4. DOR 
   ========================================== */
.pain-section {
    background: var(--bg-surface);
}

.pain-modules {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pain-module {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--color-border);
    padding: 2rem 1.5rem;
    position: relative;
    border-left: 4px solid var(--color-blue);
}

.pain-glitch-icon {
    font-size: 2.5rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.pain-module h3 {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pain-module p {
    color: var(--color-text-muted);
}

/* ==========================================
   5. SOLUÇÃO PREMIUM
   ========================================== */
.solution-section {
    background: radial-gradient(circle at center, rgba(0, 123, 255, 0.05), var(--bg-base) 60%);
    border-top: 1px dashed var(--color-border);
    border-bottom: 1px dashed var(--color-border);
}

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

/* ==========================================
   6. COMO FUNCIONA TÁTICO
   ========================================== */
.tactical-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.t-step {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--color-border);
    padding: 2rem;
    width: 100%;
    position: relative;
}

.t-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-base);
    -webkit-text-stroke: 1px var(--color-border);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    z-index: 0;
}

.t-content {
    position: relative;
    z-index: 1;
}

.t-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.t-content p {
    color: var(--color-text-light);
}

.t-divider {
    height: 30px;
    width: 2px;
    background: var(--color-border);
}

/* ==========================================
   7. MÓDULOS (BENEFÍCIOS)
   ========================================== */
.modules-section {
    background: var(--bg-surface);
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.mod-card {
    display: flex;
    gap: 1rem;
    background: var(--bg-base);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    border-radius: 4px;
}

.mod-icon {
    font-size: 2rem;
    color: var(--color-blue);
    flex-shrink: 0;
    margin-top: -0.2rem;
}

.mod-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.mod-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ==========================================
   8. WALL OF PROOF (FEEDBACKS)
   ========================================== */
.wall-of-proof-section {
    background: radial-gradient(circle at center top, rgba(0, 123, 255, 0.05), var(--bg-base) 80%);
}

.proof-masonry {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.proof-item {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    position: relative;
}

.proof-item::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 4rem;
    font-family: serif;
    font-weight: 900;
    color: var(--color-border);
    line-height: 1;
    z-index: 0;
}

.p-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.p-name {
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
}

.p-stars {
    color: var(--color-gold);
    font-size: 1rem;
}

.proof-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.highlight-proof {
    border: 1px solid var(--color-gold);
    background: rgba(0, 123, 255, 0.05);
}

.proof-team-msg {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* ==========================================
   9. STATUS PAINEL (NUMBERS)
   ========================================== */
.status-panel-section {
    background: var(--bg-surface);
    border-top: 2px solid var(--color-blue);
    border-bottom: 2px solid var(--color-blue);
}

.status-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.sp-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.sp-box:last-child {
    border-bottom: none;
}

.sp-icon {
    font-size: 2.5rem;
    color: var(--color-blue);
    opacity: 0.8;
}

.sp-data {
    display: flex;
    flex-direction: column;
}

.sp-val {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.sp-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ==========================================
   10. OFERTA MATADORA
   ========================================== */
.offer-section {
    background: var(--bg-base);
}

.pricing-deck {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 900px) {
    .pricing-deck {
        flex-direction: row;
        align-items: stretch;
    }
}

.p-card {
    border-radius: 20px;
    background: rgba(0, 10, 25, 0.4);
    /* Fundo glassmorphism azul */
    border: 1px solid rgba(0, 123, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 400px;
    box-shadow: inset 0 0 20px rgba(0, 123, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.p-card:hover {
    border-color: rgba(0, 123, 255, 0.6);
    box-shadow: inset 0 0 20px rgba(0, 123, 255, 0.1), 0 8px 40px rgba(0, 123, 255, 0.25);
    transform: translateY(-5px);
}

.p-head h3 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.p-head p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.p-price {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px dashed var(--color-border);
    border-bottom: 1px dashed var(--color-border);
    line-height: 1;
}

.p-curr {
    font-size: 1.25rem;
    font-weight: 700;
    vertical-align: top;
    margin-top: 0.4rem;
    display: inline-block;
}

.p-amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.8;
}

.p-cent {
    font-size: 1.25rem;
    font-weight: 700;
}

.p-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    text-align: left;
}

.p-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.p-list i {
    margin-top: 0.1rem;
    font-size: 1.1rem;
}

.p-list .p-disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

/* Elite Card Highlight */
.p-elite {
    border-color: var(--color-gold);
    background: rgba(40, 30, 0, 0.6);
    /* Gold Premium Escuro */
    box-shadow: inset 0 0 30px rgba(0, 123, 255, 0.1), 0 15px 50px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.p-elite:hover {
    border-color: var(--color-gold-light);
    box-shadow: inset 0 0 40px rgba(0, 123, 255, 0.2), 0 15px 50px rgba(0, 0, 0, 0.9);
}

@media (min-width: 900px) {
    .p-elite {
        transform: scale(1.05);
        /* Pula um pouco pra frente */
        margin: 0 -15px;
        /* Sobrepõe os cantos dos cards paralelos */
    }

    .p-elite:hover {
        transform: scale(1.08) translateY(-5px);
    }
}

.p-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-gold) 0%, #00bfff 100%);
    color: #000;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    white-space: nowrap;
}

.p-mini-tag {
    background: rgba(0, 123, 255, 0.1);
    color: var(--color-gold);
    padding: 0.2rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

/* ==========================================
   11. DIFERENCIAL FAIXA
   ========================================== */
.diff-bar {
    background: var(--color-blue);
    padding: 3rem 1.5rem;
}

.diff-bar h2 {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.diff-bar p {
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ==========================================
   12. GARANTIA 
   ========================================== */
.guarantee-elite {
    background: var(--bg-surface);
}

.g-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border: 1px solid var(--color-border);
    background: var(--bg-base);
    padding: 2.5rem 1.5rem;
}

.g-icon {
    font-size: 4rem;
    color: var(--color-gold);
    line-height: 1;
}

.g-title {
    font-size: 1.5rem;
    font-weight: 900;
}

.g-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.g-link {
    color: var(--color-gold);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.g-link:hover {
    text-decoration: underline;
}

/* ==========================================
   13. FAQ 
   ========================================== */
.faq-elite {
    background: var(--bg-base);
}

.faq-wrap {
    border-top: 1px solid var(--color-border);
}

.faq-block {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
    border-radius: 0;
    background: transparent;
    transition: all 0.2s ease;
}

.faq-block:hover {
    border-bottom-color: rgba(0, 123, 255, 0.4);
}

.faq-top {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.25rem 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-top i {
    color: var(--color-blue);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-bot {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-bot p {
    padding: 0 0.5rem 1.25rem 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-block.faq-open .faq-top i {
    transform: rotate(45deg);
    color: var(--color-white);
}

/* ==========================================
   14. CTA FINAL 
   ========================================== */
.final-cta {
    background: radial-gradient(circle at center top, #000a1a 0%, var(--bg-base) 80%);
    border-top: 1px solid var(--color-border);
}

.final-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.final-sub {
    font-size: 1.05rem;
    color: var(--color-text-light);
}

.final-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.final-badges i {
    color: var(--color-gold);
    font-size: 1rem;
}

/* ==========================================
   15. RODAPÉ 
   ========================================== */
.footer {
    background: #000;
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.f-brand {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.f-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.f-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

.f-copy {
    font-size: 0.75rem;
    color: #444;
}

/* ==========================================
   STICKY MOBILE
   ========================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--color-border);
    backdrop-filter: blur(5px);
    z-index: 999;
    transform: translateY(100%);
    transition: 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

/* ==========================================
   ANIMATIONS (MOBILE FRIENDLY)
   ========================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.floating-anim {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVO (DESKTOP)
   ========================================== */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .hidden-mobile {
        display: inline-flex;
    }

    .sticky-cta {
        display: none !important;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1.2;
    }

    .hero-visual {
        flex: 1;
    }

    .hero-title {
        font-size: 3rem;
    }

    .impact-text {
        font-size: 2.2rem;
    }

    .pain-modules {
        flex-direction: row;
    }

    .tactical-flow {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }

    .t-divider {
        width: 30px;
        height: 2px;
        align-self: center;
        margin: 0 -20px;
        z-index: 2;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Masonry fake effect using CSS Columns */
    .proof-masonry {
        display: block;
        column-count: 3;
        column-gap: 1rem;
    }

    .proof-item {
        break-inside: avoid;
        margin-bottom: 1rem;
    }

    .status-panel-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sp-box {
        border-bottom: none;
        border-right: 1px solid var(--color-border);
        justify-content: center;
    }

    .sp-box:last-child {
        border-right: none;
    }

    .pricing-deck {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .p-elite {
        transform: scale(1.05);
        z-index: 2;
        margin: 0 -10px;
    }

    .g-box {
        flex-direction: row;
        text-align: left;
        padding: 3rem;
    }

    .final-title {
        font-size: 2.5rem;
    }

    .pain-module,
    .t-step {
        text-align: left;
    }
}

/* ==========================================
   PREMIUM GLASSMORPHISM & RED GLOW OVERRIDES
   ========================================== */
:root {
    --color-blue: #0056b3;
    --color-blue-hover: #007bff;
    --color-blue-dark: #004085;
    --color-border-glow: rgba(0, 123, 255, 0.4);
}

.text-blue {
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* Arredondamento Moderno e Gradientes para Botões */
.btn-core {
    border-radius: 12px;
    clip-path: none;
    border: 1px solid #007bff;
    background: linear-gradient(90deg, #007bff 0%, #004085 100%);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-core:active {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.8);
    transform: translateY(2px);
}

.btn-outline {
    border-radius: 12px;
}

.btn-gold {
    border-radius: 12px;
    clip-path: none;
    border: 1px solid #007bff;
    color: #000a1a;
    background: linear-gradient(90deg, #004085 0%, #00bfff 100%);
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.6), inset 0 2px 5px rgba(255, 255, 255, 0.4);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.25rem 2rem;
    cursor: pointer;
    text-shadow: 0px 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-gold:active {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.8);
    transform: translateY(2px);
}

@keyframes ctaPulseCore {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 30px rgba(0, 123, 255, 0.9), 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
    }
}

.pulse-anim-gold {
    animation: ctaPulseGold 2s infinite;
}

@keyframes ctaPulseGold {
    0% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(0, 123, 255, 0.6);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 0 40px rgba(0, 123, 255, 0.9), 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(0, 123, 255, 0.6);
    }
}

/* Glassmorphism nas caixas de texto com escrita */
.pain-module,
.t-step,
.mod-card,
.proof-item,
.sp-box,
.p-card,
.g-box,
.mockup-frame {
    border-radius: 16px;
    background: rgba(0, 10, 25, 0.4);
    /* Fundo colorido translúcido azul */
    border: 1px solid rgba(0, 123, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 0 20px rgba(0, 123, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover interativo nos modulos e caixas */
.pain-module:hover,
.t-step:hover,
.mod-card:hover {
    border-color: rgba(0, 123, 255, 0.6);
    box-shadow: inset 0 0 20px rgba(0, 123, 255, 0.1), 0 8px 40px rgba(0, 123, 255, 0.25);
    transform: translateY(-5px);
}

/* Módulo específico de dor (Pain) com marca lateral e vidro */
.pain-module {
    border: 1px solid rgba(0, 123, 255, 0.2);
    text-align: center;
}

/* DESIGN INOVADOR CAIXA "NÃO É DESCULPA" (Impact Bar Transformado em Texto Premium) */
.impact-bar {
    padding: 3rem 1.5rem;
    position: relative;
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.impact-bar::after {
    display: none;
}


@media (min-width: 768px) {
    .impact-bar {
        margin: 0 auto;
        max-width: 1000px;
    }
}

.impact-bar::before {
    display: none;
    /* remove cortes angulares do top/bottom originais */
}

/* Adequando texto do "Impact Bar" escuro para combinar com o fundo do vidro tech */
.impact-text .text-black {
    color: var(--color-blue);
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
}

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

/* Arredondamento extra em selos/badges */
.hud-box.top-left,
.hud-box.bottom-right {
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.elite-badge,
.badge-accent,
.p-tag,
.p-mini-tag {
    border-radius: 30px;
}

.p-elite {
    border-color: var(--color-gold);
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.2), inset 0 0 20px rgba(0, 123, 255, 0.05);
}

/* ==========================================
   SIMULADOR VIP MOD MENU (LEGIT.SOUSA)
   ========================================== */
.simulator-section {
    background: var(--bg-surface);
}

.mod-menu-frame {
    background: #000;
    width: 340px;
    max-width: 100%;
    border-radius: 6px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    /* Dark outer border */
}

/* Header */
.mod-header {
    background: #0056b3;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mod-title {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.mod-close {
    font-size: 16px;
    cursor: pointer;
    color: #fff;
}

/* Tabs */
.mod-tabs {
    display: flex;
    padding: 8px 8px 0;
    gap: 6px;
    background: #000;
    border-bottom: 1px solid #0056b3;
}

.mod-tab {
    background: #0056b3;
    color: #fff;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: bold;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.mod-tab.active {
    background: #0056b3;
}

/* Content Area */
.mod-content {
    padding: 12px;
    text-align: left;
}

/* Grid for Checkboxes */
.mod-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0px;
}

/* Custom Checkboxes */
.mod-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
    color: #ddd;
}

.mod-checkbox input {
    display: none;
}

.mod-box {
    width: 22px;
    height: 22px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    /* hidden by default */
    font-size: 16px;
}

.mod-checkbox input:checked+.mod-box {
    color: #0056b3;
    /* Red checkmark */
}

/* Divider */
.mod-divider {
    height: 1px;
    background: #0056b3;
    margin: 12px 0;
}

/* Rows (Slider, Select) */
.mod-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mod-label {
    font-size: 13px;
    color: #ddd;
    min-width: 90px;
    text-align: left;
}

.mod-label-full {
    font-size: 13px;
    color: #ddd;
    margin-bottom: 8px;
}

/* Slider Custom */
.mod-slider-container {
    flex: 1;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 2px;
    position: relative;
    background: #111;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mod-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.mod-slider-val {
    font-size: 12px;
    color: #fff;
    z-index: 10;
}

/* Dropdown */
.mod-select-container {
    flex: 1;
    position: relative;
    border: 1px solid #555;
    border-radius: 4px;
    background: #111;
    height: 30px;
}

.hidden-select {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    cursor: pointer;
}

.mod-select {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    font-size: 13px;
    color: #fff;
    z-index: 1;
}

.mod-select-icon {
    width: 25px;
    height: 100%;
    background: #0056b3;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

/* Radios */
.mod-radio-group {
    display: flex;
    flex-direction: column;
}

.mod-radios {
    display: flex;
    gap: 20px;
}

.mod-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ddd;
    cursor: pointer;
}

.mod-radio input {
    display: none;
}

.mod-circle {
    width: 22px;
    height: 22px;
    border: 1px solid #333;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mod-radio input:checked+.mod-circle::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #0056b3;
    border-radius: 50%;
}

/* ==========================================
   SALES NOTIFICATION
   ========================================== */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--color-border);
    border-left: 3px solid #00ff7f;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    transform: translateX(-150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease, border-color 0.3s ease;
    max-width: 320px;
    backdrop-filter: blur(10px);
}

.sales-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.sn-icon {
    font-size: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sn-content {
    display: flex;
    flex-direction: column;
}

.sn-title {
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.3;
}

.sn-title span:first-child {
    font-weight: 800;
}

.sn-title span:last-child {
    color: #ccc;
    font-weight: 400;
}

.sn-time {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}











