/* Aurealis Flow Prime — Dark Edition 
    Core Stylesheet v2.0
    Author: Vinícius Duarte
*/

/* =========================================
   1. TOKENS & VARIABLES
   ========================================= */
:root {
    /* --- Palette: Dark Neon Core --- */
    --color-bg: #0B0F1A;
    --color-bg-soft: #151B2D;
    --color-surface: #1B2240;
    --color-surface-2: #232D50;
    
    --color-text: #E9EEF9;
    --color-text-muted: #A8B0C3;
    --color-text-inverse: #0B0F1A;

    /* --- Brand Colors --- */
    --color-primary: #5AE0FF;       /* Electric Blue */
    --color-primary-600: #3BA0CC;
    --color-secondary: #8A5BFF;     /* Deep Purple */
    --color-accent: #27EBC3;        /* Turquoise */
    --color-accent-pink: #FF5E99;   /* Cyber Pink */
    --color-error: #FF4B4B;
    --color-success: #27EBC3;

    /* --- Borders & Glass --- */
    --color-border: rgba(90, 224, 255, 0.15);
    --color-border-soft: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(21, 27, 45, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --blur-strength: 16px;

    /* --- Gradients --- */
    --gradient-hero: radial-gradient(circle at 50% 0%, #1B2240 0%, #0B0F1A 80%);
    --gradient-text: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
    --gradient-glow: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    --gradient-overlay: linear-gradient(to bottom, rgba(11, 15, 26, 0) 0%, #0B0F1A 100%);

    /* --- Shadows --- */
    --shadow-1: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-2: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
    --shadow-3: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
    --neon-glow: 0 0 10px rgba(90, 224, 255, 0.4);

    /* --- Typography --- */
    --font-main: 'Outfit', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    /* --- Spacing & Layout --- */
    --container-width: 1280px;
    --header-height: 80px;
    --section-spacing: 120px;
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* --- Transitions --- */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --trans-fast: 0.2s var(--ease-out);
    --trans-med: 0.4s var(--ease-out);
    --trans-slow: 0.8s var(--ease-out);
}

/* Light Mode Override (Optional/Future Proofing) */
[data-theme="light"] {
    --color-bg: #F0F2F5;
    --color-text: #1A1F2E;
    /* ... incomplete, focusing on Dark Mode first as requested */
}

/* =========================================
   2. RESET & BASE
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-surface-2);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-600);
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--color-bg);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-text);
}

h1 { font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
p { margin-bottom: 1.5rem; color: var(--color-text-muted); }

a {
    color: inherit;
    text-decoration: none;
    transition: var(--trans-fast);
}

ul { list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }
button, input, textarea { font-family: inherit; border: none; outline: none; }

/* No Scroll Utility */
body.no-scroll { overflow: hidden; }
body.no-scroll-init { overflow: hidden; height: 100vh; }

/* =========================================
   3. UTILITIES & LAYOUT
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.medium-width { max-width: 800px; }

.section-padding { padding: var(--section-spacing) 0; }

.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.mt-auto { margin-top: auto; }
.full-width { width: 100%; }

.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none !important; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glass Panel Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-md);
}

/* Neon Glows */
.neon-blue { color: var(--color-primary); filter: drop-shadow(0 0 5px rgba(90, 224, 255, 0.5)); }
.neon-purple { color: var(--color-secondary); filter: drop-shadow(0 0 5px rgba(138, 91, 255, 0.5)); }
.neon-turq { color: var(--color-accent); filter: drop-shadow(0 0 5px rgba(39, 235, 195, 0.5)); }
.neon-pink { color: var(--color-accent-pink); filter: drop-shadow(0 0 5px rgba(255, 94, 153, 0.5)); }

/* =========================================
   4. COMPONENTS
   ========================================= */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--trans-fast);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg);
    box-shadow: 0 0 15px rgba(90, 224, 255, 0.3);
}
.btn-primary:hover {
    background: var(--color-primary-600);
    box-shadow: 0 0 25px rgba(90, 224, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-surface-2);
    color: var(--color-text);
    border: 1px solid var(--color-border-soft);
}
.btn-secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-text-muted);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover {
    background: rgba(90, 224, 255, 0.1);
    box-shadow: 0 0 15px rgba(90, 224, 255, 0.2);
}

.btn-ghost { background: transparent; color: var(--color-text-muted); }
.btn-ghost:hover { color: var(--color-text); background: rgba(255, 255, 255, 0.05); }

