/* ═══════════════════════════════════════════
   Neuraxo Tecnologia - Custom Styles
   ═══════════════════════════════════════════ */

[x-cloak] { display: none !important; }

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
    background: #22223b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0c93e9;
}

/* Neural network animation for hero */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-glow {
    animation: glow 3s ease-in-out infinite;
}

/* Gradient text animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-animated {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Blog post content styles */
.prose {
    color: #9ca3af;
    line-height: 1.8;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #f3f4f6;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 0.5em;
}
.prose h1 { font-size: 2.25rem; }
.prose h2 { font-size: 1.75rem; }
.prose h3 { font-size: 1.375rem; }
.prose p { margin-bottom: 1.25em; }
.prose a {
    color: #0c93e9;
    text-decoration: underline;
}
.prose a:hover { color: #36adf8; }
.prose code {
    background: #141425;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 0.875em;
    color: #e5e7eb;
}
.prose pre {
    background: #0f0f1a;
    border: 1px solid #1a1a30;
    border-radius: 12px;
    padding: 1.5em;
    overflow-x: auto;
    margin: 1.5em 0;
}
.prose pre code {
    background: none;
    padding: 0;
}
.prose ul, .prose ol {
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}
.prose li { margin-bottom: 0.5em; }
.prose blockquote {
    border-left: 3px solid #0c93e9;
    padding-left: 1em;
    color: #6b7280;
    font-style: italic;
    margin: 1.5em 0;
}
.prose img {
    border-radius: 12px;
    margin: 2em auto;
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}
.prose th, .prose td {
    border: 1px solid #1a1a30;
    padding: 0.75em 1em;
    text-align: left;
}
.prose th {
    background: #141425;
    color: #e5e7eb;
    font-weight: 600;
}
