/* ==========================================================================
   Tactical HUD Design System & Core Styles
   ========================================================================== */

:root {
    --bg-main: #06090d;
    --bg-darker: #030406;
    --bg-panel: rgba(13, 20, 30, 0.75);
    --bg-panel-solid: #0d141e;
    
    /* Neon HUD Palette */
    --neon-green: #00ff88;
    --neon-green-glow: rgba(0, 255, 136, 0.35);
    --neon-green-glow-strong: rgba(0, 255, 136, 0.7);
    
    --hazard-amber: #ffaa00;
    --hazard-amber-glow: rgba(255, 170, 0, 0.3);
    
    --cyber-blue: #00d9ff;
    --cyber-blue-glow: rgba(0, 217, 255, 0.25);
    
    --border-color: rgba(0, 255, 136, 0.2);
    --border-color-amber: rgba(255, 170, 0, 0.25);
    --border-color-focus: rgba(0, 255, 136, 0.6);
    
    --text-primary: #e2e8f0;
    --text-muted: #8a9ba8;
    --text-dark: #06090d;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Fonts */
    --font-header: 'Orbitron', system-ui, -apple-system, sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Custom Scrollbar for High-Tech feel */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* ==========================================================================
   HUD Hologram Overlay Effects
   ========================================================================== */

/* Neon Grid Background */
.hud-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-position: center;
    pointer-events: none;
    z-index: -2;
}

.hud-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--bg-darker) 85%);
    pointer-events: none;
}

/* Subtle Animated Scanlines */
.hud-scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.15) 50%
    );
    background-size: 100% 4px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.85;
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(3, 4, 6, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo h1 {
    font-family: var(--font-header);
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.header-logo h1 span {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.pulse-indicator-green {
    width: 10px;
    height: 10px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: beaconPulse 2s infinite;
}

.header-nav {
    display: flex;
    gap: 1.5rem;
    font-family: var(--font-header);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--neon-green);
    border-color: var(--border-color);
    background: rgba(0, 255, 136, 0.04);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.m-break { display: none; }
.d-space { display: inline; }

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.hud-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

section {
    padding: 4rem 0;
    position: relative;
}

/* General Headings */
.section-title {
    font-family: var(--font-header);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.text-center { text-align: center; }
.text-neon-green { color: var(--neon-green); text-shadow: 0 0 8px var(--neon-green-glow); }
.text-hazard-amber { color: var(--hazard-amber); text-shadow: 0 0 8px var(--hazard-amber-glow); }
.text-cyber-blue { color: var(--cyber-blue); text-shadow: 0 0 8px var(--cyber-blue-glow); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.section-hero {
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.alert-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 170, 0, 0.08);
    border: 1px solid var(--border-color-amber);
    color: var(--hazard-amber);
    padding: 0.5rem 0.85rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.icon-pulse {
    animation: simplePulse 1.5s infinite alternate;
}

.hero-title {
    font-family: var(--font-header);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Pricing and Perks Panel */
.promo-box {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.promo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.promo-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-family: var(--font-mono);
}

.price-current {
    color: var(--neon-green);
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-mono);
    text-shadow: 0 0 15px var(--neon-green-glow);
}

.promo-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.perk-item svg {
    color: var(--neon-green);
    filter: drop-shadow(0 0 3px var(--neon-green-glow));
    flex-shrink: 0;
}

/* Call to Actions Buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.btn-primary:hover {
    background: #00e577;
    box-shadow: 0 0 25px var(--neon-green-glow-strong);
    transform: translateY(-2px);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: none;
    animation: buttonShine 4s infinite ease-in-out;
}

.btn-text {
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.btn-subtext {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    opacity: 0.85;
    margin-top: 0.15rem;
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    color: var(--neon-green);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-glow);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 3rem;
    width: 100%;
    max-width: 500px;
}

.pulse-btn {
    animation: btnPulse 2.5s infinite;
}

/* ==========================================================================
   Hero Media & 3D Cover Mockup
   ========================================================================== */
.hero-media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.3d-card-wrap {
    position: relative;
    width: 100%;
    max-width: 320px;
    padding: 1.5rem;
    background: rgba(8, 14, 22, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    perspective: 1000px;
    transition: transform var(--transition-normal);
}

.3d-card-wrap:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 25px var(--neon-green-glow);
}

.ebook-3d-card {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
}

.carousel-track {
    display: flex;
    width: 200%; /* 2 slides */
    transition: transform var(--transition-normal);
}

.carousel-slide {
    width: 50%;
    flex-shrink: 0;
}

.ebook-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(3, 4, 6, 0.7);
    border: 1px solid var(--border-color);
    color: var(--neon-green);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    z-index: 10;
    transition: all var(--transition-fast);
    opacity: 0;
    pointer-events: none;
}

.3d-card-wrap:hover .carousel-arrow {
    opacity: 1;
    pointer-events: auto;
}

.carousel-arrow:hover {
    background: var(--neon-green);
    color: var(--text-dark);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

/* Neon Scanner Line Animation Overlay */
.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--neon-green), transparent);
    box-shadow: 0 0 8px var(--neon-green), 0 0 15px var(--neon-green);
    opacity: 0.8;
    pointer-events: none;
    animation: scanAnimation 3s infinite linear;
}

.hud-angle-corners::before,
.hud-angle-corners::after,
.3d-card-wrap::before,
.3d-card-wrap::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--neon-green);
    border-style: solid;
    pointer-events: none;
}

