/* Desenvolvedor por Leone - WhatsApp: +55 65 99270-8533 */
/* Landing Page Futurística */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #ff0080;
    --accent: #00ff88;
    --warning: #ffaa00;
    --error: #ff4444;
    --success: #00ff88;
    
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --surface: #1a1a2e;
    --surface-light: #16213e;
    --surface-lighter: #0f3460;
    
    --text: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #7a8ba0;
    
    --border: #2a2a4e;
    --border-light: #3a3a6e;
    
    --glow-primary: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-secondary: 0 0 20px rgba(255, 0, 128, 0.5);
    --glow-accent: 0 0 20px rgba(0, 255, 136, 0.5);
    
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
    height: -webkit-fill-available;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background: var(--bg-dark);
    min-height: 100vh;
    min-height: -webkit-fill-available;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    zoom: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Futuristic Background */
.futuristic-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    z-index: -3;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: -2;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    animation: float-particle 15s infinite linear;
    box-shadow: var(--glow-primary);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; background: var(--secondary); box-shadow: var(--glow-secondary); }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; background: var(--accent); box-shadow: var(--glow-accent); }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 60%; animation-delay: 8s; background: var(--secondary); box-shadow: var(--glow-secondary); }
.particle:nth-child(6) { left: 70%; animation-delay: 10s; background: var(--accent); box-shadow: var(--glow-accent); }
.particle:nth-child(7) { left: 80%; animation-delay: 12s; }
.particle:nth-child(8) { left: 90%; animation-delay: 14s; background: var(--secondary); box-shadow: var(--glow-secondary); }

.neon-lines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    height: 2px;
    animation: line-move 8s infinite linear;
    box-shadow: var(--glow-primary);
}

.line-1 {
    top: 20%;
    width: 100%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    box-shadow: var(--glow-secondary);
    animation-delay: 3s;
}

.line-3 {
    top: 80%;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: var(--glow-accent);
    animation-delay: 6s;
}

/* Navigation Futurística */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

.nav-logo i {
    font-size: 1.5rem;
    animation: pulse-glow 2s infinite;
}

/* Ocultar elementos mobile no desktop */
.mobile-only {
    display: none;
}

.mobile-menu-logo {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.nav-admin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--error), #cc0000);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.nav-admin:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 68, 68, 0.7);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    color: var(--text);
}

/* Hero Section Futurística */
.hero {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    width: 100%;
    box-sizing: border-box;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    color: var(--text);
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    hyphens: auto;
}

.title-highlight {
    color: var(--primary);
    animation: glow-text 3s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.title-main {
    margin-top: 0.5rem;
    color: var(--text);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent), #00cc66);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg), var(--glow-accent);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--glow-accent);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    border: 1px solid var(--primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: var(--glow-accent);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Hero Login Button */
.hero-login-button {
    margin-top: 2rem;
    text-align: center;
}

.btn-login-main {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg), var(--glow-primary);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-login-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-login-main:hover::before {
    left: 100%;
}

.btn-login-main:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--glow-primary);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent), #00cc66);
    color: white;
    box-shadow: var(--glow-accent);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-accent);
}

.hero-actions .btn-secondary {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.hero-access {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-access p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.btn-token {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--secondary), #cc0066);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--glow-secondary);
}

.btn-token:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow-secondary);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-preview {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(30px);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl), var(--glow-primary);
    animation: float-dashboard 6s ease-in-out infinite;
    position: relative;
    width: 100%;
    max-width: 500px;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    border-radius: 24px;
    z-index: -1;
    animation: border-glow 3s infinite linear;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.preview-dots {
    display: flex;
    gap: 0.75rem;
}

