* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
    color: #fff;
}

header{
    background-color: #4949ce;
    width: 100%;
}

.menu ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
    list-style: none;
}

.menu ul li a{
    color: #FFF;
    text-transform: uppercase;
    text-decoration: none;
}

.menu ul li a:hover {
    font-weight: bold;
    text-decoration: underline;
}

body {
    background-color: #000000;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

section {
    padding: 2rem 6rem;
    display: flex;
}
img {
    width: 400px;
}

.growTravel {
    flex-direction: row-reverse; 
    justify-content: center; 
    align-items: center;
    margin: 2rem;
    gap: 2rem;
}

.growTravel-content {
    flex-direction: column;
    gap: .4rem ;
}

h1 {
    font-size: 2.5rem;
}

h2 {
 font-size: 2.3rem;
}

.growTravel-content button{
    background-color: #4949ce;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: #FFF;
    font-size: 1rem;
    margin-top: .8rem;
    transition: .5s ease-in-out; 
    outline: none;

}

.growTravel-content button:hover{
    cursor: pointer;
    scale: 1.1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 95, 204, 0.4);
    transition: box-shadow 0.3s;
}

#quem-somos {
    flex-direction: row;
    gap: 2rem;
    margin: 4rem 2rem;
    align-items: center;
    justify-content: center;
}

.quem-somos-content {
    flex-direction: column;
    min-width: 50%;
}

hr{
    border: 1px solid #e6e3e3;
}

#planos {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

#container-table {
    width: 100%;
}

table {
    min-width: 450px;
    margin-bottom: 4rem;
}

table, td, th {
    border: 1px solid #cfcccc;
    padding: 1rem;
    border-collapse: collapse;
    margin: 1rem auto;
}

td, th {
    padding: 12px;
    text-align: center;
}

tbody th{
    text-align: left;;
}

footer {
    text-align: center;
    color: gray;
    padding: 2rem;
    font-size: 14px;
}

a:focus,
button:focus, section:focus {
  outline: 2px solid #FFF;
  outline-offset: .5px;
}

.float-button {
    position: fixed;
    float: right;
    right: .5rem;
    bottom: .5rem;
    z-index: 1000;
} 

.float-button img{
    width: 40px;
    margin: 2rem;
}

@media screen and (max-width: 480px) {
    img {
        width: 300px;
    }

    section {
        padding: 2rem;
    }

    .growTravel {
        flex-direction: column; 
        text-align: center;
    }

    #quem-somos {
        flex-direction: column;
        text-align: justify;
        padding: 3rem;
        margin: 1rem;
    }

    #quem-somos h2 {
        font-size: 2rem
    }
    
    #container-table {
        overflow-x: scroll;
        padding: 0 2rem;
    }

    table {
        margin: 2rem;
    }

    .float-button img{
        width: 30px;
        margin: 2rem;
    }
}

@media screen and (min-width: 481px) and (max-width:768px){
    .growTravel {
        flex-direction: column; 
        text-align: center;
    }

    #quem-somos {
        flex-direction: column;
        text-align: justify;
        padding: 3rem;
        margin: 1rem;
    }
}