
.fundo{
    width: 100%;                                /*ocupar toda tela*/
    height: 600px;                  /*altura*/
    border-bottom: 6px solid orange;          /*borda*/
    overflow: hidden;
    background-position: center;
    background-size: cover;            /*img de fundo ajustada*/
    position: relative;                /*posição nunca muda*/                
    background-attachment: fixed;      /*deixa imagem de fundo fixa*/
    background-image: url(https://th.bing.com/th/id/R.11ca79c9e01e1d9e49bd0670247a45d7?rik=Uu%2fTtCqAaQGLWQ&riu=http%3a%2f%2f4.bp.blogspot.com%2f_0EQljdG_qPg%2fRpt7JrcYRxI%2fAAAAAAAAAAM%2fjizSs3Shp-A%2fw1200-h630-p-k-no-nu%2fDSC05487.JPG&ehk=fyjNTGL2Q6Vf61IYYQDNxS9vc1Y%2fu4cSxDaxNxNxFrc%3d&risl=&pid=ImgRaw&r=0 );                 
}

.textoViagem{
    font-family: travel;
    color: rgb(255, 255, 255);
    padding-top: 30px;
    text-align: center;
    font-size: 50px;
    animation: aparecer 9s;
}
@keyframes aparecer {
    0%{ 
        font-size: 2px;
        opacity: 0;
    }
    100%{
        opacity: 100;
    }
}


.aviao{

    width: 350px;
    position: absolute;
    right: -200px;
    top: 200px;

}

.card{
    margin-bottom: 50px;                /*margem de baixo*/
    box-shadow: 2px 2px 20px black;   /*sombra do cartão*/
    transition: 2s;                     /* tempo da transição voltando*/
    height: 410px;
}

.card:hover{                            /*quando passar o mouse em cima*/
    width: 20rem !important;            /*aumento de tamanho do card*/
    transition: 2s;                     /*tempo de transição quando inicia*/
    
}

.carousel{
    box-shadow: 2px 2px 20px black;
}

.rodape{
    color: white;
    padding-top: 30px;
    border-top: 5px solid orange;
    padding-bottom: 30px;
}

a{
    color: white !important;
}

.img-fluid {
    box-shadow: 2px 2px 20px black;
    margin-top: 20px;
    margin-bottom: 30px;
    border-radius: 30px;
    transition: 2s;
    
}

.img-fluid:hover{
    filter: grayscale(100%);
    transition: 2s;
}

.informacao {
    margin-top: 30px;
}
.preco{
    
    font-size: 20px !important;
    padding: 10px !important;
    border-bottom: 7px solid #dc3545;
    
}
