/* Growth Style - Header 100% Agressivo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: var(--azul-escuro, #1a3a5f);
    border-bottom: 2px solid var(--verde-growth, #00a64e);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Força cobrir toda a largura */
    margin-top: -1px;
    padding: 0;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1000px;
    right: -1000px;
    bottom: 0;
    background: var(--azul-escuro, #1a3a5f);
    z-index: -1;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.logo {
    height: 30px;
}

.logo img {
  height: 100%;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}