/*
Theme Name: Omni Automações
Author: Karlo
Description: Tema sob medida para Omni Automações
Version: 1.0
Text Domain: omni
*/

body {
    background-color: #0e0e0e;
    color: #e2e2e2;
    font-family: 'Inter', sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-header {
    background: rgba(19, 19, 19, 0.4);
    backdrop-filter: blur(12px);
}

.glass-card {
    background: rgba(25, 25, 25, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.03);
    border-radius: 28px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.glass-card:hover {
    background: rgba(35, 35, 35, 0.6);
    border-color: rgba(255, 107, 0, 0.25);
    box-shadow: 0 16px 48px rgba(255, 107, 0, 0.15);
    transform: translateY(-8px);
}

.marquee-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.03);
    border-radius: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.marquee-card:hover {
    background: rgba(40, 40, 40, 0.9);
    border-color: rgba(255, 107, 0, 0.25);
    box-shadow: 0 16px 48px rgba(255, 107, 0, 0.15);
}

.marquee-card:hover .glass-neon-blob {
    background: rgba(255, 107, 0, 0.35);
    transform: scale(1.6);
}

.glass-neon-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 107, 0, 0.15);
    filter: blur(50px);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    pointer-events: none;
    transition: all 0.6s ease;
    z-index: 0;
}

.glass-card:hover .glass-neon-blob {
    background: rgba(255, 107, 0, 0.35);
    transform: scale(1.6);
}

.text-glow:hover {
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
}

.scroll-blur {
    filter: blur(5px);
    opacity: 0.3;
    transition: filter 0.6s ease, opacity 0.6s ease;
    will-change: filter, opacity;
}

.scroll-blur.is-active {
    filter: blur(0);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-blur {
        filter: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}
