/* 
    NextBoost Ultimate Vanilla CSS
    Architectural Principles: Brutalism, Hardware-centric, High Performance
*/

:root {
    /* Cores Extremas */
    --bg-color: #050505;
    /* Preto absoluto quase puro */
    --bg-secondary: #0A0A0A;
    --text-main: #E5E5E5;
    --text-dim: #6c6c6c;
    --accent-red: #FF0033;
    /* Vermelho sangue cortante */
    --accent-dark: #660000;

    /* Tipografia — Sistema 3 camadas (Gaming) */
    --font-heading: 'Rajdhani', 'Inter', sans-serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Efeitos */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset de Performance e Layout Agressivo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: auto; /* Fixes conflict with Lenis */
    overflow-x: hidden;
    overflow-y: scroll; /* Força exibir scroll vertical */
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.no-underline {
    text-decoration: none;
}

.italic {
    font-style: italic;
}

.text-red {
    color: var(--accent-red);
}

.text-white {
    color: #FFFFFF;
}

.text-dim {
    color: var(--text-dim);
}

.pointer-events-none {
    pointer-events: none;
}

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

.tracking-wide {
    letter-spacing: 0.05em;
}

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

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

.gap-2 {
    gap: 0.5rem;
}

/* Efeito Terminal/Hardware em Overlay Animado Global */
.matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.25;
    /* Aumentada para dar mais destaque ao efeito */
    mix-blend-mode: screen;
}

/* Gradients textuais e brilhos */
.text-glow {
    text-shadow: 0 0 30px rgba(255, 0, 51, 0.6);
}

/* =========================================================================
   NAVEGAÇÃO PILL (Xilly Reference - Glassmorphism)
   ========================================================================= */
.pill-nav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1.5rem;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 0, 51, 0.12);
    border-radius: 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.pill-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pill-link {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.pill-link:hover,
.pill-link.active {
    color: #FFF;
    background: rgba(255, 0, 51, 0.15);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #FFF;
}

/* Logo + Text alignment utility */
.brand-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 1.1em;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.cta-nav {
    background-color: transparent;
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cta-nav:hover {
    background-color: var(--accent-red);
    color: #FFF;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
}

.pill-nav .logo {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.pill-nav .cta-nav {
    border-radius: 30px;
    padding: 0.45rem 1.2rem;
    font-size: 0.72rem;
    margin-left: 0.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.2);
}

/* Premium Button - Dourado Sólido */
.pill-nav .btn-premium {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #000 !important;
    border: 1px solid #FFD700 !important;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3) !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 900;
    position: relative;
    overflow: hidden;
    animation: goldPulse 2s infinite;
}

.pill-nav .btn-premium svg {
    color: #000;
}

.pill-nav .btn-premium:hover {
    background: linear-gradient(135deg, #FFD54F 0%, #FFB300 100%);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.7) !important;
    transform: translateY(-2px);
    color: #000 !important;
}

/* Efeito de brilho cruzando o botão */
.pill-nav .btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
    animation: goldShine 3s cubic-bezier(0.19, 1, 0.22, 1) infinite;
    animation-delay: 1s;
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3) !important;
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 193, 7, 0.6) !important;
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3) !important;
    }
}

@keyframes goldShine {
    0% {
        left: -100%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

@media (max-width: 1024px) {
    .pill-nav {
        padding: 0.4rem 1rem;
        top: auto;
        bottom: 20px;
        width: 92%;
        max-width: 450px;
        justify-content: space-between;
        gap: 0.5rem;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 0, 51, 0.3);
    }

    .pill-nav-links {
        display: none !important;
    }

    .pill-nav-links::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .pill-link {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .pill-nav .logo {
        font-size: 0.9rem;
    }

    .pill-nav .btn-premium {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }

    /* Auth compacta no mobile — apenas ícone/avatar, sem texto */
    #nav-auth-area {
        display: flex !important;
    }
    .nav-auth-name {
        display: none;
    }
    .nav-auth-btn {
        padding: 0.3rem 0.4rem;
    }

    body {
        padding-bottom: 90px;
    }
}

@media (max-width: 400px) {
    .nav-premium-text {
        display: none;
    }
    .pill-nav .btn-premium {
        padding: 0.4rem 0.5rem;
    }
}

/* =========================================================================
   THE NEXTBOOST BENEFIT (Xilly Reference)
   ========================================================================= */
.benefit-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    background: linear-gradient(180deg, var(--accent-red) 0%, rgba(255, 0, 51, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-title .text-white {
    -webkit-text-fill-color: #fff;
    background: none;
}

/* Game Toggle Tabs */
.game-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.game-tab {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.6rem 1.8rem;
    border: 1px solid rgba(255, 0, 51, 0.2);
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.game-tab:hover {
    border-color: var(--accent-red);
    color: #FFF;
}

.game-tab.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #FFF;
    box-shadow: 0 4px 20px rgba(255, 0, 51, 0.4);
}

/* Split-Screen Image Comparison */
.img-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.img-compare-panel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 51, 0.15);
    background: rgba(8, 8, 8, 0.6);
    transition: all 0.4s ease;
}

.img-compare-panel:hover {
    border-color: rgba(255, 0, 51, 0.4);
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.1);
    transform: translateY(-4px);
}

.compare-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.compare-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.badge-stock {
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid rgba(255, 80, 80, 0.4);
    color: #ff6b6b;
}

.badge-tuned {
    background: rgba(0, 255, 120, 0.1);
    border: 1px solid rgba(0, 255, 120, 0.4);
    color: #00ff78;
}

@media (max-width: 768px) {
    .img-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* =========================================================================
   ESTRUTURAS & LAYOUT DE NARRATIVA 
   ========================================================================= */
main.story-scroll {
    position: relative;
    display: flex;
    flex-direction: column;
}

section {
    position: relative;
    padding: 8rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

/* Flow Line - Linha que conecta do Hero ao fundo */
.flow-line {
    position: absolute;
    left: 1rem;
    top: 2rem;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent-red) 15%, var(--accent-red) 85%, transparent);
    z-index: 1;
}

/* =========================================================================
   TIPOGRAFIA & BOTÕES 
   ========================================================================= */
