#banner{
    background: linear-gradient(110deg, #0034be, #00087a);
}

#banner .center{
    position: relative;
    display: flex;
    height: 100%;
}

#banner .center > div{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
    width: 50%;
    color: white;
}

#banner .center > div *{
    color: inherit;
}

#banner h1{
    font-size: 40px;
    color: inherit;
}

#banner a{
    background-color: orange;
    box-shadow: var(--box_shadow);
    padding: 10px 15px;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 10px;
    border: 2px solid orange;
    transition: 0.5s;
}

#banner a:hover{
    background-color: white;
    border-color: orange;
    color: orange;
}

#banner_decoracao{
    position: absolute;
    right: 0;
    top: -4vh;
    height: 100%;
    background: url('imagens/decoracao-banner.webp') center / contain;
    background-repeat: no-repeat;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
}