/* ========== CUSTOM CURSOR ========== */
* { cursor: none !important; }

@media (pointer: coarse) {
    * { cursor: auto !important; }
    #cursor-dot { display: none !important; }
}

#cursor-dot {
    position: fixed;
    top: -6px;
    left: -6px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 8px 3px rgba(188, 194, 255, 0.9),
                0 0 20px 6px rgba(188, 194, 255, 0.4);
    transition: width 0.2s ease, height 0.2s ease,
                background 0.2s ease, box-shadow 0.2s ease,
                top 0.2s ease, left 0.2s ease;
    will-change: transform;
}

/* Estado hover em clicáveis */
#cursor-dot.is-hovering {
    top: -10px;
    left: -10px;
    width: 18px;
    height: 18px;
    background: #F0A500;
    box-shadow: 0 0 12px 4px rgba(240, 165, 0, 0.8),
                0 0 30px 10px rgba(240, 165, 0, 0.3);
}


.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-panel {
    background: rgba(53, 52, 54, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(69, 70, 82, 0.15);
}

.text-glow {
    text-shadow: 0 0 20px rgba(188, 194, 255, 0.3);
}

/* ========== GLOW EFFECTS ========== */
.glow-primary {
    box-shadow: 0 0 20px rgba(188, 194, 255, 0.3), 0 0 40px rgba(188, 194, 255, 0.1);
}
.glow-secondary {
    box-shadow: 0 0 20px rgba(255, 223, 158, 0.3), 0 0 40px rgba(255, 223, 158, 0.1);
}
.glow-tertiary {
    box-shadow: 0 0 20px rgba(0, 218, 243, 0.3), 0 0 40px rgba(0, 218, 243, 0.1);
}

.glow-primary-strong {
    box-shadow: 0 0 30px rgba(188, 194, 255, 0.5), 0 0 60px rgba(188, 194, 255, 0.2), 0 0 100px rgba(188, 194, 255, 0.1);
}
.glow-secondary-strong {
    box-shadow: 0 0 30px rgba(255, 223, 158, 0.5), 0 0 60px rgba(255, 223, 158, 0.2), 0 0 100px rgba(255, 223, 158, 0.1);
}
.glow-tertiary-strong {
    box-shadow: 0 0 30px rgba(0, 218, 243, 0.5), 0 0 60px rgba(0, 218, 243, 0.2), 0 0 100px rgba(0, 218, 243, 0.1);
}

/* ========== ANIMATIONS ========== */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

@keyframes gradient-shift {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
    100% { filter: hue-rotate(0deg); }
}

@keyframes aura-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

@keyframes number-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========== INTERACTIVE ELEMENTS ========== */

/* Cards com glow e elevação */
.card-interactive {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-interactive:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Borda gradiente animada */
.border-gradient-primary {
    position: relative;
    background: linear-gradient(rgba(53, 52, 54, 0.4), rgba(53, 52, 54, 0.4)) padding-box,
                linear-gradient(135deg, #bcc2ff, #00daf3, #ffdf9e, #bcc2ff) border-box;
    background-size: 200% 200%;
    animation: border-flow 4s ease infinite;
    border: 2px solid transparent;
}

/* Shimmer effect on hover */
.shimmer-hover:hover {
    background: linear-gradient(90deg, transparent 0%, rgba(188, 194, 255, 0.1) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out;
}

/* Botões com brilho */
.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-glow::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-glow:hover::before {
    left: 100%;
}

/* Links com underline animado */
.link-underline {
    position: relative;
}
.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #bcc2ff, #00daf3);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(188, 194, 255, 0.5);
}
.link-underline:hover::after {
    width: 100%;
}

/* Logo glow animation */
.logo-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Step cards */
.step-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.step-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.step-card:hover::before {
    opacity: 1;
}

.step-card-primary:hover::before {
    background: linear-gradient(135deg, rgba(188, 194, 255, 0.3), rgba(188, 194, 255, 0.1));
}
.step-card-primary:hover {
    box-shadow: 0 0 40px rgba(188, 194, 255, 0.3), 0 20px 40px rgba(0,0,0,0.3);
}

.step-card-secondary:hover::before {
    background: linear-gradient(135deg, rgba(255, 223, 158, 0.3), rgba(255, 223, 158, 0.1));
}
.step-card-secondary:hover {
    box-shadow: 0 0 40px rgba(255, 223, 158, 0.3), 0 20px 40px rgba(0,0,0,0.3);
}

.step-card-tertiary:hover::before {
    background: linear-gradient(135deg, rgba(0, 218, 243, 0.3), rgba(0, 218, 243, 0.1));
}
.step-card-tertiary:hover {
    box-shadow: 0 0 40px rgba(0, 218, 243, 0.3), 0 20px 40px rgba(0,0,0,0.3);
}

/* Step number animation */
.step-number {
    transition: all 0.3s ease;
}
.step-card:hover .step-number {
    animation: number-pulse 0.6s ease-in-out;
}

/* SLA cards */
.sla-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sla-card:hover {
    transform: translateY(-4px);
}
.sla-card:hover .sla-icon {
    animation: float 2s ease-in-out infinite;
}

/* Tech cards */
.tech-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 60px rgba(188, 194, 255, 0.15);
}
.tech-card:hover .tech-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(188, 194, 255, 0.4);
}

/* Client cards */
.client-card {
    transition: all 0.3s ease;
    position: relative;
}
.client-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(188, 194, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.client-card:hover::after {
    opacity: 1;
}
.client-card:hover {
    transform: scale(1.05);
    border-color: rgba(188, 194, 255, 0.5);
    box-shadow: 0 0 20px rgba(188, 194, 255, 0.2);
}

/* Brand Safety section - right side glow container */
.bs-glow-container {
    position: relative;
}
.bs-glow-container::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(188, 194, 255, 0.15), transparent 70%);
    border-radius: 50%;
    animation: aura-pulse 4s ease-in-out infinite;
    z-index: -1;
}