.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: transparent; color: var(--color-text); cursor: pointer; transition: var(--trans-fast); }
.btn-icon:hover { background: rgba(255, 255, 255, 0.1); }

/* Ripple Effect (JS Triggered) */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background-color: rgba(255, 255, 255, 0.4);
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Loaders */
.loader-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}
.loader-content { text-align: center; }
.spinner-neon {
    width: 50px; height: 50px;
    border: 3px solid rgba(90, 224, 255, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
    box-shadow: 0 0 15px rgba(90, 224, 255, 0.2);
}
.loader-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--color-primary);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================
   5. HEADER & NAV
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease, border-bottom 0.3s ease;
    padding: 1.5rem 0;
}
.main-header.scrolled {
    background: rgba(11, 15, 26, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-soft);
    padding: 1rem 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: var(--font-mono);
}
.logo-icon {
    color: var(--color-primary);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(90, 224, 255, 0.6));
}
.brand-text .highlight { color: var(--color-primary); }

.desktop-nav .nav-links { display: flex; gap: 2rem; }
.nav-link {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--color-primary);
}
.nav-link:hover, .nav-link.active { color: var(--color-text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; gap: 1rem; align-items: center; }

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none; /* Desktop default */
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 5px;
    z-index: 1002;
}
.hamburger-line {
    width: 24px; height: 2px; background: var(--color-text);
    transition: all 0.3s ease;
}
.mobile-toggle.active .top { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active .middle { opacity: 0; }
.mobile-toggle.active .bottom { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--color-bg);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-elastic);
    display: flex; flex-direction: column; justify-content: center;
    padding: 2rem;
}
.mobile-menu-overlay.active { transform: translateX(0); }
.mobile-links li { margin-bottom: 1.5rem; transform: translateX(20px); opacity: 0; }
.mobile-links a { font-size: 2rem; font-weight: 700; color: var(--color-text); }
.mobile-links a:hover { color: var(--color-primary); padding-left: 10px; }

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: var(--header-height);
}
.particles-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
}
.hero-text-wrapper { max-width: 900px; margin: 0 auto; }

.badge-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px;
    background: rgba(90, 224, 255, 0.1);
    border: 1px solid rgba(90, 224, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem; font-family: var(--font-mono); color: var(--color-primary);
    margin-bottom: 1.5rem;
}
.dot-pulse {
    width: 8px; height: 8px; background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(90, 224, 255, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(90, 224, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(90, 224, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(90, 224, 255, 0); }
}

.hero-title { margin-bottom: 1.5rem; line-height: 1.1; }
.typewriter-text { color: var(--color-primary); }
.cursor-blink { animation: blink 1s step-end infinite; color: var(--color-primary); }
@keyframes blink { 50% { opacity: 0; } }

.hero-subtitle {
    font-size: 1.25rem; max-width: 600px; margin: 0 auto 2.5rem;
    color: var(--color-text-muted);
}

.hero-cta-group { display: flex; gap: 1rem; justify-content: center; }

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 2; opacity: 0.7;
}
.mouse {
    width: 30px; height: 50px; border: 2px solid var(--color-text-muted);
    border-radius: 15px; position: relative;
}
.wheel {
    width: 4px; height: 8px; background: var(--color-primary);
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}
@keyframes scroll { 0% { top: 8px; opacity: 1; } 100% { top: 25px; opacity: 0; } }
.scroll-indicator .label { font-size: 0.75rem; letter-spacing: 0.2em; font-family: var(--font-mono); }

/* =========================================
   FIX: HERO ANIMATION PRE-LOAD
   (Impede que o conteúdo apareça antes da animação)
   ========================================= */
.hero-title, 
.hero-subtitle, 
.hero-cta-group, 
.badge-pill, 
.scroll-indicator {
    opacity: 0;
    visibility: hidden; /* Oculta totalmente até o GSAP assumir */
}

/* =========================================
   7. ABOUT SECTION
   ========================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.section-heading {
    position: relative; display: inline-block;
    margin-bottom: 1.5rem;
}
.section-desc { font-size: 1.1rem; margin-bottom: 2rem; }

.check-list li {
    display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem;
    font-family: var(--font-mono); color: var(--color-text);
}
.check-list i { color: var(--color-success); }

.col-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.metric-card {
    padding: 2rem; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: transform var(--trans-med);
}
.metric-card:nth-child(3) { grid-column: span 2; } /* Center the last one */
.metric-card h3 { font-size: 3rem; margin: 0.5rem 0; color: var(--color-primary); font-family: var(--font-mono); }
.metric-card span { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); }
.icon-lg { font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--color-secondary); }

