/* ===========================================================
   EA616 - Novo visual
   Mantém 100% do HTML original
   ===========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    background:#eef3f8;

    font-family:Arial, Helvetica, sans-serif;

    color:#222;

    line-height:1.6;

    font-size:16px;

}


/* --------------------------------------------------------- */
/* Área principal                                            */
/* --------------------------------------------------------- */

.principal{

    width:1150px;

    margin:35px auto;

}


.conteudo{

    background:#ffffff;

    padding:35px;

    border-radius:12px;

    box-shadow:0 6px 20px rgba(0,0,0,.18);

}


/* --------------------------------------------------------- */
/* Títulos                                                   */
/* --------------------------------------------------------- */

h1{

    color:#003b6f;

    font-size:34px;

    margin-bottom:15px;

}


h2{

    color:#004d99;

    margin-top:40px;

    margin-bottom:15px;

    padding-bottom:6px;

    border-bottom:3px solid #0055aa;

}


h3{

    color:#005aa8;

    margin-top:25px;

    margin-bottom:10px;

}


/* --------------------------------------------------------- */

p{

    margin-bottom:10px;

}


/* --------------------------------------------------------- */
/* Links                                                     */
/* --------------------------------------------------------- */

a{

    color:#0055aa;

    text-decoration:none;

    transition:0.25s;

    font-weight:500;

}


a:hover{

    color:#ff6b00;

    text-decoration:underline;

}


/* --------------------------------------------------------- */

hr{

    border:none;

    border-top:1px solid #d9d9d9;

    margin:30px 0;

}


/* --------------------------------------------------------- */
/* Imagens                                                   */
/* --------------------------------------------------------- */

img{

    max-width:100%;

    height:auto;

}


/* --------------------------------------------------------- */
/* Tabelas                                                   */
/* --------------------------------------------------------- */

table{

    width:100%;

    border-collapse:collapse;

    margin:20px 0;

}


table td{

    padding:8px;

    vertical-align:top;

}


table th{

    background:#003b6f;

    color:white;

    padding:10px;

}


/* --------------------------------------------------------- */
/* Tabelas utilizadas pelo site                              */
/* --------------------------------------------------------- */

.CSSTableGenerator{

    margin:20px 0;

    border-radius:8px;

    overflow:hidden;

    border:1px solid #d0d0d0;

}


.CSSTableGenerator table{

    width:100%;

    border-collapse:collapse;

}


.CSSTableGenerator td{

    padding:10px;

    border-bottom:1px solid #ececec;

}


.CSSTableGenerator tr:nth-child(even){

    background:#f8fbff;

}


.CSSTableGenerator tr:hover{

    background:#eef6ff;

}


/* --------------------------------------------------------- */
/* Listas                                                    */
/* --------------------------------------------------------- */

ul{

    margin-left:25px;

    margin-bottom:15px;

}


ol{

    margin-left:25px;

    margin-bottom:15px;

}


/* --------------------------------------------------------- */
/* Código                                                    */
/* --------------------------------------------------------- */

pre{

    background:#f5f5f5;

    border-left:4px solid #0055aa;

    padding:15px;

    overflow:auto;

}


code{

    font-family:Consolas, monospace;

}


/* --------------------------------------------------------- */
/* Botões (caso existam)                                     */
/* --------------------------------------------------------- */

input[type=button],
button{

    background:#0055aa;

    color:white;

    border:none;

    border-radius:6px;

    padding:10px 18px;

    cursor:pointer;

}


button:hover{

    background:#003b6f;

}


/* --------------------------------------------------------- */
/* Rodapé                                                    */
/* --------------------------------------------------------- */

footer{

    margin-top:40px;

    text-align:center;

    color:#666;

    font-size:14px;

}


/* --------------------------------------------------------- */
/* Impressão                                                 */
/* --------------------------------------------------------- */

@media print{

body{

    background:white;

}

.principal{

    width:100%;

    margin:0;

}

.conteudo{

    box-shadow:none;

    border:none;

    padding:0;

}

a{

    color:black;

    text-decoration:none;

}

}


/* --------------------------------------------------------- */
/* Responsividade                                            */
/* --------------------------------------------------------- */

@media screen and (max-width:1200px){

.principal{

    width:95%;

}

}


@media screen and (max-width:700px){

body{

    font-size:15px;

}

.conteudo{

    padding:18px;

}

table{

    font-size:14px;

}

}