:root {
    --primary: #00f0ff;
    --secondary: #7b2dff;
    --dark: #0a0a1a;
    --light: #f0f8ff;
}

@font-face {
    font-family: 'Orbitron';
    src: url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');
}

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Orbitron', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

header{
    z-index: 100000 !important
}
.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.card {
    background: rgba(10, 10, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(0, 240, 255, 0) 0%,
        rgba(0, 240, 255, 0.1) 50%,
        rgba(0, 240, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none !important;

}

.card button:hover{

    background: linear-gradient(56deg,rgba(25, 59, 103, 1) 0%, rgba(145, 42, 85, 1) 50%, rgba(237, 221, 83, 1) 100%) !important;
    color: #fff !important;
}

 .area-btn:hover{

    background: linear-gradient(56deg,rgba(25, 59, 103, 1) 0%, rgba(145, 42, 85, 1) 50%, rgba(237, 221, 83, 1) 100%) !important;
    color: #fff !important;
}

.fe-gradiente{
     background: linear-gradient(80deg,rgba(25, 59, 103, 0.5) 0%, rgba(145, 42, 85, 0.5) 70%, rgba(237, 221, 83, 0.5) 100%) !important;
     color: #d9d9d9;
text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
}
.card:hover::before {
    animation: shine 1.5s;
    opacity: 1;
}

@keyframes shine {
    0% { transform: rotate(30deg) translate(-30%, -30%); }
    100% { transform: rotate(30deg) translate(30%, 30%); }
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
    border-color: var(--primary);
}

.glow {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.tech-grid {
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.signal-wave {
    position: relative;
}

.signal-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    animation: ripple 3s infinite;
    z-index: -1;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hexagon {
    position: relative;
    width: 100px;
    height: 57.74px;
    background-color: rgba(0, 240, 255, 0.1);
    margin: 28.87px 0;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.hexagon:before,
.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.hexagon:before {
    bottom: 100%;
    border-bottom: 28.87px solid rgba(0, 240, 255, 0.1);
}

.hexagon:after {
    top: 100%;
    border-top: 28.87px solid rgba(0, 240, 255, 0.1);
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.typing-text {
    border-right: 2px solid var(--primary);
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: rgba(0, 240, 255, 0.5);
    border-radius: 50%;
    animation: particle-anim linear infinite;
}

@keyframes particle-anim {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) translateX(200px);
        opacity: 0;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 15px;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
    100% {
        opacity: 0;
        transform: translateY(20px) translateX(-50%);
    }
}

.speed{
    display: flex;
    position: relative !important;
/*    background: red;*/
    
    height: 150px !important;
    z-index: 10000;
    display: flex;
    justify-content: center !important; /* Centraliza no eixo horizontal */
    align-items: center !important;    /* Centraliza no eixo vertical */
    margin-top: -50px;
    margin-bottom: 30px;

}
.speedometer {
    position: relative;
    width: 200px;
    height: 100px;
    rotate: 360deg;
    left: calc(50% - 100px);
}

.speedometer::before {
   content: '';
    position: absolute;
    /* Dimensoes */
    width: 200px;
    height: 100px;
    box-sizing: border-box;

    /* Posicionamento (para ficar virado para cima) */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    /* Define a borda (largura da linha do gradiente) */
    border: 5px solid transparent; 
    
    /* Aplica o arredondamento para a curva *virada para cima* */
    border-radius: 100px 100px 0 0; 
    border-bottom: none;
    
    /* O SEGREDO: Múltiplos Backgrounds para o Gradiente na Borda */
    background-image: 
        /* 1. O Fundo interno, cor sólida (para 'cortar' o centro) */
        linear-gradient(to top, var(--dark), var(--dark)), 
        
        /* 2. O Gradiente da borda (que fica por baixo) */
        linear-gradient(80deg,
            rgba(25, 59, 103, 0.5) 0%, 
            rgba(145, 42, 85, 0.5) 70%, 
            rgba(237, 221, 83, 0.5) 100%
        );

    /* Recorta o primeiro background (interno) para que ele cubra apenas o conteúdo */
    background-clip: padding-box, border-box; 
    
    /* Garante que o gradiente 2 comece na borda */
    background-origin: border-box; 
    
    /* Ajuste para garantir que o semicírculo de cor sólida no centro seja aplicado corretamente */
    background-repeat: no-repeat;
}

.speedometer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 60px;
    background: var(--primary);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-45deg);
    animation: speedometer 3s ease-in-out infinite alternate;
}

@keyframes speedometer {
    0% { transform: translateX(-50%) rotate(-45deg); }
    100% { transform: translateX(-50%) rotate(45deg); }
}

.network-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.fe-padding{
    padding-right: 10px;
}
.network-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform-origin: left center;
    animation: network-pulse 2s infinite;

}

@keyframes network-pulse {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

@media (max-width: 720px) {
    .logo-screen{
        margin-top: 50px !important;
/*        background: red;*/
        margin-bottom: 50px;
    }
    .mapas{
        width: 90% !important;
    }
    .fe-padding{
        padding-right: 0 !important;
    }
}