a:hover{
    color: rgb(235, 179, 76);
    text-decoration: underline;
}

.tarja-cores{
    width: 100%;
    height: 20px;
}

h1 {
    font-size: 48px;
    text-shadow: 0px 0.2px 3px rgba(0, 0, 0, 0.315);
    margin-bottom: 20px;
}

.sobre p, .recarga p, .bilhetagem p, .contatos p {
    margin-bottom: 15px;
    font-size: 22px;
    text-align: justify;
}

/* SOBRE */

.sobre{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: rgb(219, 175, 92);
    padding: 50px 10%;
    align-items: center;
    height: auto;
}

.sobre img{
    width: 500px;
    box-shadow: 0px 1px 5px black;
}

.textSobre{
    text-align: justify;
    margin-left: 5%;
    max-width: 600px;
}

.textSobre h1{
    text-align: center;
}



/* RECARGA */

.recarga{
    display: flex;
    flex-direction: row;
    background-color: #fff;
    justify-content: space-between;
    padding: 50px 10%;
    align-items: center;
    height: auto;
}

.recarga img{
    width: 500px;
}

.textRecarga{
    margin-left: 5%;
}

.textRecarga h1{
    text-align: center;

}

/* BILHETAGEM */

.bilhetagem{
    background-color:rgb(219, 175, 92);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px 10%;
    align-items: center;
    height: auto;
}

/* CONTATOS */

.contatos{
    display: flex;
    flex-direction: row;
    background-color: #fff;
    padding: 50px 10%;
    align-items: center;
    height: auto;
}

.contatos h1{
    color: red;
}


/* 1050px */

@media(max-width: 1050px){
    .sobre, .recarga, .bilhetagem, .contatos{
        padding: 50px 5%;
    }

}

/* 930px */

@media(max-width: 930px){
    h1{
        font-size: 42px;
    }
}

/* 890px */

@media(max-width:890px){
    .sobre img, .recarga img{
        width: 400px;
    }
}



/* 780px */

@media screen and (max-width: 780px){
    .sobre{
        flex-direction: column;
    }
    .sobre img, .recarga img{
        width: 80%;
    }
    .textSobre{
       margin-top: 20px; 
    }

    .recarga{
        flex-direction: column;
    }
    
    .bilhetagem h1, .contatos h1{
        text-align: center;
    }
}




/* 500px */

@media screen and (max-width: 500px){
    .sobre img, .recarga img{
        width: 100%;
    }
}