@font-face {
  font-family: 'Unageo-Regular';
  src: url('./fonts/Unageo-fonte/Unageo-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Unageo-Bold';
  src: url('./fonts/Unageo-fonte/Unageo-Bold.ttf') format('truetype');
}

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Unageo-Regular';
}

ul {
    padding: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

article section {
    user-select: none;
}

/* Cabeçalho */
.header {
    position: fixed;
    width: 100%;
    user-select: none;
}

.header svg{
    display: none;
    position: fixed; 
    top: 16px; 
    left: 16px;
    border: 1px solid #ffffff;
    fill: #FFFFFF;
    padding: 4px;
    border-radius: 4px;
    z-index: 3;
    background-color: #142C4C8F;
    cursor: pointer;
}

.header_nav {
    border: 1px solid #FFFFFF;
    border-radius: 12px;
    margin: 14px 10% 14px 10%;
    padding: 8px;
    background-color: #142C4C8F;
    padding-bottom: 0px;
    z-index: 2;
    transition: .5s;
}

.header_nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header nav ul li {
    list-style: none;
    margin-top: 4px;
    margin-bottom: 10px;
}

.header nav ul li a {
    text-decoration: none;
    margin: 0px 8px 0px 8px;
    padding: 4px;
    border-radius: 14px;
    transition: .5s;
    color: white;
}

.header nav ul li a:hover {
    background-color: #B89B62;
    color: #142C4C;
}


/* Nav vertical */
.header_nav_vertical {
    position: fixed;
    background-color: #142C4C8F;
    text-align: center;
    width: 50vw;
    border-radius: 0;
    height: 100vh;
    z-index: 1;
    padding: 16px;
    left: -50vw;
    top: 0px;
}

.header_nav_vertical ul {
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
    
}


.header_nav_vertical ul li {
    margin: 20px 0px !important;
    white-space: nowrap;
}

#home {
    height: 100vh;
    background-image: url(images/background-home.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    background-position: center;
    overflow: hidden;
    user-select: none;
}

#home::before{
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    height: 100vh;
    background-color: #142C4CE5;
    z-index: 0;
}

#home figure {
    position: relative;
}

#home figure image {
    width: 60%;
}

#home figure figcaption {
    font-weight: 600;
    font-size: 26px;
    padding-left: 16px;
    padding-right: 16px;
}

#home  div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    background-color: #4483C765;
    filter: blur(90px);
    border-radius: 100%;
    width: 80vw;
    height: 80vh;
}

/* Conteudo */
.content {
    display: flex;
    background-color: rgb(255, 255, 255);
    flex-direction: column;
    padding-top: 2%;
    padding-bottom: 2%;
}

.content section{
    margin: 2% 20% 2% 20%;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.404);
    padding: 16px;
    border-radius: 18px;
    background-color: white;
    position: relative; 
    overflow: hidden;
    transition: .5s;
}

.content  section h2{
    text-align: center;
    margin-bottom: 16;
    text-decoration: underline;
    text-decoration-color: #D4C48C;
    color: #333333;
    font-family: 'Unageo-Bold';
}

.content  section ul {
    font-size: 20px;
}

.content  section p{
    margin: 8px;
    font-size: 24px;
    text-align: center;
}

.content  section aside {
    display: flex;
    align-items: center;
}

.content  section aside figure img {
    border-radius: 16px;
}

#nossos_parceiros svg {
    background: rgba(0, 0, 0, 0.301); 
    border: 1px solid white; 
    border-radius: 100%; 
    padding: 8px;
}

#regioes_atendidas aside div div{
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap;
}

#regioes_atendidas ul {
    margin: 10px 40px;
}

#redes_atendidas ul {
    margin: 10px 40px;
}

#redes_atendidas aside div div {
    display: flex; 
    justify-content: center;
}

/* Rodapé */
.footer {
    background-color: #ffffff;
    padding: 8px;
    text-align: center;
    padding: 16px 10% 16px 10%;
    font-size: 20px;
    transition: .5s;
    user-select: none;
}

.footer .logo {
    display: flex; 
    justify-content: center;
}

.footer .contact {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.footer figure {
    background-color: #142c4c; 
    border-radius: 80px; 
    width: 180px; 
    height: 60px; 
    display: flex; 
    align-items: center; 
    margin: auto; 
    padding-left: 16px; 
    padding-right: 16px;
}

.footer ul {
    list-style: none;
    transition: .5s;
}

.footer ul li {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.footer ul li svg {
    margin-right: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #000000;
}

.footer ol {
    list-style: none;
    text-align: left;
}

.footer ol li a {
    text-decoration: none;
    color: #000000;
}

@media (max-width: 1600px){

    .content section {

        margin: 2% 10% 2% 10%;

    }

}

@media (max-width: 1200px){

    .content section {
        margin: 2% 2% 2% 2%;
    }

}

@media (max-width: 1066px){

    .header_nav {
        margin: 14px 2% 14px 2%;
    }

    .footer {
        padding: 16px 5% 16px 5%;
    }

    .footer .contact {
        flex-wrap: wrap;
    }


}

@media (max-width: 990px){

    .content section aside figure {
        display: none;
        
    }

    .footer {
        padding: 16px 2% 16px 2%;
    }

}   

@media (max-width: 880px){

    .header svg {
        display: block;
    }

    .header_nav {
        display: none;
    }

    .footer ul {
        width: 100%;
    }

    .footer ol {
        width: 100%;
        text-align: center;
    }


}

@media (max-width: 464px){

    #regioes_atendidas aside div div ul  {
        width: 40vw;  
    }

    #redes_atendidas aside div div {
        flex-wrap: wrap;
    }

    #redes_atendidas aside div div ul {
        width: 150px;
    }

    .footer ol li {
        padding: 0px;
    }

}