.cmd-text {
    font-family: var(--font-mono);
    color: var(--text-dim);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.boot-sequence {
    font-family: var(--font-mono);
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    margin-left: 2rem;
    /* Afasta da flow line */
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.boot-line {
    animation: type-in 0.1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.title-massive {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-top: 1rem;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-dim);
    margin-left: 0;
    margin-bottom: 3rem;
    max-width: 700px;
}

.hero-sub-centered {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-dim);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.hero-highlight {
    background-color: var(--accent-red);
    color: #FFF;
    padding: 2px 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-style: italic;
}

.btn-primary {
    margin-left: 0;
    background-color: var(--accent-red);
    color: #FFF;
    border: 1px solid var(--accent-red);
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.btn-primary.hover-glitch {
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 rgba(255, 0, 51, 0.6);
}

.btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0 rgba(255, 0, 51, 0.0);
}

.btn-secondary {
    background-color: transparent;
    color: #FFF;
    border: 1px solid var(--text-dim);
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-action-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-bottom: 2rem;
}

/* =========================================================================
   ANIMAÇÕES GLOBAIS (BLUR-IN, FLOAT, SHIMMER, GLOW)
   ========================================================================= */

/* Cursor Glow Aura (Atualizado via JS variables) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 0, 51, 0.08),
            transparent 80%);
    z-index: 1;
    /* Atrás do conteúdo, acima do background preto */
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 1;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: translateY(60px) scale(1.03);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInRightFade {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: translateX(80px) scale(1.03);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateX(0) scale(1);
    }
}

@keyframes floatAnim {

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

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

@keyframes shimmerAnim {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.slide-up {
    opacity: 0;
}

.slide-up.visible {
    animation: slideUpFade 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards;
}

.slide-in-right {
    opacity: 0;
}

.slide-in-right.visible {
    animation: slideInRightFade 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.float-anim {
    animation: floatAnim 6s ease-in-out infinite;
}

.hover-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    background-size: 200% auto;
    transition: all 0.3s ease;
}

.hover-shimmer:hover {
    animation: shimmerAnim 2s linear infinite;
    border-color: #FFF;
    color: #FFF;
}

.icon {
    transition: transform var(--transition-fast);
    background: transparent;
}

.btn-primary:hover .icon {
    transform: translateX(4px);
}

/* =========================================================================
   MÍDIA PARALLAX / HARDWARE 
   ========================================================================= */
.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 900px;
    z-index: -1;
    opacity: 0.3;
    /* Esconde sutilmente atrás do texto */
    filter: grayscale(80%) contrast(1.2);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
    opacity: 0.8;
    filter: grayscale(0%) contrast(1.1);
}

.software-preview {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid rgba(255, 0, 51, 0.3);
}

/* Máscara para suavizar extremidades da imagem */
.mask-gradient {
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
}

/* =========================================================================
   FEATURES DEEP (AS 4 FERRAMENTAS)
   ========================================================================= */
.features-deep {
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.features-wrapper {
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 6rem;
    text-align: left;
    border-left: 2px solid var(--accent-red);
    padding-left: 2rem;
    margin-left: 2rem;
}

.tool-module {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin-bottom: 8rem;
    padding: 3rem;
    margin-left: 2rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.5);
    /* Sombra dura brutalista */
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.tool-module:hover {
    transform: perspective(1000px) scale(1.02) rotateX(4deg) rotateY(-4deg) translateZ(15px) translateY(-5px);
    box-shadow: 25px 25px 0 rgba(255, 0, 51, 0.3), 0 0 50px rgba(255, 0, 51, 0.15);
    border-color: rgba(255, 0, 51, 0.8);
    z-index: 10;
}

/* Quebra o grid (Assimetria) */
.tool-module.align-right {
    justify-content: flex-end;
    margin-left: 4rem;
    /* Deslocamento adicional */
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.8), rgba(255, 0, 51, 0.03));
    border-right: 2px solid var(--accent-red);
}

.tool-index {
    position: absolute;
    top: -2.5rem;
    left: 2rem;
    font-size: 5rem;
    font-family: var(--font-mono);
    font-weight: 900;
    color: rgba(255, 0, 51, 0.15);
    z-index: -1;
    pointer-events: none;
}

.tool-module.align-right .tool-index {
    left: auto;
    right: 2rem;
}

.tool-content {
    max-width: 500px;
    z-index: 2;
}

.tool-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: -1px;
}

.badge {
    background: var(--accent-red);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    letter-spacing: 1px;
    font-family: var(--font-mono);
}

.tool-desc {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.tool-specs {
    list-style: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.tool-specs li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.sub-trigger {
    color: var(--accent-red);
    font-weight: bold;
}

/* Imagens das Ferramentas */
.asset-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    z-index: -1;
    opacity: 0.15;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.tool-module:hover .asset-wrapper {
    opacity: 0.7;
    filter: grayscale(20%);
}

.tool-module.align-right .asset-wrapper {
    left: -150px;
}

.tool-module:not(.align-right) .asset-wrapper {
    right: -150px;
}

.software-asset {
    width: 100%;
    border: 1px solid rgba(255, 0, 51, 0.2);
    filter: grayscale(100%);
    mix-blend-mode: screen;
}

.software-asset.mask-left {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
}

.software-asset.mask-right {
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
}

/* =========================================================================
   TELEMETRIA (COMPARATIVO)
   ========================================================================= */
.telemetry-board {
    align-items: center;
}

.telemetry-wrapper {
    width: 100%;
    max-width: 1000px;
    margin-left: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 4rem;
}

.col-free,
.col-pro {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
}

.col-free {
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.col-free:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(4deg) translateZ(15px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(255, 0, 51, 0.1);
    z-index: 10;
}

.col-pro {
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.1);
    transform: scale(1.05);
    z-index: 5;
    background: linear-gradient(180deg, #0A0A0A, rgba(255, 0, 51, 0.05));
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.col-pro:hover {
    transform: perspective(1000px) scale(1.08) rotateX(4deg) rotateY(-4deg) translateZ(30px) translateY(-10px);
    box-shadow: 0 40px 80px rgba(255, 0, 51, 0.4);
    z-index: 10;
}

.col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.col-header h3 {
    font-size: 2rem;
    font-weight: 900;
}

.bg-red {
    border-bottom-color: var(--accent-red);
    color: var(--accent-red);
}

.label-dim {
    font-family: var(--font-mono);
    color: var(--text-dim);
    font-size: 0.8rem;
}

.telemetry-list {
    list-style: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    flex-grow: 1;
}

.telemetry-list li {
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
}

.telemetry-list.negative .sys-fail {
    color: #444;
    text-decoration: line-through;
}

.telemetry-list.positive li {
    color: var(--text-main);
}

.telemetry-list.positive li::before {
    content: "> ";
    color: var(--accent-red);
    font-weight: bold;
}

.full-width {
    width: 100%;
    margin-left: 0;
}

.block {
    display: block;
}

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

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

/* Animação Red Dot */
.flashing-dot {
    position: relative;
    padding-left: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-main);
}

.flashing-dot::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.2;
    }
}

/* =========================================================================
   FOOTER TECH
   ========================================================================= */
.tech-footer {
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.social-flex {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-dim);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-btn:hover {
    background: rgba(255, 0, 51, 0.1);
    border-color: rgba(255, 0, 51, 0.5);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 51, 0.2);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 2rem;
}

/* =========================================================================
   ANIMAÇÕES BÁSICAS
   ========================================================================= */
@keyframes type-in {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* =========================================================================
   GLITCH EFFECT (BOTÕES)
   ========================================================================= */
.btn-primary.hover-glitch {
    position: relative;
    overflow: hidden;
}

.btn-primary.hover-glitch::before,
.btn-primary.hover-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.btn-primary.hover-glitch:hover::before {
    animation: glitch-anim-1 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    opacity: 1;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-2px, 2px);
}

.btn-primary.hover-glitch:hover::after {
    animation: glitch-anim-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite reverse;
    opacity: 1;
    z-index: 1;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translate(2px, -2px);
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    }

    20% {
        clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    }

    40% {
        clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    }

    60% {
        clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    }

    80% {
        clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    }

    100% {
        clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    }

    20% {
        clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    }

    40% {
        clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    }

    60% {
        clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    }

    80% {
        clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    }

    100% {
        clip-path: polygon(0 43%, 100% 43%, 100% 43%, 0 43%);
    }
}

