* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    height: 100%;
}

body {
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0;
    color: #333;
    background: #fff;
}

body::-webkit-scrollbar {
    display: none;
}

.clear {
    clear: both;
}

/* ========================= */
/* CONTAINER PADRÃO */
/* ========================= */

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* ========================= */
/* HEADER */
/* ========================= */


.logo-do-site{
    max-width: 470px;
    padding: 0 2%;
}

.logo-do-site img.img-site{
    width: 100%;
    height: auto;
}

header {
    height: auto;
    padding: 15px 2%;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 30;
}

/* ========================= */
/* MENU DESKTOP */
/* ========================= */

header nav.menu-desktop {
    float: right;
}

header nav.menu-desktop ul {
    padding: 45px 0;
    list-style-type: none;
}

header nav.menu-desktop ul li {
    float: left;
    font-size: 13px;
    text-transform: uppercase;
    padding: 0 20px;
}

header nav ul li a {
    text-decoration: none;
    color: rgb(124, 124, 124);
}

/* ========================= */
/* MENU MOBILE */
/* ========================= */

nav.menu-mobile {
    display: none;
    width: 100%;
    padding: 0 2%;
    text-align: center;
}

/* BOTÃO */

nav.menu-mobile button {
    background: none;
    border: none;
    padding: 10px;
    margin-left: auto;
    display: block;
    cursor: pointer;
}

/* ÍCONE */

nav.menu-mobile button img.icone {
    width: 28px;
    height: 28px;
    display: block;
    margin-bottom: 15px;
}

/* LISTA FECHADA */

nav.menu-mobile ul {
    display: none;
    position: absolute;
    top: 75px;
    left: 20%;
    width: 80%;
    background-color: #ebeaea;
    list-style: none;
    padding: 0 2%;
    margin: 0;
    z-index: 999;
    border-radius: 10px;
    border: 1px solid #ebeaea;
    overflow: hidden;
}

/* MENU ABERTO */

nav.menu-mobile ul.active {
    display: block;
}

/* ITENS */

nav.menu-mobile ul li {
    width: 100%;
}

/* LINKS */

nav.menu-mobile ul li a {
    display: block;
    white-space: normal;
    word-break: break-word;
    padding: 14px 0;
    text-decoration: none;
    text-transform: uppercase;
    color: #555;
    text-align: center;
    position: relative;
    transition: color 0.3s ease;
}

/* LINHA */

nav.menu-mobile ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #cfcfcf;
    transition: background-color 0.3s ease;
}

/* HOVER */

nav.menu-mobile ul li a:hover {
    color: #698293;
}

nav.menu-mobile ul li a:hover::after {
    background-color: #698293;
}

/* ============================= */
/* PÁGINAS LEGAIS */
/* ============================= */

section.pagina-info {
    padding: 60px 20px;
}

section.pagina-info .container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 2%;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

section.pagina-info h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #698293;
}

section.pagina-info h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #698293;
}

section.pagina-info p {
    line-height: 1.7;
    font-size: 1rem;
    color: #4b4b4b;
    margin-bottom: 15px;
}

section.pagina-info ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

section.pagina-info ul li {
    margin-bottom: 10px;
    color: #4b4b4b;
}

section.pagina-info a {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
}

section.pagina-info a:hover {
    text-decoration: underline;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media screen and (max-width:855px) {
    nav.menu-desktop {
        display: none;
    }

    nav.menu-mobile {
        display: block;
    }

}
