header {
    color: var(--header-text);
    padding: 10px;
    text-align: center;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 2px solid var(--header-border);
    background-color: var(--header-bg);
    z-index: 1000;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}

.header-container img {
    max-height: 60px;
}

.logo-left {
    width: 230px;
    margin-right: 20px;
}

.logo-left img {
    width: 150px;
    height: auto;
}

.title-center {
    flex: 1;
    text-align: center;
}

.title-center h1 {
    font-size: 24px;
    font-weight: bold;
    color: var(--header-title-text);
    margin: 0;
}

.info-right {
    width: 253px;
    text-align: center;
    margin-left: 20px;
}

.info-right p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.info-right p:first-child {
    color: var(--header-secondary-text);
}

.info-right p:last-child {
    color: var(--header-text);
}

.info-right hr {
    border: 0;
    border-top: 1px solid var(--header-border);
    margin: 4px 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .logo-left {
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .logo-left img {
        width: 120px;
    }

    .title-center {
        margin-bottom: 10px;
    }

    .title-center h1 {
        font-size: 20px;
    }

    .info-right {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .info-right p {
        font-size: 14px;
    }

    .info-right hr {
        margin: 10px auto;
        width: 80%;
    }
}