/* Corner angles for sci-fi look */
.hud-angle-corners::before { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.hud-angle-corners::after { top: -2px; right: -2px; border-width: 2px 2px 0 0; }
.3d-card-wrap::before { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; }
.3d-card-wrap::after { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

.media-telemetry {
    margin-top: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.telemetry-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
    position: relative;
}

.telemetry-progress {
    height: 100%;
    background-color: var(--neon-green);
    box-shadow: 0 0 5px var(--neon-green);
}

.telemetry-labels {
    display: flex;
    justify-content: space-between;
    letter-spacing: 1px;
}

/* ==========================================================================
   Glitch Typography Effect
   ========================================================================== */
.glitch-text {
    position: relative;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    overflow: hidden;
    clip: rect(0, 900px, 0, 0); 
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    animation: glitchAnim1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9, 0 1px #00fff9;
    animation: glitchAnim2 3s infinite linear alternate-reverse;
}

/* ==========================================================================
   HUD Panel (Holographic Card)
   ========================================================================== */
.hud-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    width: 100%;
}

.hud-panel-header {
    background: rgba(0, 255, 136, 0.04);
    border-bottom: 1px solid var(--border-color);
    padding: 0.85rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hud-panel-header h3 {
    font-family: var(--font-header);
    font-size: 1.05rem;
    color: var(--neon-green);
    letter-spacing: 1px;
    font-weight: 700;
}

.panel-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.15rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.hud-panel-body {
    padding: 2.25rem 2rem;
}

.pulse-border-amber {
    border-color: var(--border-color-amber);
    animation: borderAmberPulse 3s infinite alternate;
}

/* ==========================================================================
   Survival Readiness Quiz
   ========================================================================== */
.quiz-lead {
    font-size: 1.15rem;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2rem auto;
    color: var(--text-muted);
}

#quiz-intro {
    text-align: center;
}

.quiz-container {
    max-width: 720px;
    margin: 0 auto;
}

/* Progress trackers */
.quiz-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    width: 25%;
    background-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    transition: width var(--transition-normal);
}

.quiz-step-info {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-align: right;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.quiz-question {
    font-family: var(--font-header);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: #ffffff;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-option {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    text-align: left;
    align-items: flex-start;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    transition: all var(--transition-fast);
}

.btn-option:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--neon-green);
    color: var(--neon-green);
    transform: translateX(5px);
}

