html
{
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    color-scheme: dark;
}

body
{
    /* POSITION */
    /* top right bottom left */
    margin: 85px auto 0 auto;
    /* APPEARANCE */
    /* TEXT */
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    line-height: 14px;
    hyphens: auto;
    background: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body:after {
    content: "";
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    left: 0;
    right: 0;
    z-index: -1;
    background: linear-gradient(rgba(0, 17, 34, 0.85), rgba(0, 51, 80, 0.85)), url('/i_fundo.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
}

b
{
    font-weight: 300;
    text-shadow: 1px 1px 0.5px rgba(63, 31, 5, 0.15);
}

/* === HEADER === */

nav
{
    /* POSITION */
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: auto;
    max-height: 0;
    width: 100%;
    overflow: hidden;
    padding: 60px 0 0 0;
    margin: 0 0 0 0;
    transition: max-height 0.3s ease-out;
    /* APPEARANCE */
    color: #ffffff;
    opacity: 0.96;
    background: linear-gradient(0deg, rgba(0, 16, 32, 0.95), rgba(16, 32, 48, 0.95));
    border-bottom: 1px solid #daa520;
    box-shadow: 0 0 10px 0 rgba(63, 31, 25, 0.8); /* h-offset v-offset blur spread color */
    cursor: pointer;
    /* TEXT */    
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 24px;
    /*border-radius: 0 0 15px 15px;*/
    
    z-index: 4000;
}

#menu
{
    /* POSITION */
    display: inline-block;
    padding: 0 0 10px 0; /* top right bottom left */
    overflow: hidden;
    margin: 0 auto 0 auto;
    width: 100%;
    max-height: 100%;
    /* APPEARANCE */    
    /* TEXT */
}

nav ul
{
    /* POSITION */
    box-sizing: border-box;
    float: left;
    padding: 0 0 0 0; /* top right bottom left */
    overflow: hidden;
    margin: 0 0 0 0;
    
    width: 50%;
    min-width: 150px;
    
    /* APPEARANCE */
    color: rgba(255, 255, 255, 0.7);
    /* background-color: rgba(255, 255, 255, 0.85); */
    /* TEXT */
    list-style: none;
}

@media only screen and (max-width: 600px)
{

    nav ul
    {
        width: 100%;
    }
    
}

@media only screen and (min-width: 1200px)
{

    nav ul
    {
        width: calc(25% - 18px);
    }
    
}

nav ul li
{
    /* POSITION */
    display: inline-block;
    height: 26px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0px 10px 0px 10px;
    margin: 0 0 0 0;
    /* APPEARANCE */
    text-shadow: 0 0 2px rgba(63, 31, 5, 0.25);
    /* TEXT */
    text-align: left;
    font-size: 20px;
    line-height: 55px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-left: 8px solid rgba(0, 51, 102, 0);
    border-bottom: 1px solid rgba(0, 51, 102, 0);
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
}

@media only screen and (min-width: 1200px)
{

    nav ul li
    {
        text-align: center;
        line-height: 40px;
    }
    
}

nav ul li:hover
{
    /* POSITION */
    /* APPEARANCE */
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.08);
    /* border-left: 8px solid #114466; */
    border-radius: 8px;
    /* TEXT */
}

#login
{
    /* POSITION */
    height: 26px;
    /* APPEARANCE */
    color: rgba(63, 31, 5, 0.25);
    background-image: url('i_login.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left 12px top 12px;
    text-shadow: 0 0 2px rgba(63, 31, 5, 0.25);
    box-shadow: 5px 2px 10px 0 rgba(63, 31, 5, 0.15); /* h-offset v-offset blur spread color */
    /* TEXT */
    line-height: 24px;
    border-left: 8px solid rgba(63, 31, 5, 0);
}

#login:hover
{
    /* POSITION */
    /* APPEARANCE */
    background-color: rgba(63, 31, 5, 0.05);
    box-shadow: 5px 2px 10px 0 rgba(63, 31, 5, 0.15); /* h-offset v-offset blur spread color */
    border-left: 8px solid rgba(63, 31, 5, 0.12);
    border-bottom: 1px solid rgba(63, 31, 5, 0);

    /* TEXT */
}

nav img, nav p
{
    /* POSITION */
    display: inline;
    position: fixed;
    padding: 0;
    margin: 0;
    /* APPEARANCE */
    cursor: pointer;
    /* TEXT */
    line-height: 18px;
    font-size: 30px;
    font-family: 'Play', sans-serif;
}

nav img
{
    /* POSITION */
    top: 11px;
    left: 14px;
    width: 40px;
    height: 40px;
    /* APPEARANCE */
    /* TEXT */
    font-weight: bold;
    opacity: 0.84;
}

nav img:hover {
    opacity: 1;
}

nav p
{
    /* POSITION */
    top: 22px;
    right: 14px;
    /* APPEARANCE */
    /* TEXT */
}

/* === CONTENT === */

#content
{
    /* POSITION */
    min-height: 100%;
    max-width: 1000px;
    margin: 0 auto 0 auto;
    /* APPEARANCE */
    /* TEXT */
}

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

aside
{
    color: #777778;
    font-size: 16px;
    font-weight: 300;
}

aside strong
{
    color: #c99410;
    font-weight: 400;
}

hr
{
    border: none;
    height: 1px;
    margin: 30px 0 30px 0;
}

header, section
{
    /* POSITION */
    margin: 20px 20px 40px 20px;
    padding: 10px 20px 20px 20px;
    /* APPEARANCE */
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(63, 31, 5, 0.1); /* h-offset v-offset blur spread color */
    /* TEXT */
    text-align: center;
}

header
{
    /* POSITION */
    margin: 20px 20px 30px 20px;
    padding: 20px 20px 20px 20px;
    /* APPEARANCE */
    background-color: transparent;
    box-shadow: none;
    border: none;
    /* TEXT */
}

header h1, header h2, header h3, header h4, header h5, header h6, section h1, section h2, section h3, section  h4, section h5, section h6
{
    /* POSITION */
    /* APPEARANCE */
    text-shadow: 0 0 2px rgba(63, 31, 5, 0.35);
    /* TEXT */
    font-family: 'Play', sans-serif;
    text-align: left;
    font-weight: 400;
}

header h1, section h1
{
    /* POSITION */
    /* APPEARANCE */
    /* TEXT */
    text-align: center;
    font-size: 26px;
    line-height: 20px;
    text-transform: uppercase;
}

header h1, header h2
{
    /* POSITION */
    /* APPEARANCE */
    color: #ffffff;
    /* TEXT */
}

section h1
{
    /* POSITION */
    /* APPEARANCE */
    color: #003366;
    /* TEXT */
}

header h2, section h2
{
    /* POSITION */
    /* APPEARANCE */
    color: #003366;

    /* TEXT */
    font-size: 22px;
    line-height: 44px;
    text-align: center;
}

header h3, section h3
{
    /* POSITION */
    margin-top: 40px;
    /* APPEARANCE */
    color: #003366;
    /* TEXT */
    font-size: 18px;
}

section sup
{
 font-size: 10px;
 text-shadow: none;
 vertical-align: 8px;
 margin-left: 2px;
}

section ul
{
    /* POSITION */
    padding-left: 10px;
    /* APPEARANCE */
    color: rgba(63, 31, 5, 0.65);
    /* TEXT */
    font-size: 180%;
    font-weight: 400;
    text-align: justify;
}

section ol
{
    /* POSITION */
    padding-left: 10px;
    /* APPEARANCE */
    color: #000;
    /* TEXT */
    font-size: 100%;
    font-weight: 400;
    text-align: justify;
}

header a, section a
{
    /* POSITION */
    /* APPEARANCE */
    color: #003366;
    /* TEXT */
    text-decoration: none;
    font-weight: 300;
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

header p, section p
{
    /* POSITION */
    /* APPEARANCE */
    color: #000;
    /* TEXT */
    font-size: 17px;
    font-weight: 300;
    text-align: justify;
    text-shadow: 0 0 2px rgba(63, 31, 5, 0.25);
}

header p
{
    /* POSITION */
    margin: 45px 0 0 0;
    /* APPEARANCE */
    color: #ffffff;
    opacity: 0.9;
    /* TEXT */
    line-height: 1.7em;
    font-size: 1.05em;
    font-weight: 300;
    text-align: justify;
    font-family: 'Barlow', sans-serif;
}

header p strong
{
    /* POSITION */
    /* APPEARANCE */
    /* TEXT */
    font-weight: 400;
}

section p, section ul
{
    /* POSITION */
    /* APPEARANCE */
    /* TEXT */
    line-height: 23px;
}

section p strong
{
    font-weight: 400;
    text-shadow: 1px 1px 0.5px rgba(63, 31, 5, 0.25);
}

section form
{
    /* POSITION */
    margin: 0;
    padding: 0;
    /* APPEARANCE */
    border: none;
    /* TEXT */
    font-family: 'Barlow', sans-serif;
    text-align: left;
    font-size: 14px;
    word-spacing: 1px;
}

section form fieldset
{
    /* POSITION */
    margin: 20px 0 20px 0;
    padding: 0 20px 10px 20px;
    /* APPEARANCE */
    border: 1px solid rgba(63, 31, 5, 0.1);
    border-radius: 10px;
    /* TEXT */
    font-family: 'Play', sans-serif;
    text-align: left;
    font-size: 14px;
    color: rgba(63, 31, 5, 0.2);
}

section form fieldset p
{
    /* POSITION */
    /* APPEARANCE */
    /* TEXT */
    font-family: 'Barlow Semi Condensed', sans-serif;
    text-align: left;
    font-size: 14px;
    color: rgba(63, 31, 5, 0.2);
}

section form label
{
    /* POSITION */
    width: calc(100% - 50px);
    height: 20px;
    line-height: 20px;
    margin: 15px 0 0 0;
    padding: 0 5px 10px 5px;
    display: inline-block;
    /* APPEARANCE */
    border: none;
    font-size: 14px;
    color: rgba(0, 51, 102, 0.5);
    /* TEXT */
}

section form label b
{
    color: rgba(173, 161, 155, 1);
    margin-right: 10px;
}

section form label strong
{
    color: rgba(0, 51, 102, 0.5);
    letter-spacing: 1px;
}

#variosdias
{
    font-weight: 400;
}

section form input[type="text"],
section form input[type="date"],
section form input[type="time"],
section form input[type="email"],
section form input[type="tel"],
section form input[type="password"]
{
    /* POSITION */
    width: 100%;
    height: 30px;
    margin: 5px 0 0 0;
    padding: 5px;
    box-sizing: border-box;
    /* APPEARANCE */
    border: none;
    background-color: rgba(0, 51, 102, 0.05);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: rgba(173, 161, 155, 1); 
    border-radius: 20px;
    appearance: none;
    -webkit-appearance: none;
    /* TEXT */
}

section form input[type="date"]
{
    font-family: "Play", sans-serif;
    font-weight: 700;
    color: rgba(0, 51, 102, 0.5);
    background-color: rgba(255, 255, 255, 1);
    letter-spacing: 1px;
}

section form input[type="date"]::before
{
    content: "Data selecionada: ";
    padding-right: 10px;
    letter-spacing: 0;
    font-weight: 700;
    color: rgba(173, 161, 155, 1);
}

section form input[type="submit"]
{
    /* POSITION */
    width: 100%;
    height: 2.5em;
    margin: 1em 0 1em 0;
    padding: 0.5em;
    box-sizing: border-box;
    /* APPEARANCE */
    border: none;
    background-color: rgba(0, 51, 102, 0.95);
    font-size: 14px;
    font-family: 'Play', sans-serif;
    color: rgba(255, 255, 255, 1);
    border-radius: 0.75em;
    appearance: none;
    -webkit-appearance: none;
    /* TEXT */
}

section form input[type="checkbox"]
{
    /* POSITION */
    width: 1.5em;
    height: 1.5em;
    margin: 0 0 -0.4em 0;
    padding: 0;
    display: inline-block;
    /* APPEARANCE */
    appearance: none;
    -webkit-appearance: none;
    border: 0.15em solid rgba(245, 243, 242, 1);
    border-radius: 0.5em;
    background-color: rgba(245, 243, 242, 0.25);
    font-size: 14px;
    color: rgba(173, 161, 155, 0.5);
    cursor: pointer;
    /* TEXT */
}

section form input[type="checkbox"] + label
{
    color: rgba(173, 161, 155, 1);
    cursor: pointer;
}

section form input[type="checkbox"]:checked
{
    border: 0.15em solid rgba(218, 224, 231, 0.5);
    background-color: rgba(218, 224, 231, 0.5);
    background-image: url("i_checked.svg");
    background-size: 1em;
    background-repeat: no-repeat;
    background-position: center center;
}

section form input[type="checkbox"]:checked + label
{
    color: rgba(0, 51, 102, 0.5);
}

section form input[type="range"]
{
    /* POSITION */
    width: 100%;
    height: 0.5em;
    margin: 1em 0 1em 0;
    padding: 0;
    /* APPEARANCE */
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0.75em;
    background-color: rgba(0, 51, 102, 0.05);
    background: linear-gradient(to right, rgba(0, 51, 102, 0.15) 0%, rgba(0, 51, 102, 0.15) 1%, rgba(63, 31, 5, 0.05) 1%, rgba(63, 31, 5, 0.05) 100%);
    font-size: 14px;
    color: rgba(0, 51, 102, 1);
    /* TEXT */
}

section form input[type="range"]::-webkit-slider-thumb
{
  appearance: none;
  -webkit-appearance: none;
  width: 1.25em;
  height: 2.75em;
  box-sizing: border-box;
  background-color: rgba(131, 153, 179, 1);
  cursor: pointer;
  border-radius: 1em;
  border: solid 0.2em rgba(255, 255, 255, 1);
}

section form input[type="range"]::-moz-range-thumb
{
  width: 1.25em;
  height: 2.75em;
  box-sizing: border-box;
  background-color: rgba(131, 153, 179, 1);
  cursor: pointer;
  border-radius: 1em;
  border: solid 0.2em rgba(255, 255, 255, 1);
}

section form select
{
    /* POSITION */
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.5em;
    box-sizing: border-box;
    /* APPEARANCE */
    border: 0.25em solid rgba(255, 255, 255, 1);
    border-radius: 0.75em;
    background-color: rgba(0, 51, 102, 0.5);
    background-image: url('i_select.svg');
    background-size: 2em;
    background-repeat: no-repeat;
    background-position: right 0.2em top 0.6em;
    font-family: "Play", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    /* TEXT */
    font-weight: 700;
}

section form textarea
{
    /* POSITION */
    width: 100%;
    margin: 0;
    padding: 0.5em;
    box-sizing: border-box;
    resize: none;
    /* APPEARANCE */
    border: none;
    background-color: rgba(0, 51, 102, 0.05);
    font-family: "Play", sans-serif;
    font-size: 14px;
    color: rgba(173, 161, 155, 1);
    border-radius: 0.75em;
    /* TEXT */
}

section form h3
{
    /* POSITION */
    /* APPEARANCE */
    /* TEXT */
    font-size: 16px;
}

section form p
{
    /* POSITION */
    /* APPEARANCE */
    /* TEXT */
    font-size: 13.5px;
}

section form p b
{
    /* POSITION */
    /* APPEARANCE */
    /* TEXT */
    font-weight: 400;
}

section form p i
{
    /* POSITION */
    /* APPEARANCE */
    /* TEXT */
    font-style: normal;
    font-size: 11.5px;
    padding-left: 0.5em;
}

section form table
{
    width: 100%;
    margin: 0;
    border: none;
    border-collapse: collapse;
}

section form table th, section form table td
{
    width: calc(100% / 7);
    text-align: center;
    border: none;
    line-height: 24px;
}

section form table tr
{
    border-radius: 0.75em;
    border: none;
}

section form table td select
{
    margin-bottom: 0.5em;
}

section form table th
{
    width: calc(100% / 7);
    text-align: center;
    color: rgba(173, 161, 155, 0.4);
    background-color: rgba(255, 255, 255, 1);
    line-height: 1.75em;
    border: 0.05em solid rgba(255, 255, 255, 1);
}

section form table th.fds
{
    color: rgba(173, 161, 155, 0.8);
    background-color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-shadow: 0.025em 0.025em 0.1em rgba(63, 31, 5, 0.1);
}

section form table td
{
    width: calc(100% / 7);
    text-align: center;
    background-color: rgba(255, 255, 255, 1);
}

section form table td.sel
{
    font-weight: 700;
    background-color: rgba(255, 255, 255, 1);
}

section form table td.sel select
{
    font-family: "Play", sans-serif;
}

section form table td.fds
{
    background-color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-shadow: 0.025em 0.025em 0.1em rgba(63, 31, 5, 0.1);
}

section form table a
{
    cursor: pointer;
}

header img, section img
{
    /* POSITION */
    padding: 0;
    width: 100%;
    max-width: 600px;
    /* APPEARANCE */
    border-radius: 8px;
    /*border: solid 1px rgba(173, 161, 155, 0.1);*/
    /*box-shadow: 0 0 15px 0 rgba(0, 51, 102, 0.4);*/
    border: solid 1px rgba(0, 51, 102, 0.1);
    box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.6);
    margin: 13px 0 0 0;
    /* TEXT */
}

/* === FOOTER === */

footer
{
    line-height: 26px;
    width: auto;
    padding: 10px 10px 10px 10px;
    margin: 0 0 0 0;
    font-size: 14px;
    color: #cccccf;
    border-top: solid 1px #daa520;
    background: linear-gradient(0deg, rgba(0, 16, 32, 0.5), rgba(16, 32, 48, 0.5));
    box-shadow: 0 0 1px 0 rgba(63, 31, 5, 0.1); /* h-offset v-offset blur spread color */
}

footer h1, p
{
    text-align: center;
}

footer h1
{
    font-family: 'Play', sans-serif;
    font-size: 16px;
    color: #daa520;
}

footer p
{
    font-family: 'Barlow', sans-serif;
    line-height: 20px;
}

footer a
{
    color: #556677;
    text-decoration: none;
}

footer h2, footer h3
{
    display: inline-block;
    padding: 0 0 0 0;
    margin: 20px 0 0 0;
    cursor: pointer;
}

footer h2
{
    position: relative;
    left: 5px;
    padding-top: 0;
    font-weight: 300;
    font-size: 13px;
    color: #556677;
}

footer h2 strong
{
    font-family: 'Play';    
    font-size: 17px;
}

footer h2 sup
{
    padding-left: 1px;
    font-size: 16px;
    vertical-align: 0;
}

footer h3
{
    position: relative;
    float: right;
    right: 5px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding-top: 1px;
}


/* Desktop */
@media all and (min-width: 1200px) {
    nav p {
        display: none;
    }
    #menu {
        position: absolute;
        top: 10px;
        left: 65px;
    }
}

span.socicon, a.socicon {
    font-family: 'Socicon' !important;
    line-height: 3em !important;
}
