@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
}

header {
    background-color: #3b63b6;
    padding: 24px;
}

nav.menu li {
    list-style-type: none;
    margin: 12px 0;
}

nav.menu li > a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

nav.menu {
    display: flex;
    justify-content: center;
    /* margin-left: 80px; */
}

h2 {
    font-size: 48px;
    margin: 8px 0 24px 0;
}

section {
    text-align: center;
    padding: 48px 24px;
    border-bottom: 1px solid #cccccc;
}

button.botao-padrao {
    padding: 12px 30px;
    border-radius: 17px;
    border: 1px solid #3b63b6;
    background-color: #3b63b6;
    font-size: 16px;
    color: white;
    margin: 10px 0;
}

section#quem-somos > div > p {
    text-align: left;
}

div#container-tabela {
    overflow-x: scroll;
}

table {
    min-width: 450px;
}

table, td, th {
    border: 1px solid #cccccc;
    border-collapse: collapse;
    margin: 0 auto;
}

th, td {
    padding: 12px;
}

tbody th {
    text-align: left;
}

a#botao-flutuante {
    position: fixed;
    right: 25px;
    bottom: 25px;
}

a#botao-flutuante > img {
    width: 60px;
}

footer {
    padding: 24px;
}

footer > p {
    text-align: center;
    font-size: 14px;
    color: grey;
}

@media screen and (min-width: 768px) {
    nav.menu > ul {
        display: flex;
        gap: 48px;
    }

    div#container-tabela {
        width: 100%;
        overflow: hidden;
    }

    table {
        width: 70%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    section img {
        width: 70%;
    }

    section#quem-somos > div {
        padding: 0 24px;
    }
}

@media screen and (min-width: 992px) {
    nav.menu li > a {
        color: #cccccc;
    }

    nav.menu li > a:hover {
        color: white;
        text-decoration: underline;
    }

    img {
        width: 40%;
    }

    button.botao-padrao:hover {
        cursor: pointer;
        font-weight: bold;
    }

    section {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    section#pagina-inicial {
        flex-direction: row-reverse;
        gap: 24px;
    }

    section#quem-somos {
        gap: 48px;
        text-align: left;
    }

    section#quem-somos > div {
        width: 50%;
    }

    section#planos {
        flex-direction: column;
    }


}