/* =========================================================================
   NOVAS SEÇÕES: SOCIAL, BENEFIT, PRICING (XILLY-INSPIRED)
   ========================================================================= */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

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

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

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

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

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

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

.pt-8 {
    padding-top: 2rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.mono {
    font-family: var(--font-mono);
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.font-black {
    font-weight: 900;
}

.font-normal {
    font-weight: 400;
}

.max-w-2xl {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.border-y {
    border-top: 1px solid rgba(255, 0, 51, 0.2);
    border-bottom: 1px solid rgba(255, 0, 51, 0.2);
}

.border-b {
    border-bottom: 1px solid rgba(255, 0, 51, 0.2);
}

.border-t {
    border-top: 1px solid rgba(255, 0, 51, 0.2);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.border-red {
    border-color: rgba(255, 0, 51, 0.2) !important;
}

.section-padding {
    padding: 8rem 2rem;
}

/* Grid Systems */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

/* Social Cards */
.social-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 0, 51, 0.2);
    border-left: 2px solid var(--accent-red-dark);
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.social-card:hover {
    border-left-color: var(--accent-red);
    background-color: var(--bg-color);
    transform: translateX(4px);
}

.social-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-avatar {
    background-color: var(--accent-red);
    color: var(--bg-color);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-mono);
    border: 1px solid var(--accent-red);
}

.social-quote {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-main);
}

/* Benefit Cards */
.benefit-card {
    background-color: var(--bg-secondary);
    border: 1px solid transparent;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 0, 51, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem auto;
    background-color: var(--accent-red);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
}

/* Pricing Cards */
.pricing-card {
    background-color: var(--bg-color);
    border: 1px solid rgba(255, 0, 51, 0.3);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.pricing-card.pro {
    border: 2px solid var(--accent-red);
    background-color: #020202;
    box-shadow: 6px 6px 0px var(--accent-red);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.spec-label {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.25rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.spec-label.standard {
    background-color: rgba(255, 0, 51, 0.2);
    color: var(--text-main);
}

.spec-label.flagship {
    background-color: var(--accent-red);
    color: #FFF;
    animation: pulse 2s infinite;
}

.spec-list {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.spec-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.btn-secondary {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-weight: bold;
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    padding: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background-color: var(--accent-red);
    color: var(--bg-color);
}

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

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* =========================================================================
   HERO COMMAND CENTER - MONUMENTAL (DivineSkins Reference)
   ========================================================================= */
.monumental-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.monumental-heading {
    font-size: clamp(2.5rem, 6vw, 5.5rem) !important;
    white-space: nowrap;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
}

.monumental-heading::before,
.monumental-heading::after {
    -webkit-text-fill-color: initial;
}

/* Ghost Backdrop REMOVIDO - Substituído por Glow Radial Puro */
.hero-radial-glow {
    background: radial-gradient(ellipse 60% 50% at 50% 55%,
            rgba(255, 0, 51, 0.12) 0%,
            rgba(255, 0, 51, 0.04) 40%,
            transparent 70%);
    mix-blend-mode: screen;
}

/* Spec Node Dock (Sub-Navegação DivineSkins) */
.hero-specs-dock {
    perspective: 800px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.spec-node {
    min-width: 80px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: default;
    border: 1px solid rgba(255, 0, 51, 0.15);
    background-color: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.spec-node:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 25px rgba(255, 0, 51, 0.3), inset 0 0 15px rgba(255, 0, 51, 0.05);
    transform: translateY(-6px) scale(1.05);
}

.spec-node:hover .text-dim {
    color: #FFF !important;
}

/* Blur-in Animation Class */
.blur-in {
    opacity: 0;
    filter: blur(16px);
    transform: scale(1.05);
}

.blur-in.visible {
    animation: blurInReveal 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes blurInReveal {
    0% {
        opacity: 0;
        filter: blur(16px);
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

.delay-3 {
    animation-delay: 0.35s;
}

.justify-center {
    justify-content: center;
}

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

@media (max-width: 768px) {
    .monumental-heading {
        font-size: clamp(1.8rem, 8vw, 3rem) !important;
        white-space: normal;
    }

    .hero-specs-dock {
        gap: 0.5rem;
    }

    .spec-node {
        min-width: 70px;
        padding: 0.5rem 0.75rem;
    }

    .spec-node .mono {
        font-size: 1rem;
    }
}

.hero-command-center {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bg-black\/50 {
    background-color: rgba(5, 5, 5, 0.5);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Cyber Grid Background Animado */
.cyber-grid-wrap {
    perspective: 1000px;
}

.cyber-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    bottom: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(255, 0, 51, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 51, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(75deg);
    animation: gridMove 15s linear infinite;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 60%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 60%);
}

@keyframes gridMove {
    0% {
        transform: rotateX(75deg) translateY(0);
    }

    100% {
        transform: rotateX(75deg) translateY(60px);
    }
}

.flow-line-center {
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(255, 0, 51, 0.5) 20%, rgba(255, 0, 51, 0.8) 80%, transparent);
}

.system-status-badge {
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.1);
}

.flashing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    animation: flash 1s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--accent-red);
    }

    50% {
        opacity: 0.3;
        box-shadow: none;
    }
}

/* Typography Hero Glitch Continuous */
.hero-glitch-text {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #FFF;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
    white-space: nowrap;
}

.hero-glitch-text::before,
.hero-glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.hero-glitch-text::before {
    left: 4px;
    text-shadow: -2px 0 var(--accent-red);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.hero-glitch-text::after {
    left: -4px;
    text-shadow: -2px 0 blue;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.app-showcase-container {
    perspective: 1000px;
}

.mask-bottom {
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%);
}

.pulse-glow {
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: scale(1) translateY(20px);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.1) translateY(20px);
    }
}

.btn-ghost {
    background-color: transparent;
    color: #FFF;
    border: 1px solid var(--text-dim);
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

/* =========================================================================
   RESPONSIVIDADE
   ========================================================================= */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .col-pro {
        transform: scale(1);
    }

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

    .tool-module.align-right {
        margin-left: 2rem;
    }

    .asset-wrapper {
        display: none;
    }

    /* Esconde as imagens em telas menores para melhor leitura do terminal */
}

@media (max-width: 768px) {
    .top-nav {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-left: 0 !important;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-left: 0 !important;
        text-align: center;
    }

    .tool-module {
        padding: 1.5rem;
        margin-left: 0.5rem;
        width: calc(100% - 1rem);
    }

    .flow-line {
        left: 0.2rem;
    }

    .tool-index {
        font-size: 2.5rem;
        top: -1.2rem;
    }

    .btn-primary {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .hero-title,
    .hero-sub,
    .boot-sequence {
        margin-left: 0 !important;
        text-align: center;
        width: 100%;
    }

    .section-header {
        margin-left: 0 !important;
        text-align: center;
    }

    .telemetry-wrapper {
        margin-left: 0 !important;
    }
}

/* =========================================================================
   BENTO GRID (GENERAL FEATURES)
   ========================================================================= */
.bento-section {
    position: relative;
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.bento-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bento-header .cmd-text {
    font-family: var(--font-mono);
    color: var(--accent-red);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.bento-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.bento-header p {
    font-family: var(--font-heading);
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.bento-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    width: 100%;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.bento-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

@media (min-width: 768px) {
    .bento-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }

    .bento-card.span-full {
        grid-column: 1 / -1;
    }
}

.bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem;
    background-color: rgba(12, 12, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    flex: 0 0 100%;
    scroll-snap-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

#slider-container {
    touch-action: pan-y;
    user-select: none;
    background: #000;
}

#slider-handle {
    will-change: left;
}

#before-layer {
    will-change: width;
}

.active-pro {
    background: #ff0033 !important;
    color: #fff !important;
    border-color: #ff0033 !important;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
}

@media (min-width: 768px) {
    .bento-card {
        flex: auto;
        scroll-snap-align: none;
    }
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 51, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid rgba(255, 0, 51, 0.2);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.bento-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-red);
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFF;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.bento-desc {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.65;
}

/* Card "destaque" (span-full) - layout horizontal */
.bento-card.span-full {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
}

.bento-card.span-full .bento-text {
    flex: 1;
}

.bento-card.span-full .bento-visual {
    flex: 0 0 auto;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    max-width: 280px;
}

.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.bento-tag .tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-red);
    flex-shrink: 0;
}

#game-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.game-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.game-btn:hover {
    background: rgba(255, 0, 51, 0.1);
    border-color: rgba(255, 0, 51, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.game-btn.active-pro {
    background: #ff0033;
    border-color: #ff0033;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
}

@media (max-width: 767px) {
    .bento-card.span-full {
        flex-direction: column;
        gap: 1.5rem;
    }

    .bento-card.span-full .bento-visual {
        max-width: 100%;
    }

    .bento-section {
        padding: 4rem 1rem;
    }

    .game-btn {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }
}

/* =========================================================================
   APP SHOWCASE  —  Mockup Centralizado + Pills
   ========================================================================= */
.sc-section {
    padding: 7rem 1.5rem 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Header */
.sc-header {
    margin-bottom: 3.5rem;
}

.sc-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0.5rem 0 1rem;
}

.sc-header p {
    max-width: 540px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Stage: glow + mockup container */
.sc-stage {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

/* Glow vermelho difuso atmósfico atras do mockup */
.sc-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(255, 0, 51, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: scGlowPulse 4s ease-in-out infinite;
}

@keyframes scGlowPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1.0;
    }
}

/* Janela do App */
.sc-mockup {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /* Superando o reset global de 0px literal */
    border-radius: 24px !important;
    overflow: hidden;
    
    /* Glass Stroke: Borda técnica com brilho interno */
    border: 1px solid rgba(255, 255, 255, 0.12);
    
    /* Camadas de Sombra: Neon + Profundidade + Oclusão */
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 0, 51, 0.2),
        0 15px 45px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 0, 51, 0.15);
    
    animation: neonPulsePremium 4s ease-in-out infinite;
    transform: perspective(2000px) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes neonPulsePremium {
    0%, 100% {
        box-shadow:
            inset 0 1px 1px rgba(255, 255, 255, 0.1),
            0 0 0 1px rgba(255, 0, 51, 0.2),
            0 15px 45px rgba(0, 0, 0, 0.9),
            0 0 30px rgba(255, 0, 51, 0.15);
        border-color: rgba(255, 255, 255, 0.12);
    }
    50% {
        box-shadow:
            inset 0 1px 2px rgba(255, 255, 255, 0.2),
            0 0 0 1px rgba(255, 0, 51, 0.4),
            0 15px 60px rgba(0, 0, 0, 0.95),
            0 0 50px rgba(255, 0, 51, 0.3);
        border-color: rgba(255, 0, 51, 0.3);
    }
}

.sc-mockup:hover {
    transform: perspective(2000px) rotateX(0deg) scale(1.01);
    background: rgba(12, 12, 12, 0.85);
}

/* Área de tela */
.sc-screen {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    /* Bordas internas ligeiramente menores para evitar bleed */
    border-radius: 20px !important;
    display: grid;
    min-height: 500px;
    margin: 4px; /* Pequeno espaçamento para mostrar a borda de vidro */
    width: calc(100% - 8px);
}

@media (max-width: 768px) {
    .sc-screen {
        min-height: 280px;
    }

    .sc-mockup {
        transform: none;
    }

    .sc-mockup:hover {
        transform: none;
    }
}

/* Mídia empilhada na mesma célula do grid (Video/Img) */
.sc-media {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Pós-processamento para máxima nitidez e cores vibrantes */
    filter: contrast(1.1) brightness(1.08) saturate(1.15);
    /* Estado inativo: fora da tela pela esquerda */
    transform: translateX(-30px);
    opacity: 0;
    transition:
        opacity 0.45s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
}

/* Saindo: vai para a esquerda */
.sc-media.leaving {
    transform: translateX(-40px);
    opacity: 0;
    z-index: 1;
}

/* Ativo: entra da direita */
.sc-media.active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
}

/* Desktop: mostra vídeo, esconde GIF */
.sc-mobile-only { display: none !important; }
.sc-desktop-only { display: block; }

/* Mobile: mostra GIF, esconde vídeo */
@media (max-width: 768px) {
    .sc-desktop-only { display: none !important; }
    .sc-mobile-only { display: block !important; }
}

/* Reflectance line — linha de reflexo superior na tela */
.sc-screen::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    z-index: 10;
    pointer-events: none;
}

/* Camada HUD Tecnológica */
.sc-hud {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    padding: 30px;
}

.sc-hud-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--accent-red);
    opacity: 0.4;
}

