@charset "UTF-8";

@font-face {
    font-family: bebas;
    src: url(/fontes/Bebas_Neue/BebasNeue-Regular.ttf);
    font-weight: normal;
}

:root {
    --blue0: #0C53E0;
    --blue1: #368ef3;
    --blue2: #02256b;

    --fontbebas: bebas;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #cccccc68;
}

header {
    min-height: 150px;
    background-image: linear-gradient(to bottom, var(--blue1), var(--blue2));
    text-align: center;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5);
}

header > h1 {
    color: white;
    font-family: var(--fontbebas);
    font-weight: normal;
    letter-spacing: 3px;
    font-size: 2.5em;
    padding-top: 30px;
    padding-bottom: 30px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.559);
}

header > nav > ul {
    list-style: none;
}

header > nav > ul > li {
    display: inline-block;
}

header > nav > ul > li > a {
    color: white;
    text-decoration: none;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.559);
}

header > nav > ul > li > a:hover {
    cursor: pointer;
    background-color: white;
    color: var(--blue0);
}

#home header nav ul li a.ativo,
#servicos header nav ul li a.ativo,
#sobre header nav ul li a.ativo,
#contato header nav ul li a.ativo {
    background-color: white;
    color: var(--blue0);
}

main {
    max-width: 1000px;
    margin: auto;
    background-color: white;
    text-align: center;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.30);
    border-radius: 0 0 5px 5px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

main h1, h2 {
    padding: 30px 0 15px 0;
}

main p {
    text-align: justify;
    padding: 20px 30px 20px 30px;
    max-width: 840px;
    margin: auto;
    text-indent: 30px;
    line-height: 1.5em;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
}

main#servicos h2, h3 {
    font-family: var(--fontbebas);
    font-weight: normal;
    letter-spacing: 1px;
    text-align: justify;
    padding: 20px 30px 0px 30px;
    max-width: 840px;
    margin: auto;
}

main#servicos p {
    text-align: justify;
    padding: 5px 30px 20px 30px;
    max-width: 840px;
    margin: auto;
    text-indent: 30px;
    line-height: 1.5em;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
}

form {
    padding: 50px 20px 20px 50px;
}

input {
    padding: 5px;
    margin: 10px 0 10px 0;
}

#button {
    font-weight: 600;
    font-size: 17px;
    background-color: var(--blue2);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 20px 5px 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.559);
}

button:hover {
    background-color: white;
    color: var(--blue2);
}

aside {
    background-color: var(--blue0);
    text-align: center;
}

aside ul {
    list-style: none;
    padding-top: 20px;
    padding-bottom: 10px;
}

aside ul li {
    margin-bottom: 10px;
}

aside ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: .9em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.559);
}

aside ul > li > a:hover {
    cursor: pointer;
    text-decoration: underline;
}

footer {
    padding: 5px;
    background-color: var(--blue2);
    color: white;
    text-align: center;
}