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

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

/* APLICANDO RESPONSIVIDADE */
header {
    background-color: #3f69c4;
    padding: 24px;
}

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;
}

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: 18px 48px;
    border-radius: 48px;
    border: 1px solid #3d68be;
    background-color: #3e67b8;
    font-size: 16px;
    color: white;
    margin: 24px 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;
    }


}




/* Exercícios   */


/* nav.menu {
    text-align: center;
}

nav.menu > ul {
    display: flex;
    gap: 48px;
}

nav.menu li {
    list-style-type: none;
}

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

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

/* header > p {
    display: inline-block;
    margin: 24px;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
} */

/* section {
    text-align: center;
    padding: 48px;
}

img {
    width: 400px;
}

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

hr {
    border: 1px solid #b6b5b5;
}

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

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

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

section#planos {
    flex-direction: column;
}

section#quem-somos > div {
    text-align: left;
    width: 60%;
}

section#quem-somos > img {
    width: 40%;
}

button.botao-padrao {
    padding: 18px 48px;
    border-radius: 48px;
    border: 1px solid #3c63b5;
    background-color: #3c63b5;
    color: white;
    margin-top: 24px;
    font-size: 16px;
}

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

table {
    width: 70%;
}

table, td, th {
    border: 1px solid #c0bdbd;
    border-collapse: collapse;
}

td, th {
    padding: 12px;
}


section#planos {
    padding: 48px 0;
}


footer {
    padding: 36px;
}

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


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

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


