/* ===========================
   HEADER E NAVEGAÇÃO
   =========================== */

/* Header e Navegação */
.main-nav {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(40, 30, 60, 0.95));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #d4af37;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-widgets {
    display: flex;
    align-items: center;
    gap: 20px;
}

.server-time {
    text-align: center;
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
}

.server-time small {
    display: block;
    font-size: 10px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