/* =========================================
   8. FEATURES SECTION
   ========================================= */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.feature-card {
    padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
    transition: transform var(--trans-fast);
}
.card-edge-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0);
    transition: box-shadow var(--trans-med);
    pointer-events: none;
}
.feature-card:hover .card-edge-glow { box-shadow: inset 0 0 0 1px var(--color-primary); }

.icon-wrapper {
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin-bottom: 1.5rem;
    transition: transform var(--trans-med);
}
.feature-card:hover .icon-wrapper { transform: scale(1.1) rotate(5deg); background: rgba(255, 255, 255, 0.1); }
.btn-text {
    background: none; padding: 0; color: var(--color-primary);
    font-size: 0.9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px;
    margin-top: 1rem; cursor: pointer;
}

/* =========================================
   9. TIMELINE SECTION
   ========================================= */
.timeline-section { position: relative; }
.timeline-wrapper { position: relative; max-width: 1000px; margin: 4rem auto 0; padding-bottom: 4rem; }
.timeline-line {
    position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
    background: rgba(255, 255, 255, 0.1); transform: translateX(-50%);
}
.line-progress {
    position: absolute; top: 0; left: 0; width: 100%; height: 0%;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

.step-item {
    position: relative; margin-bottom: 6rem;
    width: 100%; display: flex; justify-content: center;
}
.step-marker {
    position: absolute; left: 50%; top: 20px;
    transform: translateX(-50%);
    width: 20px; height: 20px;
    background: var(--color-bg);
    border: 2px solid var(--color-text-muted);
    border-radius: 50%; z-index: 2;
    transition: all var(--trans-fast);
}
.step-marker.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary);
}
.marker-inner { width: 100%; height: 100%; }

.step-content {
    width: 45%; position: relative; padding: 2rem;
    opacity: 0.3; transform: scale(0.95);
    transition: all var(--trans-med);
}
.step-item:nth-child(odd) .step-content { margin-right: auto; text-align: right; }
.step-item:nth-child(even) .step-content { margin-left: auto; text-align: left; }
.step-item.active .step-content { opacity: 1; transform: scale(1); border-color: var(--color-primary); }

.step-date {
    display: inline-block; font-family: var(--font-mono);
    color: var(--color-primary); margin-bottom: 0.5rem; font-weight: 700;
}

/* =========================================
   10. GALLERY SECTION
   ========================================= */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}
.gallery-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-2);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.1); }

/* Mosaic Layout */
.item-1 { grid-column: span 2; grid-row: span 2; }
.item-2 { grid-column: span 2; }
.item-3 { grid-column: span 1; }
.item-4 { grid-column: span 1; }

