/* ROOT_ACCESS - Layout Moderno Tech/Futurista */

:root {
    /* Paleta de Cores */
    --black: #000000;
    --dark-gray: #0B0B0F;
    --card-gray: #1E1E1E;
    --white: #FFFFFF;
    --light-gray: #C4C4C4;
    --neon-green: #00FF41;
    --cyan-blue: #00E5FF;
    --purple-accent: #6A00FF;
    
    /* Tipografia */
    --font-title: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Espaçamentos */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 64px;
    --space-2xl: 96px;
    
    --radius: 12px;
    --radius-lg: 20px;
}

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

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Textura de circuito sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(0, 255, 65, 0.03) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0, 255, 65, 0.03) 100%);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

/* Marca d'água Matrix */
body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background-image: url('matrix_watermark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    z-index: 1000;
    padding: var(--space-sm) 0;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.nav-brand h2 {
    color: var(--neon-green);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.brand-tagline {
    color: var(--light-gray);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Typography */
h1 {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.1;
}

h2 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(24px, 4vw, 48px);
    line-height: 1.2;
}

h3 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.3;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    background: #00FF41;
}

.btn-secondary {
    background: var(--cyan-blue);
    color: var(--black);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    background: #00E5FF;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: calc(var(--space-2xl) + 60px) 0 var(--space-2xl);
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--neon-green);
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

/* Terminal */
.terminal-container {
    background: var(--card-gray);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.1);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 6px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ff5f56; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #27ca3f; }

.terminal-title {
    color: var(--light-gray);
    font-family: var(--font-mono);
    font-size: 12px;
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 14px;
}

.terminal-line {
    margin-bottom: 8px;
}

.prompt {
    color: var(--neon-green);
}

.command {
    color: var(--white);
}

.cursor {
    color: var(--neon-green);
    animation: blink 1s infinite;
}

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

.terminal-output {
    margin-top: 12px;
}

.output-line {
    margin: 4px 0;
}

.output-line.success {
    color: var(--neon-green);
}

.output-line.info {
    color: var(--cyan-blue);
}

/* Matrix Agent */
.matrix-agent {
    display: flex;
    justify-content: center;
    align-items: center;
}

.matrix-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.3));
}

/* Services Section */
.services {
    padding: var(--space-2xl) 0;
    background: var(--dark-gray);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-card {
    background: var(--card-gray);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 65, 0.1);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.2);
}

.service-icon {
    flex-shrink: 0;
}

.service-content h3 {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.service-content p {
    color: var(--light-gray);
    font-size: 16px;
}

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

/* Black Code Section */
.black-code {
    padding: var(--space-2xl) 0;
    background: var(--black);
}

.warning-badge {
    background: linear-gradient(135deg, var(--purple-accent), #8A2BE2);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 20px rgba(106, 0, 255, 0.3);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.module-card {
    background: var(--card-gray);
    padding: var(--space-md);
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.module-card:hover {
    transform: translateY(-3px);
    border-color: var(--cyan-blue);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.2);
}

.module-card.bonus {
    border-color: var(--purple-accent);
    background: linear-gradient(135deg, var(--card-gray), rgba(106, 0, 255, 0.1));
}

.module-card.bonus:hover {
    border-color: var(--purple-accent);
    box-shadow: 0 15px 30px rgba(106, 0, 255, 0.3);
}

.module-number {
    background: var(--neon-green);
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.module-number.secondary {
    background: var(--cyan-blue);
}

.module-content h3 {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.module-content p {
    color: var(--light-gray);
    font-size: 14px;
    margin-bottom: var(--space-xs);
}

.bonus-tag {
    background: var(--purple-accent);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: -8px;
    right: var(--space-md);
}

.black-code-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-2xl) 0;
    background: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.testimonial {
    background: var(--card-gray);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.1);
}

.testimonial-content {
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    font-style: italic;
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-green), var(--cyan-blue));
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info span {
    color: var(--neon-green);
    font-size: 14px;
}

.stats-seals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.seal {
    text-align: center;
    padding: var(--space-lg);
    background: var(--card-gray);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neon-green);
    backdrop-filter: blur(10px);
}

.seal-number {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 32px;
    color: var(--neon-green);
    margin-bottom: var(--space-xs);
}

.seal-text {
    color: var(--light-gray);
    font-weight: 600;
    font-size: 14px;
}

/* Final Call Section */
.final-call {
    padding: var(--space-2xl) 0;
    background: var(--dark-gray);
}

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

.final-title {
    color: var(--white);
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-ctas {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: var(--space-xl) 0;
    background: var(--dark-gray);
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-brand h3 {
    color: var(--neon-green);
    font-family: var(--font-title);
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    color: var(--light-gray);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .module-card {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .final-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero {
        padding: var(--space-xl) 0;
    }
    
    .services,
    .black-code,
    .testimonials,
    .final-call {
        padding: var(--space-xl) 0;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

