/* =========================================
   HEADER DESKTOP (PC) - FINAL (FULL WIDTH & FIXO)
   Arquivo: /assets/css/pc/header.css
   ========================================= */

@media (min-width: 1025px) {

    /* --- 1. CONTAINER PRINCIPAL --- */
    .site-header {
        position: fixed;
        top: 0; left: 0; right: 0;
        height: 90px; /* Altura Fixa Constante */
        
        background-color: var(--cor-background-fundo); 
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        
        padding: 0 40px;
        z-index: 2001;
        transition: box-shadow 0.3s ease; /* Transição apenas na sombra */
        
        width: 100%;
        box-sizing: border-box;
    }

    /* Efeito ao Rolar (Apenas Sombra, sem diminuir tamanho) */
    .site-header.scrolled {
        box-shadow: 0 4px 30px rgba(0,0,0,0.3); /* Sombra um pouco mais forte */
    }

    /* Container Flex Interno (FULL WIDTH) */
    .header-flex-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        width: 100%; 
        max-width: 100%; 
    }


    /* --- 2. ÁREA ESQUERDA (LOGO) --- */
    .header-left {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .header-logo img {
        height: 50px; 
        width: auto;
        display: block;
        transition: transform 0.3s;
    }

    .header-logo:hover img {
        transform: scale(1.05);
    }


    /* --- 3. ÁREA CENTRAL (NAVEGAÇÃO) --- */
    .desktop-navigation {
        flex: 1; 
        display: flex;
        justify-content: center;
        padding: 0 20px;
    }

    .desktop-menu-list {
        display: flex;
        list-style: none;
        gap: 40px;
        margin: 0; padding: 0;
    }

    .desktop-menu-list > li > a {
        color: rgba(255,255,255,0.9);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 10px 0;
        position: relative;
        transition: color 0.3s;
    }

    .desktop-menu-list > li > a::after {
        content: '';
        position: absolute;
        bottom: 5px; left: 0; width: 0%;
        height: 2px;
        background-color: var(--cor-destaque); 
        transition: width 0.3s ease;
    }

    .desktop-menu-list > li > a:hover {
        color: var(--cor-branco);
    }

    .desktop-menu-list > li > a:hover::after {
        width: 100%;
    }

    /* Submenus */
    .desktop-menu-list li { position: relative; }
    
    .desktop-menu-list .sub-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0;
        background: var(--cor-branco);
        min-width: 220px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-radius: 4px;
        padding: 10px 0;
        border-top: 3px solid var(--cor-destaque);
    }

    .desktop-menu-list li:hover .sub-menu { display: block; }

    .desktop-menu-list .sub-menu a {
        color: var(--cor-texto-medio);
        padding: 12px 25px;
        display: block;
        font-size: 13px;
        text-transform: none;
        font-weight: 500;
        transition: 0.2s;
    }
    .desktop-menu-list .sub-menu a:hover {
        background: #f9f9f9;
        color: var(--cor-principal);
        padding-left: 30px;
    }


    /* --- 4. ÁREA DIREITA (BOTÃO PARCEIROS) --- */
    .header-actions {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .btn-header-parceiros {
        display: flex; 
        align-items: center; 
        justify-content: center;
        gap: 10px;
        
        height: 45px;
        padding: 0 30px;
        
        background-color: var(--cor-branco); 
        color: var(--cor-principal); 
        
        border-radius: 6px;
        font-weight: 800;
        font-size: 13px;
        text-transform: uppercase;
        text-decoration: none;
        
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .btn-header-parceiros i { font-size: 16px; }

    .btn-header-parceiros:hover {
        background-color: var(--cor-destaque); 
        color: var(--cor-branco); 
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }


    /* --- 5. Ocultar Elementos Mobile --- */
    .mobile-only,
    .mobile-nav-overlay,
    .mobile-nav-drawer {
        display: none !important;
    }
}