/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: Arial , sans-serif;
    vertical-align: baseline;
    list-style: none;
    box-sizing: border-box;
}

:root {
    --bg-anside: white;
   /*--gradient-hero: linear-gradient(
    145deg,
    hsl(224, 50%, 25%),
    hsl(224, 48%, 30%),
    hsl(224, 43%, 35%)
  );*/
}

body {
    min-width: 320px;
    max-width: 100%;
    overflow-x: hidden !important;
}

/* NAVBAR */
.bg-nav {
    background-color: #2a3867;
    /*padding-bottom: 10px;*/
}

.border-bottom-nav {
    border-bottom: 1px solid #e0e0e0 !important;
}

.tamanho-logo {
    width: 140px;
    height: auto;
}

.midias:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.tamanho-midias-imagem {
    width: 35px;
    height: 35px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
    text-decoration: underline;
    color: #ffffffbf;
}

.fonte-menu {
    font-size: 1rem;
    font-weight: 600;
}

.fonte-tabela {
    font-size: small;
}

.navbar-dark .navbar-toggler {
    font-size: 1.5rem;
    border: 0;
    margin-top: -30px;
}

.align-menu {
    align-items: center;
}

/* Body */
.fundo-linha {
	background-color: #ffffff;
}

/*RODAPÉ*/
.cor-rodape {
    background-color: #2a3867;
    padding-bottom: 1.5%;
    padding-top: 1.5%;
}

.tamanho-imagem-rodape {
    width: 180px;
    height: 80px;
}

@media only screen and (max-width: 992px) {
    .container {
        max-width: 100%;
    }
    .align-menu {
        align-items: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .tamanho-imagem-rodape {
        width: 125px;
        height: 50px;
    }
    .tamanho-fonte-rodape p {
        font-size: 10px !important;
    }
    .navbar-toggler {
        padding: .25rem !important;
    }
}

@media only screen and (max-width: 340px) {
    .tamanho-imagem-rodape {
        width: 90px !important;
        height: auto !important;
    }
}

@media only screen and (max-width: 320px) {
    body {
        overflow-x: auto !important;
    }
}

.tamanho-fonte-rodape {
    font-size: 15px;
}