.sc-hud-corner.top-left { top: 25px; left: 25px; border-right: 0; border-bottom: 0; }
.sc-hud-corner.top-right { top: 25px; right: 25px; border-left: 0; border-bottom: 0; }
.sc-hud-corner.bottom-left { bottom: 25px; left: 25px; border-right: 0; border-top: 0; }
.sc-hud-corner.bottom-right { bottom: 25px; right: 25px; border-left: 0; border-top: 0; }

@keyframes scHudFlash {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Reflexo de Vidro Dinâmico (Overlay) */
.sc-glass-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, 
        rgba(255, 255, 255, 0.0) 0%, 
        rgba(255, 255, 255, 0.03) 25%, 
        rgba(255, 255, 255, 0.12) 45%, 
        rgba(255, 255, 255, 0.03) 55%, 
        rgba(255, 255, 255, 0.0) 100%);
    background-size: 250% 250%;
    background-position: 0% 0%;
    z-index: 6;
    pointer-events: none;
    mix-blend-mode: plus-lighter;
    animation: scGlassGlare 15s ease-in-out infinite;
}

@keyframes scGlassGlare {
    0% { background-position: 0% 0%; }
    20% { background-position: 0% 0%; }
    80% { background-position: 100% 100%; }
    100% { background-position: 100% 100%; }
}