/* Dashboard image glow */
.dashboard-glow {
    transition: all 0.4s ease;
}
.dashboard-glow:hover {
    box-shadow: 0 0 60px rgba(188, 194, 255, 0.3), 0 0 100px rgba(0, 218, 243, 0.15), 0 25px 50px rgba(0,0,0,0.4);
}

/* Nav links */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #bcc2ff, #00daf3);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(188, 194, 255, 0.6);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link:hover {
    color: #bcc2ff;
    text-shadow: 0 0 20px rgba(188, 194, 255, 0.4);
}

/* CTA button */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}
.cta-button:hover::before {
    width: 300%;
    height: 300%;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(188, 194, 255, 0.4), 0 10px 30px rgba(0,0,0,0.3);
}
.cta-button:active {
    transform: scale(0.98);
}

/* Hero radar rings (inspired by BRZ logo) */
@keyframes radar-pulse {
    0%   { transform: scale(1);    opacity: 0.15; }
    50%  { transform: scale(1.04); opacity: 0.3;  }
    100% { transform: scale(1);    opacity: 0.15; }
}
.radar-ring {
    animation: radar-pulse 3s ease-in-out infinite;
}
.hero-bg {
    background: radial-gradient(ellipse at 80% 50%, rgba(29,43,138,0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(240,165,0,0.08) 0%, transparent 50%);
}

/* Hero title glow */
.hero-title-glow {
    transition: all 0.4s ease;
}
.hero-title-glow:hover {
    text-shadow: 0 0 30px rgba(255, 223, 158, 0.5), 0 0 60px rgba(255, 223, 158, 0.3);
}

/* Section separator */
.section-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(188, 194, 255, 0.5), rgba(0, 218, 243, 0.5), rgba(255, 223, 158, 0.5), transparent);
    box-shadow: 0 0 20px rgba(188, 194, 255, 0.3);
}