/* Results Display */
.quiz-results {
    max-width: 800px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

/* Radar Sweep Graphics Simulation */
.hud-radar-simulation {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: radial-gradient(circle, rgba(0, 255, 136, 0.04) 20%, transparent 70%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hud-radar-simulation::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 1px dashed rgba(0, 255, 136, 0.15);
}

.hud-radar-simulation::after {
    content: '';
    position: absolute;
    width: 35%;
    height: 35%;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    background: linear-gradient(35deg, rgba(0, 255, 136, 0.25) 0%, transparent 60%);
    transform-origin: 0% 0%;
    animation: radarRotation 4s infinite linear;
    pointer-events: none;
}

.radar-score-num {
    font-family: var(--font-mono);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green-glow);
    z-index: 2;
}

.radar-label {
    font-family: var(--font-header);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 0.25rem;
    z-index: 2;
}

/* Assessment Copy */
.results-assessment h4 {
    font-family: var(--font-header);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.results-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.recommendation-badge {
    background: rgba(255, 170, 0, 0.07);
    border: 1px solid var(--border-color-amber);
    padding: 0.85rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.recommendation-badge strong {
    color: var(--hazard-amber);
}

/* ==========================================================================
   Blueprint Modules Viewer
   ========================================================================== */
.blueprint-hud {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    align-items: stretch;
}

.blueprint-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-tab {
    width: 100%;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    padding: 1rem 1.25rem;
    text-align: left;
    transition: all var(--transition-fast);
}

.btn-tab .tab-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

.btn-tab .tab-title {
    font-family: var(--font-header);
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.25rem;
    letter-spacing: 1px;
}

.btn-tab:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 255, 136, 0.2);
    color: var(--text-primary);
}

.btn-tab.active {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--neon-green);
    color: var(--neon-green);
    position: relative;
}

.btn-tab.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.blueprint-content-viewer {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2rem;
    min-height: 380px;
    position: relative;
    backdrop-filter: blur(8px);
    overflow: hidden;
    z-index: 1001; /* Fica acima das listras (scanlines) */
}

.blueprint-scroll-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
    cursor: grab;
}

.blueprint-scroll-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.blueprint-scroll-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.blueprint-tab-panel {
    display: flex !important;
    flex: 0 0 100%;
    scroll-snap-align: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    padding: 0 1rem;
    opacity: 0.15;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blueprint-tab-panel.active {
    opacity: 1;
}

.blueprint-tab-panel img {
    user-select: none;
    -webkit-user-drag: none;
}

.panel-glitch-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.hud-sys-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--cyber-blue);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.25rem;
}

.panel-glitch-header h4 {
    font-family: var(--font-header);
    font-size: 1.35rem;
    color: #ffffff;
}

.panel-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panel-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.panel-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.75rem;
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green-glow);
}

/* ==========================================================================
   Reviews / Testimonials
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(13, 20, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--border-color);
    background: rgba(13, 20, 30, 0.75);
    transform: translateY(-5px);
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.agent-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--cyber-blue);
    letter-spacing: 1px;
}

.agent-rating {
    color: var(--hazard-amber);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0.35rem 0 1rem 0;
}

.agent-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.agent-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.agent-footer strong {
    color: var(--neon-green);
}

/* ==========================================================================
   Footer Call to Action Panel
   ========================================================================== */
.section-cta-footer {
    padding-bottom: 6rem;
}

.cta-warning-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 1.25rem auto 2.5rem auto;
}

.price-action {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 2.25rem;
}

.price-tag {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green-glow);
}

