/**
 * Header Production CSS - Otimizado para produção
 * Energy Future Insights Portal
 * 
 * Este arquivo contém apenas CSS crítico específico do header
 * CSS principal do header está em header.php (inline por performance)
 */

/* Garantir que header não tenha scroll */
.desktop-header {
    overflow: hidden !important;
    max-width: 100vw !important;
}

.desktop-header > div {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
}

.desktop-header .header-line-1 {
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Custom max-width: 1450px - mas respeitando viewport */
.max-w-custom {
    max-width: min(1450px, 100vw) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Header container - respeitar max-w-custom mas não ultrapassar viewport */
.desktop-header > div.max-w-custom {
    max-width: min(1450px, 100vw) !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