.gallery-item figcaption {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex; justify-content: space-between; align-items: flex-end;
    opacity: 0; transform: translateY(20px);
    transition: all var(--trans-med);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-item figcaption span { font-weight: 700; color: #fff; }

/* =========================================
   11. SHOWCASE (VIDEO)
   ========================================= */
.video-container {
    position: relative; width: 100%; aspect-ratio: 16/9;
    border-radius: var(--radius-lg); overflow: hidden;
    background: #000;
}
.video-overlay-ui {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity var(--trans-med);
    z-index: 2;
}
.video-container.playing .video-overlay-ui { opacity: 0; pointer-events: none; }
.play-btn-pulse {
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #fff;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--trans-fast);
}
.play-btn-pulse:hover { transform: scale(1.1); background: var(--color-primary); border-color: var(--color-primary); }

.video-info { position: absolute; bottom: 30px; left: 30px; text-align: left; pointer-events: none; }

.video-controls {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; padding: 0.75rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    z-index: 3;
    opacity: 0; transition: opacity 0.3s ease;
}
.video-container:hover .video-controls, .video-container.playing .video-controls { opacity: 1; }

.progress-bar-container { flex-grow: 1; height: 4px; background: rgba(255, 255, 255, 0.2); border-radius: 2px; cursor: pointer; position: relative; }
.video-progress-fill { height: 100%; background: var(--color-primary); width: 0%; border-radius: 2px; }
.control-btn { background: none; color: #fff; font-size: 1.2rem; cursor: pointer; }

/* =========================================
   12. TESTIMONIALS & INTEGRATIONS
   ========================================= */
.testimonials-slider-wrapper {
    position: relative; display: flex; align-items: center; justify-content: center;
}
.testimonials-track-container {
    width: 100%; max-width: 700px; overflow: hidden;
}
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
    min-width: 100%; padding: 3rem; text-align: center;
    opacity: 0.5; transform: scale(0.9); transition: all 0.5s ease;
}
.testimonial-card.active { opacity: 1; transform: scale(1); border-color: var(--color-primary); }
.quote-icon { font-size: 2rem; color: var(--color-primary); margin-bottom: 1.5rem; }
.testimonial-card p { font-size: 1.25rem; color: var(--color-text); font-style: italic; margin-bottom: 2rem; }
.user-profile { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.avatar-ring { width: 50px; height: 50px; border-radius: 50%; padding: 2px; border: 2px solid var(--color-primary); }
.avatar-ring img { width: 100%; height: 100%; border-radius: 50%; }
.user-info { text-align: left; }
.user-info h4 { font-size: 1rem; margin: 0; }
.user-info span { font-size: 0.85rem; color: var(--color-text-muted); }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05); width: 40px; height: 40px;
    border-radius: 50%; color: #fff; cursor: pointer; z-index: 2;
}
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }
.slider-btn:hover { background: var(--color-primary); }

.integrations-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
    max-width: 800px; margin: 0 auto;
}
.integration-item {
    width: 80px; height: 80px;
    background: var(--color-surface); border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--color-text-muted);
    transition: all var(--trans-med);
    position: relative;
}
.integration-item:hover {
    color: var(--color-text); transform: translateY(-5px);
    background: var(--color-surface-2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.integration-item::after {
    content: attr(data-tooltip);
    position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
    font-size: 0.75rem; background: var(--color-primary); color: #000;
    padding: 2px 6px; border-radius: 4px; opacity: 0; pointer-events: none;
    transition: opacity 0.2s; white-space: nowrap;
}
.integration-item:hover::after { opacity: 1; }

/* =========================================
   13. PRICING & FAQ
   ========================================= */
.pricing-toggle-wrapper {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin-bottom: 3rem;
}
.switch { position: relative; display: inline-block; width: 50px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--color-surface-2); transition: .4s;
}
.slider.round { border-radius: 34px; }
.slider.round:before {
    position: absolute; content: ""; height: 18px; width: 18px; left: 4px; bottom: 4px;
    background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--color-primary); }
input:checked + .slider:before { transform: translateX(24px); }
.toggle-label { color: var(--color-text-muted); cursor: pointer; }
.toggle-label.active { color: var(--color-text); font-weight: 700; }
.badge-discount { background: var(--color-accent-pink); color: #fff; font-size: 0.7rem; padding: 2px 5px; border-radius: 4px; margin-left: 5px; }

.pricing-cards-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: start; }
.pricing-card {
    padding: 2.5rem; position: relative; transition: transform var(--trans-med);
    display: flex; flex-direction: column; min-height: 450px;
}
.pricing-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 30px rgba(90, 224, 255, 0.15);
    transform: scale(1.05); z-index: 2;
}
.featured-tag {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: var(--color-primary); color: #000; padding: 5px 15px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; border-radius: 20px;
}
.plan-name { font-size: 1.5rem; margin-bottom: 1rem; }
.price-display { display: flex; align-items: baseline; margin-bottom: 2rem; }
.currency { font-size: 1.5rem; margin-right: 2px; }
.amount { font-size: 3.5rem; font-weight: 700; line-height: 1; font-family: var(--font-mono); }
.period { color: var(--color-text-muted); margin-left: 5px; }

.plan-features li { margin-bottom: 1rem; color: var(--color-text-muted); display: flex; gap: 10px; }
.plan-features li i { color: var(--color-primary); }
.plan-features li.disabled { opacity: 0.5; }
.plan-features li.disabled i { color: var(--color-text-muted); }