.preview-dots span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.preview-dots span:nth-child(1) { background: #ef4444; box-shadow: 0 0 10px #ef4444; }
.preview-dots span:nth-child(2) { background: #f59e0b; box-shadow: 0 0 10px #f59e0b; }
.preview-dots span:nth-child(3) { background: #10b981; box-shadow: 0 0 10px #10b981; }

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    color: var(--text);
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    width: 100%;
    box-sizing: border-box;
}

.preview-card:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateX(10px);
    box-shadow: var(--glow-primary);
}

.preview-card i {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.preview-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Features Section Futurística */
.features {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
    box-shadow: var(--glow-primary);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Pricing Section Futurística */
.pricing {
    padding: 8rem 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing .section-header h2,
.pricing .section-header p {
    color: var(--text);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.pricing-card {
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(30px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    animation: border-glow 3s infinite linear;
    transition: opacity 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--accent);
    background: rgba(0, 255, 136, 0.05);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    opacity: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #00cc66);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--glow-accent);
    font-family: 'Orbitron', monospace;
}

.card-header {
    text-align: center;
    margin-bottom: 3rem;
}

.card-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: var(--glow-accent);
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.discount {
    background: linear-gradient(135deg, var(--accent), #00cc66);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: var(--glow-accent);
}

.card-features {
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.feature i {
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, var(--accent), #00cc66);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow-accent);
    position: relative;
    overflow: hidden;
}

.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.card-button:hover::before {
    left: 100%;
}

.card-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--glow-accent);
}

/* Contact Section Futurística */
.contact {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.5rem;
    box-shadow: var(--glow-primary);
}

.contact-item h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-cta {
    background: rgba(26, 26, 46, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

.contact-cta h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.btn-primary.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* Footer Futurístico */
.footer {
    background: var(--bg-darker);
    color: var(--text);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-shadow: var(--glow-primary);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.footer-column h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* WhatsApp Float Futurístico */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    width: 220px;
    border-radius: 35px;
    background: linear-gradient(135deg, #128c7e, #25d366);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-text {
    margin-left: 1rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-family: 'Orbitron', monospace;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

/* Animations */
@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@keyframes line-move {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
}

@keyframes glow-text {
    0%, 100% { text-shadow: 0 0 30px rgba(0, 212, 255, 0.5); }
    50% { text-shadow: 0 0 50px rgba(0, 212, 255, 0.8); }
}

@keyframes float-dashboard {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

@keyframes border-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Prevenção de zoom automático no iOS */
@supports (-webkit-touch-callout: none) {
    input, select, textarea {
        font-size: 16px !important;
    }
    
    body {
        -webkit-text-size-adjust: 100% !important;
    }
}

/* Otimizações para performance mobile */
@media (max-width: 768px) {
    .particles-container {
        display: none;
    }
    
    .neon-lines {
        display: none;
    }
    
    .grid-overlay {
        opacity: 0.3;
    }
    
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Correções para altura em dispositivos móveis */
@media (max-height: 600px) and (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-container {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        margin-bottom: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        zoom: 1;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero {
        padding-top: 90px;
        padding-bottom: 2rem;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        box-sizing: border-box;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 1rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        width: 100%;
        box-sizing: border-box;
        gap: 1rem;
        align-items: center;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    /* Ocultar botão login desktop no mobile */
    .desktop-only {
        display: none !important;
    }
    
    /* Mostrar elementos mobile */
    .mobile-only {
        display: flex !important;
    }
    
    /* Logo no menu mobile */
    .mobile-menu-logo {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-family: 'Orbitron', monospace;
        font-size: 1.2rem;
        font-weight: 900;
        color: var(--primary);
        text-shadow: var(--glow-primary);
        margin: 0 auto 1.5rem auto;
        padding: 1rem 0.5rem;
        background: rgba(0, 212, 255, 0.1);
        border: 2px solid var(--primary);
        border-radius: 16px;
        box-shadow: var(--glow-primary);
        width: 90%;
        max-width: 280px;
        text-align: center;
        word-wrap: break-word;
        overflow: hidden;
    }
    
    .mobile-menu-logo i {
        font-size: 1.3rem;
        animation: pulse-glow 2s infinite;
        flex-shrink: 0;
    }
    
    .mobile-menu-logo span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-link {
        padding: 1rem;
        border-radius: 12px;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid var(--primary);
        text-align: center;
        font-weight: 600;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
    }
    
    .nav-link:hover {
        background: var(--primary);
        color: white;
        transform: none;
    }
    
    .nav-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-toggle:hover {
        background: rgba(0, 212, 255, 0.1);
        color: var(--primary);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-login-button {
        margin-top: 1.5rem;
    }
    
    .btn-login-main {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .stat-item {
        padding: 1rem;
        min-width: 100px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float:hover {
        width: 60px;
        border-radius: 50%;
    }
    
    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
        zoom: 1;
        -webkit-text-size-adjust: 100%;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-menu-logo {
        font-size: 1rem !important;
        padding: 0.75rem 0.25rem !important;
        width: 95% !important;
        gap: 0.25rem !important;
    }
    
    .mobile-menu-logo i {
        font-size: 1.1rem !important;
    }
    
    .nav-menu {
        padding: 1rem 0.5rem !important;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 1rem;
    }
    
    .hero-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .hero-actions {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 260px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .pricing-card {
        padding: 1.75rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .btn-login-main {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        max-width: 260px;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.3rem;
    }
    
    .preview-card i {
        font-size: 1rem;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}