﻿/*------------------------------------ Geral ------------------------------------------*/

:root {
    --color-green: #3AA25E;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
    text-decoration: none;
    outline: none;
    font-style: normal;
    font-weight: normal;
    list-style: none;
}

header ,				/* cabeçalho-topo     */
nav	,				/* menu               */
section ,				/* conteudo-principal */
article ,				/* sessões-blocos     */
aside ,					/* chamadas           */
footer {				/* rodapé             */
}

body {
    font-family: 'Indie Flower', cursive;
    background: #F0F0F0;
    font-size: 12px;
    color: var(--color-green);
}

a,
button,
input[type="submit"],
input[type="button"] {
    cursor: pointer;

    -webkit-transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in;

    -webkit-opacity: 0.8;
    -moz-opacity: 0.8;
    -o-opacity: 0.8;
    filter: alpha(opacity=8);
}

a:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    -webkit-transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in;

    -webkit-opacity: 1;
    -moz-opacity: 1;
    -o-opacity: 1;
    filter: alpha(opacity=10);
}

/*------------------------------------ Fim Geral ------------------------------------------*/


/*------------------------------------ Conteúdo ------------------------------------------*/

/* Geral
================================================== */
.barra {
    height: 40px;
    background: var(--color-green);
}

.bgGeral {
    max-width: 300px;
    margin: 0 auto;
    margin-top: 50px;
}

.bgGeral img {
    margin: 25px;
    width: calc(100% - 50px);
}

p.manutencao {
    text-align: center;
    max-width: 325px;
    font-size: 17px;
    margin: 0 auto;
    margin-top: 40px;
    font-weight: bold;
    color: #437188;
}
/* Fim Geral
================================================== */
