/* CSS Document */
/* ==========================================================================
   NEON WIDGETS — Estilos avançados para widgets e sidebars
   ========================================================================== */

/* ==========================================================================
   WIDGETS GERAIS
   ========================================================================== */

.neon-widget {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #1b1f24;
    border-radius: 6px;
    color: #e0e0e0;
}

.neon-widget a {
    color: #00d4d4;
    transition: color .2s ease;
}

.neon-widget a:hover {
    color: #00ffff;
}

/* Títulos de widgets */
.neon-widget-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #008285;
    padding-bottom: 8px;
}

/* ==========================================================================
   SIDEBAR WIDGETS
   ========================================================================== */

.sidebar .neon-widget {
    background-color: #14181b;
    border-left: 4px solid #008285;
}

.sidebar .neon-widget-title {
    color: #fff;
}

/* ==========================================================================
   FEATURED CONTENT (NEON)
   ========================================================================== */

.neon-featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.neon-featured .entry {
    background-color: #1c2228;
    padding: 20px;
    border-radius: 6px;
    transition: background .2s ease;
}

.neon-featured .entry:hover {
    background-color: #222a31;
}

.neon-featured .entry-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.neon-featured .entry-title a {
    color: #00e0e0;
}

.neon-featured .entry-title a:hover {
    color: #00ffff;
}

.neon-featured .entry-meta {
    font-size: 13px;
    color: #aaa;
}

/* ==========================================================================
   LISTAS DE WIDGETS
   ========================================================================== */

.neon-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.neon-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #2a2f35;
}

.neon-widget ul li:last-child {
    border-bottom: 0;
}

.neon-widget ul li a {
    display: block;
    padding: 4px 0;
}

/* ==========================================================================
   WIDGET DE BUSCA (NEON)
   ========================================================================== */

.neon-search-widget {
    position: relative;
}

.neon-search-widget input[type="search"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: #0f1316;
    color: #fff;
}

.neon-search-widget button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: #00e0e0;
    font-size: 18px;
    cursor: pointer;
}

/* ==========================================================================
   SOCIAL ICONS (NEON)
   ========================================================================== */

.neon-social-icons {
    display: flex;
    gap: 10px;
}

.neon-social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #14181b;
    border-radius: 50%;
    color: #00e0e0;
    font-size: 18px;
    transition: background .2s ease, color .2s ease;
}

.neon-social-icons a:hover {
    background-color: #008285;
    color: #fff;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 900px) {
    .neon-featured {
        gap: 16px;
    }

    .neon-widget {
        padding: 16px;
    }

    .neon-widget-title {
        font-size: 16px;
    }
}