/* Pills de Navegação */
.sc-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.sc-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.sc-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 0, 51, 0.0);
    transition: background 0.25s ease;
}

.sc-pill:hover {
    border-color: rgba(255, 0, 51, 0.35);
    color: #fff;
}

.sc-pill:hover::before {
    background: rgba(255, 0, 51, 0.05);
}

.sc-pill.active {
    background: rgba(255, 0, 51, 0.1);
    border-color: rgba(255, 0, 51, 0.6);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pill-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-red);
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.sc-pill.active .pill-num {
    opacity: 1;
}

.pill-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    align-items: center;
}

@media (max-width: 900px) {
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Menu Esquerdo (Abas) --- */
.showcase-menu {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.showcase-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #FFF;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.showcase-btn:hover {
    background: rgba(255, 0, 51, 0.05);
    border-color: rgba(255, 0, 51, 0.2);
    transform: translateX(5px);
}

.showcase-btn.active {
    background: rgba(40, 5, 10, 0.8);
    border-color: rgba(255, 0, 51, 0.5);
    box-shadow: 0 5px 20px rgba(255, 0, 51, 0.1);
}

/* Barra lateral do Botão Ativo */
.btn-glitch-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-red);
    opacity: 0;
    transform: scaleY(0);
    transform-origin: center;
    transition: all 0.3s ease;
}

.showcase-btn.active .btn-glitch-bar {
    opacity: 1;
    transform: scaleY(1);
    box-shadow: 0 0 10px var(--accent-red);
}

.btn-num {
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.showcase-btn.active .btn-num {
    color: var(--accent-red);
}

.btn-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.btn-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-desc {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* --- Quadro Principal --- */
.showcase-frame {
    position: relative;
    padding: 12px;
    background: rgba(5, 5, 5, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.frame-glass {
    position: relative;
    width: 100%;
    /* Removido aspect-ratio fixo para as imagens ajustarem a altura do grid naturalmente */
    min-height: 480px;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    align-items: center;
    /* centraliza as imagens se foren menores */
}

@media (max-width: 900px) {
    .frame-glass {
        min-height: 300px;
    }
}

/* Animação Brutalist Wipe (Sem Fades/Blur, Rápido e Mecânico) */
.showcase-img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Não recorta prints de UI */
    object-position: center center;
    visibility: hidden;
    /* Começa engolido pelo lado direito */
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.showcase-img.active {
    visibility: visible;
    z-index: 2;
    animation: brutalWipe 0.35s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes brutalWipe {
    0% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* =========================================================================
   ESPORTS OVERHAUL (PÁGINA DE VENDAS ULTIMATE)
   ========================================================================= */

.esports-body {
    background-color: #030303;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Fundo Dinâmico Gamer */
.esports-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(255, 0, 51, 0.1), transparent 70%),
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(255, 255, 255, 0.02) 4px, rgba(255, 255, 255, 0.02) 5px);
}

/* Nav Gamer */
.sticky-esports-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--accent-red);
    box-shadow: 0 5px 20px rgba(255, 0, 51, 0.2);
}

@media (min-width: 768px) {
    .sticky-esports-bar {
        padding: 1rem 3rem;
    }
}

.btn-esports-sm {
    display: flex;
    align-items: center;
    background: var(--accent-red);
    color: #fff;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.2s;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.btn-esports-sm:hover {
    background: #fff;
    color: var(--accent-red);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.5);
    transform: scale(1.05);
}

/* Hero Esports */
.esports-hero {
    min-height: 80vh;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-live-stats {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.stat-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

.stat-value {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1;
}

.stat-value span {
    font-size: 1rem;
    color: var(--text-dim);
}

.stat-desc {
    font-size: 0.6rem;
    font-weight: bold;
    color: #27c93f;
    letter-spacing: 1px;
}

.glitch-red {
    color: var(--accent-red);
    text-shadow: 2px 2px 0 rgba(255, 0, 0, 0.5), -2px -2px 0 rgba(0, 255, 255, 0.2);
    animation: jitter 0.5s infinite;
}

@keyframes jitter {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-1px, 1px);
    }

    20% {
        transform: translate(1px, -1px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.esports-heading {
    font-size: clamp(3rem, 6vw, 5rem);
    text-shadow: 0 10px 30px rgba(255, 0, 51, 0.4);
}

.badge-pro {
    background: rgba(255, 0, 51, 0.15);
    color: var(--accent-red);
    padding: 0.25rem 1rem;
    border: 1px solid var(--accent-red);
}

/* Primary Esports Button */
.btn-esports-primary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 3rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    transition: transform 0.2s;
}

.btn-bg-glitch {
    position: absolute;
    inset: 0;
    background: var(--accent-red);
    z-index: 0;
    transition: all 0.3s;
}

.btn-esports-primary:hover {
    transform: scale(1.05);
}

.btn-esports-primary:hover .btn-bg-glitch {
    background: #fff;
}

.btn-esports-primary:hover .btn-text {
    color: var(--accent-red);
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* Loadouts (Arssnal) */
.esports-loadouts {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.loadouts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.perk-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(5, 5, 5, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    transition: all 0.3s ease;
}

.perk-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 51, 0.4);
}

.perk-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.15), transparent 70%);
    pointer-events: none;
}

