body {
    color: #FFFFFF;
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    padding: 0;
}

main {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) -47.12%, rgba(0, 0, 0, 0.94) 100%), url('slider.png') center / cover no-repeat;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 26px);
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    width: 100vw;
}

img {
    align-self: center;
}

.tag {
    background-color: rgba(0, 0, 0, 0.75);
    margin: 60px 0;
}

.tag h1 {
    font-size: 31px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 36px;
    margin: 0;
    padding: 13px 0;
    width: 100%;
}

.destinos {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 45px;
}

.opcao_destino {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.opcao_destino h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    margin: 0;
}

.opcao_destino a {
    background-color: #202020;
    border-radius: 13px;
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.55);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 23px;
    padding: 13px 60px;
    text-decoration: none;
    transition: all .5s ease-in-out;
}

.opcao_destino a:hover {
    transform: scale(1.05);
}

.footer__copy {
    align-items: center;
    background-color: #303030;
    display: flex;
    font-size: 10px;
    font-weight: 500;
    justify-content: center;
    line-height: 12px;
    padding: 7px 0;
}

.footer__copy a {
    color: #FFFFFF;
    margin-right: 5px;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    
    main {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) -47.12%, rgba(0, 0, 0, 0.94) 100%), url('slider-m.png') center / cover no-repeat;
    }   
    
    .tag h1 {
        font-size: 18px;
        letter-spacing: 0.2em;
        line-height: 21px;
    }

    .destinos {
        flex-direction: column;
    }

    img {
        width: 90%;
    }

}

@media screen and (min-width: 320px) and (max-width: 375px) {
    
    .tag h1 {
        font-size: 16px;
    }

}