﻿.custom-header {
    position: relative;
    width: 100%;
    height: 221px;
    overflow: hidden;
}

.header-bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('/img/header-bg.webp') left center no-repeat;
    background-size: cover;
}

.header-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    gap: 30px; /* Deixe o texto mais perto do logo */
    justify-content: flex-start;
    padding-left: 45vw; /* Aumente para afastar do canto esquerdo, diminua para aproximar */
}

.header-logo {
    height: 115px;
    width: auto;
    display: block;
}

.header-title-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-title {
    color: var(--amarelo);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 1.1;
}

/* Responsividade */
@media (max-width: 900px) {
    .custom-header {
        height: 86px;
    }

    .header-title {
        font-size: 9px;
        font-style: normal;
        font-weight: 700;
        line-height: 130.019%; /* 11.702px */
    }

    .header-logo {
        height: 42px;
    }

    .header-banner {
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .custom-header {
        height: 66px;
    }

    .header-logo {
        height: 32px;
    }
}
