/* header.css - Estilização do cabeçalho viking */
.main-header {
    position: relative;
    z-index: 100;
    background: linear-gradient(135deg, rgba(8, 12, 25, 0.95) 0%, rgba(20, 15, 35, 0.92) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid #ff8c2e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-area h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff9a44, #e05a1a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo-area h1:hover {
    transform: scale(1.02);
}

.logo-area p {
    font-size: 0.8rem;
    color: #f3bc7c;
    font-style: italic;
    letter-spacing: 0.5px;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #f0e6d2;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 0.25rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9a44, #ff6a1a);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffb347;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .nav-menu ul {
        justify-content: center;
        gap: 1.2rem;
    }
    
    .logo-area h1 {
        font-size: 1.4rem;
    }
}