.perk-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 51, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 0, 51, 0.3);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.perk-icon {
    width: 30px;
    height: 30px;
    color: var(--accent-red);
}

.perk-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.perk-bullets li {
    font-size: 0.8rem;
    color: var(--text-dim);
    position: relative;
    padding-left: 1.25rem;
}

.perk-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* Barras de Comparação */
.esports-comparison {
    padding: 4rem 2rem;
}

.bar-bg {
    background: rgba(20, 20, 20, 0.8);
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.bar-fill {
    height: 100%;
    transition: width 1.5s ease;
}

.bar-pro {
    background: linear-gradient(90deg, #ff0033 0%, #ff4d4d 100%);
    position: relative;
}

.bar-pro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: barShine 2s infinite;
}

@keyframes barShine {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

/* Licença / Checkout Pass */
.checkout-pass-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 1) 0%, rgba(10, 10, 10, 1) 100%);
    border: 2px solid rgba(255, 0, 51, 0.5);
    width: 100%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 0, 51, 0.2);
    clip-path: polygon(0 30px, 30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.pass-glitch-border {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #ff0033, transparent, #ff0033);
    z-index: -1;
    opacity: 0.5;
}

.radial-glow-red {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.15), transparent 60%);
    pointer-events: none;
}

@media (max-width: 768px) {

    /* ── GLOBAL SECTIONS ── */
    section {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .hero-command-center {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    /* ── INDEX: HERO ── */
    .hero {
        padding: 80px 1rem 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
        margin-left: 1rem;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-left: 1rem;
    }

    .boot-sequence {
        margin-left: 1rem;
        min-height: 80px;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .flow-line {
        left: 0.5rem;
    }

    .section-header {
        margin-left: 1rem;
    }

    .telemetry-wrapper {
        margin-left: 0;
    }

    /* ── INDEX: BENTO/ARSENAL ── */
    .bento-section {
        padding: 3rem 1rem;
    }

    .bento-header {
        margin-bottom: 2rem;
    }

    .bento-header h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .bento-card {
        padding: 1.5rem;
    }

    /* ── INDEX: APP SHOWCASE ── */
    .sc-section {
        padding: 3rem 1rem 2.5rem;
    }

    .sc-header {
        margin-bottom: 2rem;
    }

    .sc-screen {
        min-height: 220px;
    }

    .sc-mockup {
        transform: none;
    }

    .sc-mockup:hover {
        transform: none;
    }

    .sc-pills {
        gap: 0.5rem;
    }

    .sc-pill {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    /* ── INDEX: COMPARISON (Before/After) ── */
    .compare-section,
    #beneficios {
        padding: 3rem 1rem;
    }

    .benefit-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

    .img-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .img-compare-panel {
        max-width: 100%;
    }

    .compare-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
    }

    /* ── INDEX: SOCIAL PROOF ── */
    #social-proof {
        padding: 3rem 1rem;
    }

    /* ── INDEX: FAQ ── */
    #faq {
        padding: 3rem 1rem;
    }

    .faq-item summary {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .faq-item p {
        font-size: 0.85rem;
        padding: 0 1rem 1rem;
    }

    /* ── INDEX: MANIFESTO ── */
    #sobre {
        padding: 3rem 1rem;
    }

    /* ── INDEX: FOOTER ── */
    .tech-footer {
        padding: 3rem 1rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* ── INDEX: COMPARISON GRID (Free vs Pro) ── */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .col-pro {
        transform: scale(1);
    }

    .col-pro:hover {
        transform: translateY(-5px);
    }

    .col-free:hover {
        transform: translateY(-5px);
    }

    .col-header h3 {
        font-size: 1.5rem;
    }

    /* ── INDEX: TOOL MODULES ── */
    .tool-module {
        padding: 1.5rem;
        margin-left: 1rem;
    }

    .tool-module.align-right {
        margin-left: 1rem;
    }

    .tool-index {
        font-size: 3rem;
        top: -1.5rem;
    }

    /* ── INDEX: MONUMENTAL ── */
    .monumental-heading {
        font-size: clamp(1.8rem, 8vw, 3rem) !important;
        white-space: normal;
    }

    .hero-specs-dock {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .spec-node {
        min-width: 70px;
        padding: 0.5rem 0.75rem;
    }

    .spec-node .mono {
        font-size: 1rem;
    }

    /* ── COMPRAR: GENERAL ── */
    .hidden-mobile {
        display: none !important;
    }

    /* Exceção específica para o nav de compra */
    .sticky-esports-bar .hidden-mobile {
        display: inline-flex !important;
        font-size: 0.65rem;
        padding: 0.5rem 0.8rem;
    }

    /* ── COMPRAR: HERO ESPORTS ── */
    .esports-hero {
        min-height: auto;
        padding: 0 1rem;
    }

    .esports-heading {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-live-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .stat-separator {
        width: 100%;
        height: 1px;
    }

    .stat-value {
        font-size: 2rem;
    }

    /* ── COMPRAR: LOADOUTS/ARSENAL ── */
    .esports-loadouts {
        padding: 3rem 1rem;
    }

    .loadouts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .perk-card {
        padding: 1.5rem;
    }

    .perk-title {
        font-size: 1.1rem;
    }

    /* ── COMPRAR: SINTA A DIFERENÇA (Slider) ── */
    .game-selector {
        gap: 0.4rem;
    }

    .game-btn {
        font-size: 0.6rem;
        padding: 0.4rem 0.8rem;
    }

    /* ── COMPRAR: CHECKOUT ── */
    .checkout-pass-card {
        clip-path: polygon(0 15px, 15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
        padding: 2rem 1.5rem;
    }

    /* ── COMPRAR: BUTTONS ── */
    .btn-esports-primary {
        padding: 1rem 2rem;
        width: 100%;
    }

    .btn-esports-sm {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    /* ── COMPRAR: SHOWCASE LAYOUT ── */
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-menu {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.5rem;
    }

    .showcase-menu::-webkit-scrollbar {
        display: none;
    }

    .showcase-btn {
        flex-shrink: 0;
        min-width: 140px;
        padding: 0.6rem 1rem;
    }

    .btn-desc {
        display: none;
    }

    .frame-glass {
        min-height: 250px;
    }

    /* ── GRID UTILITÁRIOS ── */
    .grid-2 {
        grid-template-columns: 1fr;
    }

    /* ── HERO GLITCH TEXT — desabilitar glitch e permitir quebra de linha ── */
    .hero-glitch-text {
        white-space: normal;
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    .hero-glitch-text::before,
    .hero-glitch-text::after {
        display: none;
    }

    /* ── LOGIN / AUTH — reduzir padding superior (nav vai ao rodapé no mobile) ── */
    .auth-wrap {
        padding: 1.5rem 1rem 6rem;
    }

    /* ── CHECKOUT — reduzir padding superior no mobile ── */
    .checkout-wrap {
        padding-top: 1.5rem;
    }

    /* ── DASHBOARD — reduzir padding superior no mobile ── */
    .dash-main {
        padding-top: 4rem;
    }

    /* ── SUPORTE HERO — inline style override via CSS ── */
    #suporte-hero {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }
}


/* =========================================================================
   ULTRA RESPONSIVIDADE & MOBILE OVERLAY MENU
   ========================================================================= */

/* Hamburger Toggle no Nav */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    margin-right: -10px;
    z-index: 1000 !important;
    /* Aumentado para garantir o clique */
    position: relative;
    pointer-events: auto !important;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
    visibility: hidden;
}

.mobile-menu-overlay.active {
    transform: translateX(0) !important;
    visibility: visible !important;
}

.menu-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.menu-close {
    background: transparent;
    border: none;
    color: var(--accent-red);
    cursor: pointer;
}

.menu-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-overlay-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-overlay-link span {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-red);
    letter-spacing: 0;
}

.menu-overlay-link:hover {
    color: var(--accent-red);
    transform: translateX(10px);
}

.btn-pro-mobile {
    margin-top: 1rem;
    color: var(--accent-red) !important;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 0.5rem;
}

.menu-overlay-footer {
    margin-top: auto;
    padding-top: 2rem;
}

/* Media Queries para Mobile Final */
@media (max-width: 1024px) {
    .pill-nav-links {
        display: none !important;
    }

    .menu-toggle {
        display: block !important;
    }

    /* FAQ MOBILE TITLE FIX */
    .technical-faq-section h3,
    #faq h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem;
    }

    /* Correção Benefit Section */
    .game-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .game-tab {
        font-size: 0.7rem;
        padding: 0.6rem 0.5rem;
        width: 100%;
        text-align: center;
    }

    .img-comparison {
        flex-direction: column;
        gap: 1rem;
    }

    .img-compare-panel {
        width: 100%;
    }

    /* Correção Feedback Logs */
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .social-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .menu-overlay-link {
        font-size: 1.8rem;
    }
}

/* =========================================================================
   FPS VIDEO DEMONSTRATION 
   ========================================================================= */
.esports-video-demonstration .video-container {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-label-tag {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 120px;
}

@media (max-width: 768px) {
    .video-label-tag {
        min-width: 80px;
    }
}

/* Efeito de scanline sutil para os labels */
.video-label-tag::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.2;
}


/* =========================================================================
   VICTORY FLOW (3 STEPS) - STATIC GLASS BORDER REDESIGN
   ========================================================================= */
.esports-steps-flow {
    position: relative;
    /* Removendo bordas de divisão para unificar o background */
}

.step-card {
    background: rgba(12, 12, 12, 0.4) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 28px !important;
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7) !important;
    overflow: hidden;
    transform: none !important;
    will-change: transform;
}

.step-card:hover {
    border-color: rgba(255, 0, 51, 0.3) !important;
    background: rgba(18, 18, 18, 0.6) !important;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 0, 51, 0.05) !important;
}

/* Glass Border Effect - Card Main (Solid Glass Color) */
.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1.5px;
    background: rgba(255, 255, 255, 0.12);
    /* Cor sólida estilo vidro */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-video-box {
    border-radius: 20px !important;
    position: relative;
    background: #000;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
}

/* Glass Stroke on Video Frame - FIXED, THICKER & SOLID COLOR */
.step-video-box::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 20px;
    padding: 2.5px;
    /* Stroke mais grosso */
    background: rgba(255, 255, 255, 0.25);
    /* Cor sólida estilo vidro */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 1;
    /* Totalmente fixo */
}