.tax-tag {
    font-family: var(--font-header);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.security-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Interactive Checkout Modal
   ========================================================================== */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 4, 6, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.checkout-modal {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: modalSlideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.checkout-header {
    background: rgba(0, 255, 136, 0.05);
    border-bottom: 1px solid var(--border-color);
    padding: 1.1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-header h3 {
    font-family: var(--font-header);
    font-size: 0.95rem;
    color: var(--neon-green);
    letter-spacing: 1px;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.close-btn:hover {
    color: #ffffff;
}

.checkout-body {
    padding: 1.5rem;
}

/* Order Summary Box */
.order-summary {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Form Styles */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-row label {
    font-family: var(--font-header);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.form-row input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-row input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-row input:focus {
    border-color: var(--border-color-focus);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
}

/* Highlighted Credit Card Details container */
.card-details-box {
    background: rgba(0, 255, 136, 0.01);
    border: 1px solid rgba(0, 255, 136, 0.08);
    padding: 1rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-tip {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.checkout-actions {
    margin-top: 0.75rem;
}

.checkout-actions button {
    width: 100%;
}

.checkout-footer {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
}

/* Validation Visual Helper */
.form-row input.valid {
    border-color: var(--neon-green) !important;
}

.form-row input.invalid {
    border-color: red !important;
}

/* ==========================================================================
   Secure Delivery Dashboard Overlay
   ========================================================================== */
.delivery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.delivery-container {
    background: var(--bg-panel-solid);
    border: 2px solid var(--border-color);
    width: 100%;
    max-width: 750px;
    position: relative;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

.delivery-header h2 {
    font-family: var(--font-header);
    font-size: 1.6rem;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green-glow);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.delivery-subnet {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

/* Decryption Console Simulation */
.decryption-box {
    margin-bottom: 2rem;
}

.decryption-title {
    font-family: var(--font-header);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.console-box {
    background: #030406;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 4px;
    min-height: 150px;
    max-height: 200px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.console-line {
    opacity: 0.9;
}

.console-line.error {
    color: red;
}

.delivery-progress-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.delivery-progress-bar {
    flex-grow: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.delivery-progress-fill {
    height: 100%;
    width: 0%;
    background-color: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-glow-strong);
    transition: width 0.1s linear;
}

.delivery-percentage {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-green);
    min-width: 55px;
    text-align: right;
}

/* Success Download Panel */
.download-portal-box {
    animation: fadeIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.success-banner {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid var(--border-color);
    color: var(--neon-green);
    font-family: var(--font-header);
    font-size: 0.95rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.download-tip-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-actions {
    margin-bottom: 2.5rem;
}

.download-actions .btn {
    width: 100%;
}

.package-contents {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.package-contents h5 {
    font-family: var(--font-header);
    font-size: 0.85rem;
    color: var(--cyber-blue);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.package-contents ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.package-contents li {
    font-size: 0.85rem;
    color: var(--text-primary);
}

/* Helper hidden class */
.hidden {
    display: none !important;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.main-footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: #030406;
}

.main-footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.footer-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
    display: inline-block;
    margin-top: 0.5rem;
}

.footer-link:hover {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green-glow);
}

/* ==========================================================================
   CSS Animations Keyframes
   ========================================================================== */

/* Beacon pulsating signal light */
@keyframes beaconPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* Radar Rotation */
@keyframes radarRotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Simple pulsating animation */
@keyframes simplePulse {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Glow breathing pulse button */
@keyframes btnPulse {
    0% { box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 4px 28px rgba(0, 255, 136, 0.55); }
    100% { box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2); }
}

@keyframes borderAmberPulse {
    0% { border-color: rgba(255, 170, 0, 0.25); }
    50% { border-color: rgba(255, 170, 0, 0.65); box-shadow: 0 0 10px rgba(255, 170, 0, 0.15); }
    100% { border-color: rgba(255, 170, 0, 0.25); }
}

/* Button gloss shine transition sweep */
@keyframes buttonShine {
    0% { left: -60%; }
    15% { left: 130%; }
    100% { left: 130%; }
}

/* Futuristic Scanline Overlay Sweeper */
@keyframes scanAnimation {
    0% { top: 0%; }
    50% { top: 100%; opacity: 0.8; }
    50.001% { top: 100%; opacity: 0; }
    50.002% { top: 0%; opacity: 0; }
    50.1% { top: 0%; opacity: 0.8; }
    100% { top: 100%; }
}

/* Glitch typography keyframe 1 */
@keyframes glitchAnim1 {
    0% { clip: rect(12px, 9999px, 66px, 0); }
    5% { clip: rect(78px, 9999px, 12px, 0); }
    10% { clip: rect(4px, 9999px, 89px, 0); }
    15% { clip: rect(61px, 9999px, 5px, 0); }
    20% { clip: rect(25px, 9999px, 30px, 0); }
    25% { clip: rect(80px, 9999px, 92px, 0); }
    30% { clip: rect(3px, 9999px, 18px, 0); }
    35% { clip: rect(44px, 9999px, 55px, 0); }
    40% { clip: rect(98px, 9999px, 10px, 0); }
    45% { clip: rect(15px, 9999px, 73px, 0); }
    50% { clip: rect(56px, 9999px, 48px, 0); }
    55% { clip: rect(38px, 9999px, 82px, 0); }
    60% { clip: rect(85px, 9999px, 20px, 0); }
    65% { clip: rect(7px, 9999px, 33px, 0); }
    70% { clip: rect(50px, 9999px, 64px, 0); }
    75% { clip: rect(90px, 9999px, 9px, 0); }
    80% { clip: rect(18px, 9999px, 42px, 0); }
    85% { clip: rect(63px, 9999px, 77px, 0); }
    90% { clip: rect(29px, 9999px, 12px, 0); }
    95% { clip: rect(72px, 9999px, 95px, 0); }
    100% { clip: rect(5px, 9999px, 23px, 0); }
}

/* Glitch typography keyframe 2 */
@keyframes glitchAnim2 {
    0% { clip: rect(32px, 9999px, 99px, 0); }
    5% { clip: rect(10px, 9999px, 23px, 0); }
    10% { clip: rect(85px, 9999px, 47px, 0); }
    15% { clip: rect(3px, 9999px, 78px, 0); }
    20% { clip: rect(54px, 9999px, 12px, 0); }
    25% { clip: rect(67px, 9999px, 90px, 0); }
    30% { clip: rect(21px, 9999px, 35px, 0); }
    35% { clip: rect(89px, 9999px, 5px, 0); }
    40% { clip: rect(12px, 9999px, 63px, 0); }
    45% { clip: rect(76px, 9999px, 18px, 0); }
    50% { clip: rect(43px, 9999px, 88px, 0); }
    55% { clip: rect(98px, 9999px, 30px, 0); }
    60% { clip: rect(9px, 9999px, 74px, 0); }
    65% { clip: rect(61px, 9999px, 41px, 0); }
    70% { clip: rect(80px, 9999px, 99px, 0); }
    75% { clip: rect(15px, 9999px, 2px, 0); }
    80% { clip: rect(72px, 9999px, 53px, 0); }
    85% { clip: rect(38px, 9999px, 85px, 0); }
    90% { clip: rect(93px, 9999px, 16px, 0); }
    95% { clip: rect(4px, 9999px, 60px, 0); }
    100% { clip: rect(50px, 9999px, 73px, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Image Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 4, 6, 0.95);
    backdrop-filter: blur(15px);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.lightbox-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-scroll-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    height: 90vh;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.lightbox-scroll-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.lightbox-scroll-track::-webkit-scrollbar {
    display: none;
}

.lightbox-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
    box-sizing: border-box;
    padding: 0 1rem;
}

.lightbox-zoom-img {
    max-width: 96%;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--border-color);
    transition: transform 0.2s ease;
    animation: modalSlideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Lightbox Navigation Arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-size: 2rem;
    font-family: var(--font-mono);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-fast);
    z-index: 3100;
}

.lightbox-arrow:hover {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: #0d1117;
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.lightbox-arrow.prev {
    left: 40px;
}

.lightbox-arrow.next {
    right: 40px;
}

/* Swipe Indicator Bottom */
.lightbox-indicator {
    position: absolute;
    bottom: 40px;
    background: rgba(13, 17, 23, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    z-index: 3100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: indicatorPulse 2s infinite ease-in-out;
}

.lightbox-indicator .indicator-icon {
    font-size: 1.1rem;
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-muted);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 3200;
}

.lightbox-close:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-green);
}

@media (max-width: 767px) {
    .lightbox-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .lightbox-arrow.prev {
        left: 15px;
    }
    
    .lightbox-arrow.next {
        right: 15px;
    }
    
    .lightbox-indicator {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        bottom: 25px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 25px;
    }
}

.zoomable-image {
    cursor: zoom-in;
    transition: transform var(--transition-normal);
}

.zoomable-image:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Up to Small Tablets & Large Phones */
@screen-sm {
    /* Responsive breakpoints defined directly using media queries below */
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-media {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .alert-banner {
        justify-content: center;
    }
    
    .promo-box::before {
        width: 100%;
        height: 3px;
    }
    
    .promo-perks {
        justify-items: center;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .blueprint-hud {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blueprint-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .btn-tab {
        width: 75vw;
        max-width: 300px;
        flex: 0 0 auto;
        text-align: center;
        align-items: center;
        padding: 0.8rem 1rem;
    }
    
    .btn-tab.active::before {
        width: 100%;
        height: 3px;
        left: 0;
        top: 0;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .carousel-arrow {
        opacity: 1;
        pointer-events: auto;
    }

    /* Section spacing adjustments */
    .section-hero {
        padding-bottom: 1.5rem;
    }

    .section-quiz {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .section-blueprint {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .section-testimonials {
        padding-top: 2rem;
    }

    .section-testimonials .section-title {
        font-size: clamp(1.15rem, 5vw, 1.45rem);
    }
}

@media (max-width: 600px) {
    .hud-header {
        flex-direction: column;
        gap: 0.85rem;
        padding: 1rem;
        text-align: center;
    }
    
    .header-nav {
        gap: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .header-logo h1 {
        font-size: 1.15rem;
        letter-spacing: 1px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
        text-align: center;
        line-height: 1.3;
        display: inline-block;
        vertical-align: middle;
    }
    
    .header-nav {
        align-items: center; /* Alinha o SOBRE verticalmente */
    }

    .m-break { display: block; }
    .d-space { display: none; }
    
    .hud-container {
        padding: 1.5rem 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .promo-box {
        padding: 1rem;
    }
    
    .price-current {
        font-size: 1.8rem;
    }
    
    .promo-perks {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.8rem 1.2rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .btn-text {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .btn-subtext {
        font-size: 0.7rem;
    }
    
    .hud-panel-body {
        padding: 1.25rem 0.85rem;
    }
    
    .blueprint-content-viewer {
        padding: 1.25rem 0.85rem;
        min-height: auto;
    }
    
    .panel-list li {
        font-size: 0.85rem;
    }
    
    .form-cols {
        grid-template-columns: 1fr;
    }
    
    .package-contents ul {
        grid-template-columns: 1fr;
    }
    
    .delivery-container {
        padding: 1.5rem 1rem;
    }
    
    .delivery-header h2 {
        font-size: 1.15rem;
    }
    
    .section-title.product-selection-title {
        font-size: clamp(1.1rem, 5.2vw, 1.45rem);
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle.product-selection-subtitle {
        font-size: clamp(0.7rem, 2.7vw, 0.95rem);
        white-space: nowrap;
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
   Collapsible Details Element (Holographic Accordion)
   ========================================================================== */
.hud-details {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: border-color var(--transition-normal);
}

.hud-details[open] {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.08);
}

.hud-details-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
    font-family: var(--font-header);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-green);
    cursor: pointer;
    list-style: none;
    user-select: none;
    border-bottom: 1px solid transparent;
    transition: background var(--transition-fast);
}

.hud-details-summary:hover {
    background: rgba(0, 255, 136, 0.02);
}

.hud-details[open] .hud-details-summary {
    border-bottom-color: var(--border-color);
    background: rgba(0, 255, 136, 0.03);
}

.hud-details-summary::-webkit-details-marker {
    display: none;
}

.summary-text {
    letter-spacing: 1px;
}

.summary-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hud-details-content {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hud-details-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-primary);
    text-align: justify;
}

.hud-details-content em {
    color: var(--cyber-blue);
    font-style: normal;
    font-weight: 600;
}

/* ==========================================================================
   Tactical Grid Row & Small HUD Boxes
   ========================================================================== */
.hud-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hud-box {
    background: rgba(13, 20, 30, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
    transition: all var(--transition-fast);
}

.hud-box:hover {
    border-color: var(--neon-green);
    background: rgba(13, 20, 30, 0.65);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.hud-box h4 {
    font-family: var(--font-header);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cyber-blue);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.hud-box p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: justify;
}

/* Responsive adjust for the grid row */
@media (max-width: 600px) {
    .hud-grid-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   Product Selection Grid
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.product-card {
    background: rgba(13, 20, 30, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 6px;
    padding: 2rem;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background var(--transition-fast);
}

.product-card.selected {
    border-color: var(--neon-green);
    background: rgba(0, 255, 136, 0.03);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.08);
}

.product-card.selected::before {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.product-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.product-image-container {
    width: 100%;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: rgba(3, 4, 6, 0.45);
    border: 1px solid rgba(0, 255, 136, 0.08);
    border-radius: 4px;
    padding: 0.75rem;
    height: 220px;
    transition: border-color var(--transition-normal), background var(--transition-normal);
}

.product-card.selected .product-image-container {
    border-color: rgba(0, 255, 136, 0.25);
    background: rgba(3, 4, 6, 0.6);
}

.product-card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}

.product-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--cyber-blue);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.product-card.selected .product-badge {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.2);
    color: var(--neon-green);
}

.product-badge.best-deal {
    background: rgba(255, 170, 0, 0.08);
    border-color: rgba(255, 170, 0, 0.25);
    color: var(--hazard-amber);
}

.product-title {
    font-family: var(--font-header);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 1rem 0 1.5rem 0;
    line-height: 1.5;
}

.product-perks-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-perks-list li {
    font-size: 0.8rem;
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-primary);
}

.product-perks-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.product-price-box {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-label {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-green);
}

.radio-select-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.product-card.selected .radio-select-indicator {
    border-color: var(--neon-green);
}

.radio-select-indicator::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon-green);
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-fast);
}

.product-card.selected .radio-select-indicator::after {
    opacity: 1;
    transform: scale(1);
}

/* Purchase summary panel */
.products-summary-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
}

.summary-selection-text {
    font-family: var(--font-header);
    font-size: 1rem;
    color: var(--text-primary);
}

.summary-selection-text span {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.summary-price-total {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--neon-green);
}

@media (max-width: 768px) {
    .products-summary-panel {
        flex-direction: column;
        text-align: center;
    }
}

/* Payment Method Selector */
.payment-method-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.payment-method-selector label.selector-title {
    font-family: var(--font-header);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-method-option {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    user-select: none;
}

.payment-method-option:hover {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.02);
}

.payment-method-option.active {
    border-color: var(--neon-green);
    background: rgba(0, 255, 136, 0.08);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
}

.payment-icon {
    font-size: 1.1rem;
}

.payment-label {
    font-family: var(--font-header);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* PIX Container Layout */
.pix-container {
    background: rgba(0, 255, 136, 0.01);
    border: 1px solid rgba(0, 255, 136, 0.08);
    padding: 1.25rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.3s ease;
}

.pix-qr-title {
    font-family: var(--font-header);
    font-size: 0.85rem;
    color: var(--neon-green);
    letter-spacing: 0.5px;
    text-align: center;
}

.pix-qr-wrapper {
    background: #ffffff;
    padding: 0.75rem;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
    width: 180px;
    height: 180px;
}

.pix-qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pix-instructions {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

.pix-copia-cola-box {
    display: flex;
    width: 100%;
    gap: 0.5rem;
}

.pix-copia-cola-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--text-muted) !important;
    font-family: var(--font-mono) !important;
    font-size: 0.7rem !important;
    padding: 0.5rem !important;
    border-radius: 4px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.btn-copy-pix {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-header);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.btn-copy-pix:hover {
    background: var(--neon-green);
    color: var(--text-dark);
    box-shadow: 0 0 8px var(--neon-green-glow);
}

.payment-icon-img {
    height: 18px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

button:disabled,
.btn:disabled,
.btn-glow:disabled {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-muted) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    animation: none !important;
    opacity: 0.5 !important;
}

/* Mercado Pago Secure Fields Containers */
.secure-field-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    height: 48px;
    display: flex;
    align-items: center;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.secure-field-container:focus-within {
    border-color: var(--border-color-focus, #00ff88);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
}

.secure-field-container iframe {
    width: 100%;
    height: 100%;
    border: none !important;
    outline: none !important;
}

/* Wrapper para Botão + Imagem Formas de Pagamento */
.action-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.payment-methods-custom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.payment-title {
    font-family: var(--font-header);
    font-size: 0.85rem;
    color: #fff;
    margin: 0;
}

.payment-icons-row {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.pay-icon {
    height: 26px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.payment-secure {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.shield-icon {
    color: var(--neon-green);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .action-buttons-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .payment-methods-custom {
        align-items: center;
    }
}

/* Contact Modal */
.contact-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}

.contact-modal-overlay.hidden {
    display: none;
}

.contact-modal-box {
    background: rgba(13, 20, 30, 0.95);
    border: 1px solid rgba(10, 241, 10, 0.3);
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 0 30px rgba(10, 241, 10, 0.1);
    box-sizing: border-box;
}

.contact-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.contact-close:hover {
    color: var(--neon-green);
}

.contact-modal-title {
    color: var(--neon-green);
    font-family: var(--font-header);
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   Produtos & Gadgets Page Styles
   ========================================================================== */

.gadgets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.gadget-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gadget-card:hover {
    transform: translateY(-5px);
}

.gadget-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #222;
}

.gadget-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gadget-content {
    padding: 1.5rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gadget-title {
    color: #333;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.gadget-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    width: 100%;
    margin-top: auto;
}

.gadget-btn {
    display: block;
    text-align: center;
    padding: 0.6rem 0.2rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
}

.gadget-btn.ml { background-color: #ffe600; color: #2d3277; }
.gadget-btn.ml:hover { background-color: #ffd000; }

.gadget-btn.shopee { background-color: #ee4d2d; }
.gadget-btn.shopee:hover { background-color: #d73a1e; }

.gadget-btn.amazon { background-color: #232f3e; }
.gadget-btn.amazon:hover { background-color: #131a22; }

.gadget-btn.ali { background-color: #ff4747; }
.gadget-btn.ali:hover { background-color: #e63939; }

@media (max-width: 991px) {
    .gadgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gadgets-grid {
        grid-template-columns: 1fr;
    }
}

/* Automatic Carousel Specific */
.carousel-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0;
    z-index: 1001;
}
.carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 800% !important; /* 8 items = 800% */
    height: 100% !important;
    animation: slideCarousel 32s infinite;
}
.carousel-track img {
    flex: 0 0 12.5% !important;
    width: 12.5% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

@keyframes slideCarousel {
    0%, 9% { transform: translateX(0); }
    12.5%, 21.5% { transform: translateX(-12.5%); }
    25%, 34% { transform: translateX(-25%); }
    37.5%, 46.5% { transform: translateX(-37.5%); }
    50%, 59% { transform: translateX(-50%); }
    62.5%, 71.5% { transform: translateX(-62.5%); }
    75%, 84% { transform: translateX(-75%); }
    87.5%, 96.5% { transform: translateX(-87.5%); }
    100% { transform: translateX(0); }
}

.produtos-subtitle {
    color: #fff;
    font-family: var(--font-header);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin: 0 auto 4rem auto;
    max-width: 700px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .produtos-subtitle {
        font-size: 1.15rem;
    }
}

/* ==========================================================================
   Blueprint Mobile Arrows
   ========================================================================== */
.blueprint-arrow {
    display: none;
}

@media (max-width: 992px) {
    .blueprint-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.85);
        border: 1px solid var(--neon-green);
        color: var(--neon-green);
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 20;
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
        transition: all 0.3s ease;
    }
    .blueprint-arrow:active {
        background: rgba(0, 255, 136, 0.2);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
    .blueprint-arrow.prev { left: 4px; }
    .blueprint-arrow.next { right: 4px; }
}

/* ==========================================================================
   Audiobook Modal Styles
   ========================================================================== */

.audiobook-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.audiobook-modal-overlay.hidden {
    display: none;
}

.audiobook-modal-box {
    position: relative;
    width: 90%;
    max-width: 450px;
    height: 85vh;
    max-height: 800px;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    display: flex;
    flex-direction: column;
}

.audiobook-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 3010;
}

.audiobook-close:hover {
    color: var(--neon-green);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 576px) {
    .audiobook-modal-box {
        width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
    }
    .video-container {
        border-radius: 0;
    }
    .audiobook-close {
        top: 15px;
        right: 15px;
        font-size: 2.5rem;
        text-shadow: 0 0 10px rgba(0,0,0,0.8);
    }
}
