/* CSS Document */
/* ==========================================================================
   NEON HEADER — Estilos avançados para o cabeçalho do site
   ========================================================================== */

/* ==========================================================================
   CONTAINER PRINCIPAL DO HEADER
   ========================================================================== */

.neon-header {
    width: 100%;
    background-color: #14181b;
    padding: 18px 0;
    position: relative;
    z-index: 900;
    border-bottom: 2px solid #008285;
}

.neon-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================================
   LOGO / TÍTULO DO SITE
   ========================================================================== */

.neon-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.neon-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.neon-logo .site-title {
    font-size: 26px;
    font-weight: 600;
    color: #00e0e0;
    margin: 0;
    text-transform: uppercase;
}

.neon-logo .site-title a {
    color: inherit;
    text-decoration: none;
}

.neon-logo .site-description {
    font-size: 14px;
    color: #aaa;
    margin-top: 4px;
}

/* ==========================================================================
   HEADER COM SOMBRA (OPCIONAL)
   ========================================================================== */

.neon-header-shadow {
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* ==========================================================================
   HEADER FIXO (OPCIONAL)
   ========================================================================== */

.neon-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

/* ==========================================================================
   ÁREA DE WIDGETS NO HEADER
   ========================================================================== */

.neon-header-widgets {
    display: flex;
    align-items: center;
    gap: 20px;
}

.neon-header-widgets .widget {
    margin: 0;
    padding: 0;
    color: #fff;
}

/* ==========================================================================
   BOTÃO DE AÇÃO NO HEADER
   ========================================================================== */

.neon-header-button {
    padding: 10px 18px;
    background-color: #008285;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    transition: background .2s ease;
}

.neon-header-button:hover {
    background-color: #00a0a0;
}

/* ==========================================================================
   BARRA SUPERIOR (OPCIONAL)
   ========================================================================== */

.neon-topbar {
    width: 100%;
    background-color: #0f1316;
    padding: 6px 0;
    color: #ccc;
    font-size: 14px;
}

.neon-topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.neon-topbar a {
    color: #00e0e0;
}

.neon-topbar a:hover {
    color: #00ffff;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 900px) {

    .neon-header .wrap {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .neon-logo {
        flex-direction: column;
    }

    .neon-header-widgets {
        justify-content: center;
        flex-wrap: wrap;
    }

    .neon-topbar .wrap {
        flex-direction: column;
        gap: 6px;
    }
}


