*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

:root{
    --preto:            #232325;
    --branco:           #f8f9fa;
    --vermelho:         #dc3545;
    --verde:            #00f27e;
    --verde-claro:      #8ce196;
    --azul:             #0d6efd;
    --azul-claro:       #add8e6;
    --indigo:           #6610f2;
    --roxo:             #6f42c1;
    --rosa:             #d63384;
    --laranja:          #fd7e14;
    --amarelo:          #ffc107;
    --teal:             #20c997;
    --ciano:            #0dcaf0;
    --cinza:            #CCC;
    --idprimario:       #01F8F5;
    --idsecundario:     #00ECBE;
    --idpreto:          #090C1E;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}

body header{
  transition: .5s;
}


body.scrolled header{
    background-color: RGBA(9, 12, 30, 0.98);
    border-bottom: thin solid black;
    box-shadow: 0px 0px 8px var(--idpreto);
}

body header ul a{
    color: var(--branco);
}

header{
    display: flex;
    position: fixed;
    width: 100%;
    padding: 20px 0;
    height: 60px;
    background: transparent;
    flex-direction: row;
    z-index: 999;
    transition: .3s ease-in;
}

#header{
    background: transparent;
    display: flex;
    margin: auto;
    box-shadow: none;
    padding: 0;
    width: calc(100% - 110px);
}

#header nav{
    margin: auto;
}

footer{
    position: relative;
    float: left;
    display: block;
    width: 100%;
    background: var(--idpreto);
    color: var(--branco);
}

h2 {
    color: var(--idsecundario);
    margin-bottom: 20px;
}

p {
    text-align: justify;
}

input[type="text"], input[type="password"], input[type="email"]{
    width: calc(100% - 20px);
    border: thin solid lightgray;
    padding: 10px;
    outline: none;
}

textarea{
    width: calc(100% - 20px);
    border: thin solid lightgray;
    padding: 10px;
    outline: none;
}

input[type="submit"], input[type="button"], button{
    padding: 10px;
    color: var(--idsecundario);
    background: transparent;
    border: thin solid var(--idsecundario);
    cursor: pointer;
    transition: .3s;
}


input[type="submit"]:hover, input[type="button"]:hover, button:hover{
/*  background-color: var(--idsecundario);
    color: var(--branco);*/
    box-shadow: 0px 0px 4px 0px var(--idsecundario), inset 0px 0px 4px 0px var(--idsecundario);
    text-shadow: 0px 0px 4px var(--idsecundario);
}

/* Layout */
.container {
    width: 100%;
    margin: 0;
    padding: 0px;
    line-height: 1.6;
}

/* Seções */
.section {
    width: calc(100% - 160px);
    padding: 20px 80px;
    background: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.section:nth-child(odd){
    background: whitesmoke;
}

.section:nth-child(even){
    background: white;
}

#footer-contain .section{
    background: var(--idpreto);
}

.section h2 i {
    margin-right: 10px;
}

/* Lista de Itens */
.list-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    list-style: none;
    margin: 40px 0;
    padding: 0;
    gap: 30px;
}

.list-inline li {
    width: calc(33.333% - 20px);
    background: white;
    padding: 20px;
    box-shadow: 2px 2px 6px lightgray;
    text-align: center;
}

.list-inline li i {
    font-size: 48px;
    color: var(--idsecundario);
}

.list-inline li h4 {
    margin-top: 10px;
    color: var(--idsecundario);
}

.invalid{
    border: thin solid red !important;
}

/* Scroll */

::-webkit-scrollbar              {
    background: var(--preto);
    border: thin solid black;
    width: 8px;
}
::-webkit-scrollbar-button       {
    background: black;
    color: white;
    border: thin solid black;
}
::-webkit-scrollbar-track        {
    background: var(--preto);
    border: thin solid black;
}
::-webkit-scrollbar-thumb        {
    background: var(--branco);
    border: thin solid black;
}

/* Responsividade */
@media (max-width: 999px) {
    .section {
        width: calc(100% - 60px);
        padding: 20px 40px;
    }

    .list-inline li {
        width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .section {
        width: calc(100% - 20px);
        padding: 20px 20px;
    }

    .list-inline {
        flex-direction: column;
        align-items: center;
    }

    .list-inline li {
        width: calc(100% - 40px);
    }
}