/* Removida animação on-hover para o stroke do vídeo interno */
.step-card:hover .step-video-box::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .step-card {
        border-radius: 24px !important;
        min-height: auto !important;
        padding: 2.5rem 1.5rem !important;
    }

    .step-card::before {
        border-radius: 24px;
    }
}

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

    20% {
        opacity: 0.5;
    }

    80% {
        opacity: 0.5;
    }

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

/* =========================================================================
   CRO: PAIN SECTION
   ========================================================================= */
.pain-section { padding: 5rem 2rem; position: relative; z-index: 10; }
.pain-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.pain-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 0, 51, 0.04);
    border: 1px solid rgba(255, 0, 51, 0.12);
    border-left: 3px solid rgba(255, 0, 51, 0.6);
    transition: all 0.3s ease;
}
.pain-item:hover {
    background: rgba(255, 0, 51, 0.08);
    border-left-color: #ff0033;
    transform: translateX(5px);
}
.pain-icon { color: #ff0033; font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.pain-text { color: #ccc; font-size: 0.95rem; line-height: 1.6; }
.pain-close { max-width: 700px; margin: 2.5rem auto 0; text-align: center; }

/* =========================================================================
   CRO: TRANSITION / SOLUTION SECTION
   ========================================================================= */
.solution-section { padding: 5rem 2rem; text-align: center; position: relative; z-index: 10; }
.solution-inner { max-width: 800px; margin: 0 auto; }

/* =========================================================================
   CRO: SOCIAL PROOF SECTION
   ========================================================================= */
.social-proof-section { padding: 5rem 2rem; position: relative; z-index: 10; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.testimonial-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(8, 8, 8, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid #ff0033;
    padding: 2rem; position: relative;
    transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(255, 0, 51, 0.5); transform: translateY(-4px); }
.testimonial-card::before { content: '"'; position: absolute; top: 10px; right: 20px; font-size: 4rem; color: rgba(255, 0, 51, 0.1); font-family: serif; line-height: 1; }
.testimonial-quote { font-size: 0.9rem; color: #ccc; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { font-size: 0.8rem; font-weight: 700; color: #fff; }
.testimonial-gpu { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-dim); margin-top: 0.25rem; }
.testimonial-stars { color: #ff0033; font-size: 0.75rem; letter-spacing: 2px; margin-top: 0.5rem; }
.proof-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; max-width: 800px; margin: 3rem auto 0; }
.proof-badge-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.proof-badge-value { font-size: 1.5rem; font-weight: 900; color: #ff0033; font-style: italic; }
.proof-badge-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 768px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   CRO: FAQ / OBJECTION BREAKING
   ========================================================================= */
.faq-section { padding: 5rem 2rem; position: relative; z-index: 10; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden; transition: all 0.3s ease;
}
.faq-item:hover, .faq-item.active { border-color: rgba(255, 0, 51, 0.3); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; cursor: pointer;
    font-weight: 700; font-size: 0.95rem; color: #e5e5e5;
    transition: color 0.2s;
}
.faq-question:hover { color: #ff0033; }
.faq-chevron { transition: transform 0.3s ease; color: #ff0033; flex-shrink: 0; margin-left: 1rem; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem; color: var(--text-dim); font-size: 0.9rem; line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 1.5rem 1.5rem; }

/* =========================================================================
   CRO: VALUE ANCHORING
   ========================================================================= */
.value-stack { max-width: 500px; margin: 0 auto 2rem; text-align: left; }
.value-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.75rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}
.value-item-name { color: #ccc; }
.value-item-price { color: var(--text-dim); font-family: var(--font-mono); text-decoration: line-through; font-size: 0.8rem; }
.value-total {
    display: flex; justify-content: space-between; padding: 1rem 0;
    border-top: 2px solid rgba(255, 0, 51, 0.3); margin-top: 0.5rem;
    font-weight: 900; font-size: 1.1rem;
}
.value-total .old-price { color: var(--text-dim); text-decoration: line-through; }

/* =========================================================================
   CRO: GUARANTEE BADGE
   ========================================================================= */
.guarantee-badge-big {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(0, 255, 120, 0.04); border: 1px solid rgba(0, 255, 120, 0.15);
    padding: 1.25rem 1.5rem; max-width: 500px; margin: 1.5rem auto 0;
}
.guarantee-badge-big .shield-icon { font-size: 2rem; flex-shrink: 0; }
.guarantee-badge-big .guarantee-text { font-size: 0.85rem; color: #ccc; line-height: 1.5; }
.guarantee-badge-big .guarantee-text strong { color: #00ff78; }

/* =========================================================================
   CRO: URGENCY / COUNTDOWN
   ========================================================================= */
.urgency-section { padding: 3rem 2rem; position: relative; z-index: 10; }
.urgency-inner {
    max-width: 700px; margin: 0 auto; text-align: center;
    background: rgba(255, 0, 51, 0.05); border: 1px solid rgba(255, 0, 51, 0.2);
    padding: 2rem; position: relative; overflow: hidden;
}
.urgency-inner::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #ff0033, transparent);
}
.countdown-grid {
    display: flex; justify-content: center; gap: 1.5rem; margin: 1.5rem 0;
}
.countdown-unit { display: flex; flex-direction: column; align-items: center; }
.countdown-value {
    font-size: 2.5rem; font-weight: 900; font-style: italic; color: #ff0033;
    font-family: var(--font-heading); line-height: 1;
    text-shadow: 0 0 20px rgba(255,0,51,0.5);
}
.countdown-label { font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; margin-top: 0.3rem; }
.progress-bar-wrap { max-width: 400px; margin: 1rem auto 0; }
.progress-bar-bg { height: 8px; background: rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, #ff0033, #ff4d4d); transition: width 1.5s ease; position: relative; }
.progress-bar-fill::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 20px;
    background: rgba(255,255,255,0.4); animation: barShine 2s infinite;
}

/* =========================================================================
   CRO: FINAL CTA SECTION
   ========================================================================= */
.final-cta-section { padding: 5rem 2rem; text-align: center; position: relative; z-index: 10; }
.final-cta-inner { max-width: 700px; margin: 0 auto; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.choice-card { padding: 2rem 1.5rem; border: 1px solid rgba(255,255,255,0.06); background: rgba(10,10,10,0.8); }
.choice-card.choice-bad { opacity: 0.5; }
.choice-card.choice-good { border-color: rgba(255,0,51,0.4); background: rgba(255,0,51,0.05); }
@media (max-width: 600px) { .choice-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   CRO: FLOATING MOBILE CTA BAR
   ========================================================================= */
.floating-cta-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(20px);
    border-top: 2px solid #ff0033;
    padding: 0.75rem 1rem;
    display: none; align-items: center; justify-content: space-between;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(100%); transition: transform 0.4s ease;
}
.floating-cta-bar.visible { transform: translateY(0); }
.floating-cta-price { display: flex; flex-direction: column; }
.floating-cta-price .price-label { font-size: 0.6rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.floating-cta-price .price-value { font-size: 1.5rem; font-weight: 900; color: #fff; font-style: italic; }
.floating-cta-price .price-value span { color: #ff0033; font-size: 1rem; }
.floating-cta-btn {
    background: #ff0033; color: #fff; border: none;
    padding: 0.75rem 1.5rem; font-weight: 900; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
    text-decoration: none; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    transition: all 0.2s;
}
.floating-cta-btn:hover { background: #fff; color: #ff0033; }

@media (max-width: 1024px) {
    .floating-cta-bar { display: flex; }
    /* Ajustar padding-bottom para páginas com floating-cta-bar */
    body.has-offer-bar {
        padding-bottom: 90px;
    }
}