/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-dark: #2a2a2a;
    --neon-blue: #00d4ff;
    --neon-purple: #8b5cf6;
    --neon-green: #00ff88;
    --text-primary: #ffffff;
    --text-secondary: #d1d1d1;
    --text-muted: #999999;
    --gradient-primary: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    --gradient-secondary: linear-gradient(135deg, var(--neon-purple), var(--neon-green));
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo {
    height: 40px;
    filter: brightness(1.2);
    z-index: 1001;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.desktop-nav a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.desktop-cta {
    display: inline-flex;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 30px;
    padding: 20px;
}

.mobile-nav-content a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid transparent;
}

.mobile-nav-content a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.mobile-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-neon);
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5) !important;
}

/* Buttons */
.cta-button, .cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neon);
    border: 1px solid transparent;
}

.cta-button-large {
    padding: 16px 32px;
    font-size: 1.1em;
}

.cta-button:hover, .cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    border-color: var(--neon-blue);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }
    100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--secondary-dark);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.neon-icon {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.section p {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(0, 212, 255, 0.1);
}/* Fe
ature Lists */
.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 1.1em;
    color: var(--text-secondary);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--neon-green);
    font-size: 1.2em;
    min-width: 20px;
}

/* Conversion Steps */
.conversion-steps {
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--neon-blue);
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    background: var(--secondary-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(0, 212, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.faq-item h3 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 1em;
}

/* Special Sections */
.scarcity-section {
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.final-cta {
    background: var(--secondary-dark);
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

.compliance {
    background: rgba(26, 26, 26, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--neon-blue);
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.footer-disclaimer {
    font-size: 0.8em !important;
    color: #bbbbbb !important;
    opacity: 1;
}



/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .desktop-nav {
        gap: 20px;
    }
    
    .desktop-nav a {
        font-size: 0.8em;
    }
    
    .desktop-cta {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Mobile and Tablet */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .desktop-nav,
    .desktop-cta {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Show mobile navigation */
    .mobile-nav {
        display: block;
    }
    
    /* Content adjustments */
    .hero .container,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .section h2 {
        font-size: 2em;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .section h2 {
        font-size: 1.8em;
    }
    
    .cta-button, .cta-button-large {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    
    /* Mobile menu adjustments for small screens */
    .mobile-nav-content a {
        font-size: 1.1em;
        padding: 12px 25px;
    }
    
    .mobile-cta {
        padding: 14px 28px !important;
        font-size: 1em !important;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .mobile-nav-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 40px 20px;
    }
    
    .mobile-nav-content a {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Effects */
.section:hover .neon-icon {
    text-shadow: 0 0 20px var(--neon-blue);
    transition: text-shadow 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}/* Lega
l Pages */
.legal-page {
    padding: 120px 0 80px;
    background: var(--primary-dark);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content h1 {
    color: var(--text-primary);
    font-size: 2.5em;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    color: var(--neon-blue);
    font-size: 1.5em;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1em;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.legal-content strong {
    color: var(--text-primary);
}

.back-link {
    margin-top: 50px;
    text-align: center;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-content {
        padding: 0 20px;
    }
    
    .legal-content h1 {
        font-size: 2em;
    }
    
    .legal-content h2 {
        font-size: 1.3em;
    }
}/* Melho
rias de Acessibilidade */

/* Focus states melhorados */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* Melhor contraste para links */
a {
    color: #ffffff;
    text-decoration: underline;
}

a:hover {
    color: var(--neon-blue);
}

/* Skip link para navegação por teclado */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--neon-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
}

.skip-link:focus {
    top: 6px;
}

/* Melhor contraste para textos importantes */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/* Estados de hover mais acessíveis */
.cta-button:focus, .cta-button-large:focus {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

/* Melhor visibilidade para elementos interativos */
button, .cta-button, .cta-button-large {
    min-height: 44px;
    min-width: 44px;
}

/* Prefers-reduced-motion para usuários sensíveis a animações */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Alto contraste para modo escuro */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: #ffffff;
        --text-muted: #cccccc;
    }
}