/* FAQ Accordion */
.accordion-wrapper { display: flex; flex-direction: column; gap: 1rem; }
.accordion-item {
    border: 1px solid var(--glass-border); overflow: hidden;
    transition: all var(--trans-fast);
}
.accordion-item[open] { border-color: var(--color-primary); background: rgba(21, 27, 45, 0.8); }
.accordion-item summary {
    padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; list-style: none;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.icon-arrow { transition: transform 0.3s ease; }
.accordion-item[open] .icon-arrow { transform: rotate(180deg); color: var(--color-primary); }
.answer { padding: 0 1.5rem 1.5rem; color: var(--color-text-muted); animation: slideDown 0.3s ease-out; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   14. CONTACT SECTION (CYBER UPGRADE)
   ========================================= */

/* Fundo Cyber Grid Animado */
.relative-wrapper { position: relative; overflow: hidden; }

.cyber-grid-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(90, 224, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 224, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    pointer-events: none; z-index: 0;
}

/* Layout Grid */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: stretch;
    position: relative; z-index: 1;
}

/* --- Painel do Formulário Tech --- */
.glass-panel-tech {
    background: linear-gradient(145deg, rgba(21, 27, 45, 0.9), rgba(11, 15, 26, 0.95));
    border: 1px solid rgba(90, 224, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

/* Header com Status "System Ready" */
.panel-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 0.5rem;
}
.header-decor {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em;
    color: var(--color-success); background: rgba(39, 235, 195, 0.1);
    padding: 4px 12px; border-radius: 4px; border: 1px solid rgba(39, 235, 195, 0.2);
}
.status-dot { width: 6px; height: 6px; background: var(--color-success); border-radius: 50%; box-shadow: 0 0 5px var(--color-success); animation: pulseGreen 2s infinite; }
@keyframes pulseGreen { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

.form-desc { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 2.5rem; }

/* --- Inputs Futuristas (Floating Label) --- */
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-group { position: relative; margin-bottom: 2rem; }

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-bottom: 2px solid var(--color-border-soft);
    padding: 1rem 1rem 1rem 2.8rem; /* Espaço extra para o ícone */
    color: var(--color-text);
    font-family: var(--font-mono);
    font-size: 1rem;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input:focus, .form-group textarea:focus {
    background: rgba(90, 224, 255, 0.05);
    outline: none;
}

/* Labels e Ícones Animados */
.form-group label {
    position: absolute; left: 2.8rem; top: 1rem;
    color: var(--color-text-muted); pointer-events: none;
    transition: 0.3s ease; font-size: 0.95rem;
}
.input-icon {
    position: absolute; left: 1rem; top: 1.1rem;
    color: var(--color-text-muted); font-size: 1.2rem;
    transition: 0.3s ease;
}

/* Estado Ativo/Focado */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -22px; left: 0; font-size: 0.75rem; color: var(--color-primary); letter-spacing: 0.05em; text-transform: uppercase;
}
.form-group input:focus ~ .input-icon,
.form-group textarea:focus ~ .input-icon {
    color: var(--color-primary); text-shadow: 0 0 8px var(--color-primary);
}

/* Linha Laser Inferior */
.input-highlight {
    position: absolute; bottom: 0; left: 0; width: 0%; height: 2px;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-group input:focus ~ .input-highlight,
.form-group textarea:focus ~ .input-highlight {
    width: 100%;
}

/* Cantos Tech Decorativos */
.corner-decor {
    position: absolute; width: 20px; height: 20px;
    border: 2px solid var(--color-primary); opacity: 0.3;
    transition: opacity 0.3s; pointer-events: none;
}
.glass-panel-tech:hover .corner-decor { opacity: 1; box-shadow: 0 0 8px var(--color-primary); }
.top-left { top: -1px; left: -1px; border-right: none; border-bottom: none; border-radius: 8px 0 0 0; }
.bottom-right { bottom: -1px; right: -1px; border-left: none; border-top: none; border-radius: 0 0 8px 0; }

/* Botão Cyber Submit */
.cyber-btn {
    height: 56px; font-size: 1rem; letter-spacing: 0.05em; font-weight: 700;
    background: linear-gradient(90deg, var(--color-primary-600), var(--color-primary));
    position: relative; overflow: hidden; border: none;
    box-shadow: 0 4px 15px rgba(90, 224, 255, 0.3);
}
.cyber-btn:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(90, 224, 255, 0.5); }

/* --- Coluna Newsletter (Widget Neon) --- */
.col-newsletter { display: flex; flex-direction: column; gap: 2rem; }

.glass-panel-neon {
    background: rgba(21, 27, 45, 0.6);
    border: 1px solid rgba(138, 91, 255, 0.3); /* Roxo */
    border-radius: var(--radius-lg);
    padding: 2.5rem; text-align: center;
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-panel-neon:hover { transform: translateY(-5px); border-color: var(--color-secondary); }

/* Brilho Roxo de Fundo */
.card-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(138, 91, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.icon-floating {
    font-size: 3rem; color: var(--color-secondary);
    margin-bottom: 1rem; filter: drop-shadow(0 0 15px rgba(138, 91, 255, 0.6));
    animation: floatIcon 4s ease-in-out infinite;
}
@keyframes floatIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Newsletter Input Group */
.newsletter-input-group {
    margin-top: 2rem; display: flex; gap: 10px; position: relative;
    z-index: 2;
}
.input-wrapper { flex-grow: 1; position: relative; overflow: hidden; border-radius: var(--radius-sm); }

.input-wrapper input {
    width: 100%; height: 50px; padding: 0 1.5rem;
    background: rgba(0,0,0,0.4); border: 1px solid var(--color-border-soft);
    color: #fff; border-radius: var(--radius-sm); font-family: var(--font-mono);
}
.input-wrapper input:focus { border-color: var(--color-secondary); }

.btn-icon-square {
    width: 50px; height: 50px; background: var(--color-secondary);
    color: #fff; border-radius: var(--radius-sm); font-size: 1.2rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: 0.3s; border: none;
}
.btn-icon-square:hover { background: #fff; color: var(--color-secondary); box-shadow: 0 0 15px var(--color-secondary); }

.secure-badge {
    margin-top: 1.5rem; font-size: 0.75rem; color: var(--color-text-muted);
    display: flex; align-items: center; justify-content: center; gap: 6px;
    opacity: 0.7;
}

/* Contact Info Mini Cards */
.contact-info-stack { display: flex; flex-direction: column; gap: 1rem; }

.info-card-mini {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem; border-radius: var(--radius-md);
    border: 1px solid var(--color-border-soft);
    transition: 0.3s;
}
.info-card-mini:hover {
    background: rgba(255, 255, 255, 0.03); border-color: var(--color-primary);
    transform: translateX(5px);
}
.icon-box {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(90, 224, 255, 0.1); color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.info-card-mini .label { display: block; font-size: 0.75rem; text-transform: uppercase; color: var(--color-text-muted); }
.info-card-mini .value { display: block; font-size: 0.95rem; color: var(--color-text); font-weight: 500; }

/* =========================================
   15. MODALS & DRAWER & TOAST
   ========================================= */
dialog {
    border: none; background: transparent; padding: 0;
    max-width: 100vw; max-height: 100vh;
}
dialog::backdrop { background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px); }

/* Lightbox */
.lightbox-container {
    width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative;
}
.lightbox-content { max-width: 90%; max-height: 85%; position: relative; }
.lightbox-content img { max-height: 80vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-3); }
.lightbox-caption {
    position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
    padding: 0.5rem 1.5rem; white-space: nowrap; color: #fff;
}
.nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1); color: #fff; font-size: 2rem;
    padding: 1rem; border-radius: 50%; cursor: pointer; transition: 0.3s;
}
.nav-btn:hover { background: var(--color-primary); }
.nav-btn.prev { left: 20px; }
.nav-btn.next { right: 20px; }
.close-modal {
    position: absolute; top: 20px; right: 20px; background: none; color: #fff;
    font-size: 2rem; cursor: pointer; z-index: 10;
}

/* Content Modal */
.modal-box {
    width: 90%; max-width: 600px; margin: auto;
    display: flex; flex-direction: column; max-height: 80vh;
    animation: scaleIn 0.3s var(--ease-out);
}
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.modal-header {
    padding: 1.5rem; border-bottom: 1px solid var(--color-border-soft);
    display: flex; justify-content: space-between; align-items: center;
}
.modal-body { padding: 1.5rem; overflow-y: auto; }
.modal-footer { padding: 1.5rem; border-top: 1px solid var(--color-border-soft); display: flex; justify-content: flex-end; gap: 1rem; }

/* Drawer */
.drawer-panel {
    position: fixed; top: 0; right: 0; width: 320px; height: 100vh;
    background: var(--color-bg); border-left: 1px solid var(--color-primary);
    z-index: 2000; transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    display: flex; flex-direction: column;
}
.drawer-panel[aria-hidden="false"] { transform: translateX(0); box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
.drawer-header { padding: 1.5rem; background: var(--color-surface); display: flex; justify-content: space-between; align-items: center; }
.drawer-content { padding: 1.5rem; flex-grow: 1; }
.quick-links li { margin-bottom: 1rem; }
.quick-links a { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: var(--radius-sm); }
.quick-links a:hover { background: var(--color-surface-2); color: var(--color-primary); }

.fab-btn {
    position: fixed; bottom: 30px; right: 30px; width: 56px; height: 56px;
    background: var(--color-primary); color: #000; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: 0 5px 15px rgba(90, 224, 255, 0.4);
    cursor: pointer; z-index: 900; transition: transform 0.3s var(--ease-elastic);
}
.fab-btn:hover { transform: scale(1.1) rotate(15deg); }

/* =========================================
   COOKIE BANNER (RE-STYLED)
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: calc(100% - 60px);
    max-width: 420px;
    padding: 0; /* Padding controlado internamente */
    z-index: 9999;
    transform: translateY(150%) scale(0.95);
    transition: all 0.6s var(--ease-elastic);
    overflow: hidden;
    background: rgba(11, 15, 26, 0.9); /* Mais escuro para contraste */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
}

.cookie-banner[aria-hidden="false"] {
    transform: translateY(0) scale(1);
}

/* Linha Neon Lateral */
.glow-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    box-shadow: 0 0 15px var(--color-primary);
}

.cookie-body {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    align-items: flex-start;
}

.cookie-icon-wrapper {
    min-width: 40px;
    height: 40px;
    background: rgba(90, 224, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    border: 1px solid rgba(90, 224, 255, 0.2);
    box-shadow: 0 0 10px rgba(90, 224, 255, 0.1);
}

.cookie-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

.link-text {
    background: none;
    border: none;
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(90, 224, 255, 0.3);
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    transition: 0.3s;
}

.link-text:hover {
    color: #fff;
    text-decoration-color: var(--color-primary);
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 0 1.5rem 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(255,255,255,0.03), transparent);
}

/* Botões Pequenos Específicos */
.btn-xs {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

/* Responsividade Mobile para o Cookie */
@media (max-width: 480px) {
    .cookie-banner {
        left: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
    }
    .cookie-body {
        padding: 1rem;
    }
    .cookie-icon-wrapper {
        display: none; /* Economiza espaço no mobile */
    }
}

/* Toast */
.toast-container {
    position: fixed; top: 20px; right: 20px; z-index: 9999;
    display: flex; flex-direction: column; gap: 10px;
}
.toast {
    padding: 1rem 1.5rem; border-radius: var(--radius-sm);
    background: var(--color-surface); border-left: 4px solid var(--color-primary);
    color: #fff; box-shadow: var(--shadow-2);
    display: flex; align-items: center; gap: 10px;
    animation: slideInRight 0.3s ease-out forwards;
    min-width: 250px;
}
.toast.success { border-left-color: var(--color-success); }
.toast.error { border-left-color: var(--color-error); }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutRight { to { transform: translateX(100%); opacity: 0; } }
.toast.hide { animation: slideOutRight 0.3s ease-in forwards; }

/* =========================================
   16. MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .metric-card:nth-child(3) { grid-column: auto; }
    .col-metrics { grid-template-columns: repeat(3, 1fr); }
    .timeline-line { left: 20px; transform: none; }
    .step-item { flex-direction: column; align-items: flex-start; margin-left: 20px; width: auto; padding-left: 30px; }
    .step-marker { left: 0; transform: none; }
    .step-content { width: 100%; text-align: left !important; margin: 0 !important; }
    .step-item:nth-child(even) .step-content { margin-left: 0; }
    .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .item-1 { grid-column: span 2; } .item-2 { grid-column: span 2; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }
    h1 { font-size: 2.5rem; }
    .desktop-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-cta-group { flex-direction: column; }
    .col-metrics { grid-template-columns: 1fr; }
    .testimonials-slider-wrapper { padding: 0 30px; }
    .pricing-card.featured { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .particles-container, .cursor-blink, .dot-pulse { display: none; }
}

/* =========================================
   15. CYBER FOOTER (COMPLETED)
   ========================================= */

.cyber-footer {
    background: #05070A; /* Fundo quase preto */
    border-top: 1px solid var(--color-border-soft);
    padding: 5rem 0 2rem;
    margin-top: 6rem;
    position: relative;
}

/* Brilho Superior Neon */
.footer-glow-top {
    position: absolute; top: -2px; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0 -5px 20px var(--color-primary);
    opacity: 0.5;
}

/* Grid de 4 Colunas */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-heading {
    font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: #fff; margin-bottom: 1.5rem; font-family: var(--font-mono);
}

/* --- Coluna da Marca --- */
.brand-col .footer-brand {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.5rem; font-family: var(--font-mono); font-weight: 700;
    margin-bottom: 1.5rem;
}
.logo-icon.sm.pulse-neon {
    font-size: 2rem; color: var(--color-primary);
    filter: drop-shadow(0 0 8px var(--color-primary));
    animation: pulseNeon 3s infinite alternate;
}
@keyframes pulseNeon { from { filter: drop-shadow(0 0 5px var(--color-primary)); } to { filter: drop-shadow(0 0 15px var(--color-primary)); } }

.footer-desc { max-width: 350px; margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.7; }

/* Links Sociais Animados */
.footer-socials { display: flex; gap: 1rem; }
.social-link {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--color-border-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-text-muted); font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Efeito elástico */
}
.social-link:hover {
    background: var(--color-primary); color: #000;
    border-color: var(--color-primary);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(90, 224, 255, 0.4);
}

/* --- Links de Navegação --- */
.footer-links li { margin-bottom: 1rem; }
.footer-links a {
    color: var(--color-text-muted); display: inline-flex; align-items: center; gap: 8px;
    position: relative; transition: 0.3s;
}
.footer-links a:hover { color: var(--color-primary); padding-left: 5px; }
.footer-links a::before {
    content: '>'; position: absolute; left: -15px; opacity: 0;
    color: var(--color-primary); font-family: var(--font-mono); transition: 0.3s;
}
.footer-links a:hover::before { opacity: 1; left: -10px; }

.badge-new {
    font-size: 0.65rem; background: var(--color-secondary); color: #fff;
    padding: 2px 6px; border-radius: 4px; font-family: var(--font-mono);
    margin-left: 5px;
}

/* --- Widget de Status Tech --- */
.glass-panel-tech-sm {
    background: linear-gradient(145deg, rgba(21, 27, 45, 0.8), rgba(11, 15, 26, 0.9));
    border: 1px solid rgba(90, 224, 255, 0.15);
    border-radius: var(--radius-md); padding: 1.5rem;
}
.status-list li {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1rem; font-size: 0.9rem; font-family: var(--font-mono);
}
.status-list .dot { width: 8px; height: 8px; border-radius: 50%; margin-right: 10px; display: inline-block; }
.operational .dot { background: var(--color-success); box-shadow: 0 0 6px var(--color-success); }
.degraded .dot.warning { background: #FFB020; box-shadow: 0 0 6px #FFB020; }

.status-list .value { font-weight: 700; color: #fff; }
.server-time {
    margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--color-border-soft);
    font-size: 0.85rem; color: var(--color-text-muted); display: flex; align-items: center; gap: 8px;
}

/* --- Footer Bottom --- */
.neon-separator {
    height: 1px; background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.3; margin-bottom: 2rem;
}

.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.copyright { color: var(--color-text-muted); }
.version { color: var(--color-primary); font-family: var(--font-mono); margin-left: 5px; opacity: 0.7; }

.legal-links { display: flex; gap: 2rem; }
.link-btn, .link-text { background: none; color: var(--color-text-muted); cursor: pointer; transition: 0.3s; }
.link-btn:hover, .link-text:hover { color: var(--color-primary); text-decoration: underline; }

.theme-badge {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 16px; background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border-soft); border-radius: 20px;
    font-size: 0.85rem; font-family: var(--font-mono); color: #fff;
}
.theme-badge .indicator {
    width: 8px; height: 8px; background: var(--color-primary); border-radius: 50%;
}
.indicator.pulse { animation: pulseGreen 2s infinite; }

/* Responsividade do Footer */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
    .brand-col { grid-column: span 2; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .brand-col { grid-column: span 1; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-desc { margin: 0 auto 2rem; }
    .footer-socials { justify-content: center; }
    .footer-bottom { flex-direction: column-reverse; gap: 1.5rem; text-align: center; }
    .legal-links { justify-content: center; }
}