/* ========================================
   PROTOCOLO CONSCIÊNCIA PROIBIDA
   Dark Premium | Cyberpunk Minimalist
   ======================================== */

/* CSS Variables - Design Tokens */
:root {
    /* Colors - Cyberpunk Palette */
    --color-bg-primary: #000000;
    --color-bg-secondary: #0F0F0F;
    --color-matrix-green: #00FF41;
    --color-electric-blue: #00F0FF;
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-tertiary: rgba(255, 255, 255, 0.5);
    --color-glass: rgba(255, 255, 255, 0.05);
    --color-glass-hover: rgba(255, 255, 255, 0.08);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-bright: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Roboto Mono', 'Courier New', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Effects */
    --blur-glass: blur(10px);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-size: var(--text-lg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--text-6xl);
}

h2 {
    font-size: var(--text-5xl);
}

h3 {
    font-size: var(--text-3xl);
}

strong {
    font-weight: 700;
    color: var(--color-text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-matrix-green), var(--color-electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neon-green {
    color: var(--color-matrix-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.neon-blue {
    color: var(--color-electric-blue);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   GLASSMORPHISM COMPONENTS
   ======================================== */

.glass-card {
    background: var(--color-glass);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.glass-card:hover {
    background: var(--color-glass-hover);
    border-color: var(--color-border-bright);
}

/* ========================================
   BUTTONS & CTAs
   ======================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-primary {
    background: linear-gradient(135deg, var(--color-matrix-green), var(--color-electric-blue));
    color: #000;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.4);
}

.cta-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-2xl);
    width: 100%;
    max-width: 600px;
    margin: var(--space-xl) auto 0;
}

.glow-effect {
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.3);
}

.cta-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-base);
}

.cta-button:hover .cta-icon {
    transform: translateX(4px);
}

/* ========================================
   LUCIDE ICONS STYLING
   ======================================== */

.solution-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    stroke-width: 1.5px;
}

.solution-icon.neon-green {
    color: var(--color-matrix-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.6));
}

.solution-icon.neon-blue {
    color: var(--color-electric-blue);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-subheadline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    font-weight: 400;
}

.hero-disclaimer {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
    margin-top: var(--space-md);
    font-style: italic;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.problem-text {
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
}

.problem-text:last-of-type {
    margin-bottom: var(--space-xl);
}

/* Glitch Effect */
.glitch-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-xl);
    overflow: hidden;
}

.glitch-silhouette {
    width: 120px;
    height: 180px;
    background: linear-gradient(135deg, var(--color-matrix-green), var(--color-electric-blue));
    clip-path: polygon(30% 0%, 70% 0%, 85% 20%, 85% 80%, 70% 100%, 30% 100%, 15% 80%, 15% 20%);
    opacity: 0.3;
    animation: glitch 3s infinite;
    position: relative;
}

@keyframes glitch {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    10% {
        transform: translate(-5px, 2px);
        opacity: 0.5;
    }

    20% {
        transform: translate(5px, -2px);
        opacity: 0.4;
    }

    30% {
        transform: translate(-2px, 3px);
        opacity: 0.6;
    }

    40% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
}

/* ========================================
   SOLUTION SECTION
   ======================================== */

.solution-section {
    background-color: var(--color-bg-primary);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.solution-card {
    text-align: center;
    transition: all var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.solution-card-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.solution-card-text {
    color: var(--color-text-secondary);
    font-size: var(--text-base);
    line-height: 1.5;
}

/* ========================================
   WHAT'S INSIDE SECTION (TERMINAL)
   ======================================== */

.whats-inside-section {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.terminal-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid var(--color-border-bright);
}

.terminal-header {
    padding: var(--space-sm) var(--space-lg);
    background: rgba(0, 255, 65, 0.05);
    border-bottom: 1px solid var(--color-border);
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--color-matrix-green);
}

.terminal-title {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.terminal-list {
    list-style: none;
    padding: var(--space-lg);
}

.terminal-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-family: var(--font-mono);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.terminal-item:hover {
    color: var(--color-matrix-green);
    padding-left: var(--space-sm);
}

.terminal-icon {
    width: 16px;
    height: 16px;
    color: var(--color-electric-blue);
    flex-shrink: 0;
}

.terminal-prefix {
    color: var(--color-matrix-green);
    font-weight: 700;
}

.terminal-text {
    flex: 1;
}

/* ========================================
   AUTHORITY SECTION
   ======================================== */

.authority-section {
    background-color: var(--color-bg-primary);
}

.authority-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.authority-text {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    color: var(--color-text-secondary);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-glass);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    text-align: left;
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    color: var(--color-electric-blue);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
    flex-shrink: 0;
}

.guarantee-text-container strong {
    display: block;
    font-size: var(--text-xl);
    margin-bottom: 4px;
}

.guarantee-text-container p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin: 0;
}

/* ========================================
   OFFER SECTION
   ======================================== */

.offer-section {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    padding: var(--space-4xl) 0;
}

.offer-stack {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.offer-price {
    margin-bottom: var(--space-xl);
}

.price-old {
    font-size: var(--text-xl);
    color: var(--color-text-tertiary);
    text-decoration: line-through;
    margin-bottom: var(--space-xs);
}

.price-current {
    font-size: var(--text-3xl);
    color: var(--color-text-secondary);
}

.price-current .neon-green {
    font-size: var(--text-4xl);
    font-weight: 900;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--color-bg-secondary);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    text-align: center;
}

.footer-quote {
    font-size: var(--text-2xl);
    font-weight: 300;
    margin-bottom: var(--space-xl);
    line-height: 1.5;
}

.legal-disclaimers {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.legal-disclaimer {
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-disclaimer:last-child {
    margin-bottom: 0;
}

.footer-links {
    margin-bottom: var(--space-lg);
}

.footer-link {
    color: var(--color-text-tertiary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
    cursor: pointer;
}

.footer-link:hover {
    color: var(--color-matrix-green);
}

.footer-separator {
    margin: 0 var(--space-sm);
    color: var(--color-text-tertiary);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

/* ========================================
   MODALS
   ======================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border-bright);
    border-radius: 20px;
    padding: var(--space-2xl);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 60px rgba(0, 255, 65, 0.2);
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: transparent;
    border: none;
    color: var(--color-text-tertiary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-matrix-green);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--color-matrix-green), var(--color-electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: var(--space-2xl);
}

.modal-body {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: var(--space-md);
}

.modal-body p:last-child {
    margin-bottom: 0;
}

/* ========================================
   ANIMATIONS & SCROLL EFFECTS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --space-4xl: 4rem;
        --space-3xl: 3rem;
    }

    section {
        padding: var(--space-3xl) 0;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .glass-card {
        padding: var(--space-lg);
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }

    .modal-content {
        padding: var(--space-xl);
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--text-lg);
    }

    .cta-large {
        font-size: var(--text-xl);
        padding: var(--space-lg) var(--space-xl);
    }

    .terminal-item {
        font-size: var(--text-sm);
    }
}