header {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    z-index: 1090;
}

header .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.navbar nav {
    display: none;
}

@media (min-width: 1024px) {
    .navbar nav {
        display: block;
    }
}

/*
** Banner
*/

.banner-header {
    height: 60vh;
    display: flex;
    align-items: center;
}

.banner-header {
    color: white;
}

.banner-header-title {
    bottom: 0;
    padding: 30px;
    z-index: 1;
}

.banner-header p {
    color: var(--Branco, #EFE5D7);
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 800;
    line-height: 122.644%;
}

.banner-header h1 {
    color: var(--Branco, #EFE5D7);
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
}

@media (min-width: 1024px) {
    .banner-header h1 {
        font-size: 2rem;
        width: 60%;
    }

    .banner-header p {
        font-size: 1rem;
    }
}