@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700;900&display=swap');
@font-face {
    font-family: 'Quickpen';
    font-style: normal;
    font-weight: normal;
    src: local('Quickpen'), url('quickpen.woff') format('woff');
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 100%;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
img {
    width: 100%;
    height: auto;
    border: 0;
}
.fundoPrincipal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.fundoPrincipal::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #005DFF;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 100%);
    transition: all .25s ease-out;
}
.fundoPrincipalFixo {
    height: 70px;
    z-index: 2;
}
.fundoPrincipalFixo::before {
    height: 70px;
    clip-path: none;
}
.social {
    position: fixed;
    display: flex;
    left: 20px;
    bottom: 20px;
    list-style: none;
}
.social.fixo {
    display: none;
}
.social .iconeSocial {
    display: block;
    width: 28px;
    height: 28px;
    color: #FFFFFF;
    font-size: 28px;
}
.social li:nth-of-type(1) {
    margin-right: 10px;
}
.social li:nth-of-type(2) .iconeSocial {
    font-size: 31px;
}
@keyframes up-down{
    from {bottom: 30px}
    to {bottom: 20px}
}
.seta {
    position: absolute;
    right: 0;
    width: 80px;
    height: 25px;
    z-index: 1;
    transform: scale(.6) translateY(50%);
    animation: 1s up-down infinite;
}
.seta::before,
.seta::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    top: -14px;
    left: 20px;
    cursor: pointer;
    background-color: #005DFF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.seta::before {
    transform: rotate(30deg) translate(-2px,30px);
}
.seta::after {
    transform: rotate(-30deg) translate(2px,30px);
}
header .logo {
    display: block;
    margin-top: 6px;
    padding: 10px 20px;
    color: #FFFFFF;
    font-family: 'Quickpen', cursive;
    font-size: 1.4em;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 70px;
    z-index: 2;
}
header nav {
    display: flex;
}
header nav .botaoMenu {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    background-color: #003899;
    border-radius: 50%;
    cursor: pointer;
    transition: cubic-bezier(.26,.1,.27,1.55) .35s;
    z-index: 3;
}
@keyframes pop-out {
    0% {transform: scale(1)}
    50% {transform: scale(1.05)}
    100% {transform: scale(1)}
}
header nav .botaoMenuAtivo {
    background-color: #005DFF;
    animation: .25s pop-out ease-in-out .1s;
}
header nav .botaoMenu .linhaBotaoMenu {
    width: 30px;
    height: 3px;
    margin: 3px;
    border-radius: 3px;
    background-color: #FFFFFF;
    transition: cubic-bezier(.26,.1,.27,1.55) .35s;
}
header nav .botaoMenuAtivo .linhaBotaoMenu:nth-child(1) {
    transform: rotate(45deg) translate(20%,200%);
}
header nav .botaoMenuAtivo .linhaBotaoMenu:nth-child(2) {
    transform: rotate(-45deg) translate(-1%,10%);
}
header nav .botaoMenuAtivo .linhaBotaoMenu:nth-child(3) {
    transform: rotate(-45deg) translate(20%,-200%);
}
header nav ul {
    position: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    padding-top: 100px;
    font-size: 1.3em;
    font-weight: 300;
    text-transform: uppercase;
    background-color: #003899;
    clip-path: circle(0% at 95% 5%);
    transition: all .75s ease-out;
    pointer-events: none;
    z-index: 2;
}
header nav .menuAberto {
    clip-path: circle(200% at 95% 5%);
    pointer-events: all;
}
header nav ul li {
    display: flex;
    align-items: center;
    list-style: none;
}
header nav ul li a {
    padding: 15px;
    color: #FFFFFF;
    transition: color .15s ease-in-out;
}
header nav ul li a:hover {
    color: rgba(255,255,255,.75);
}
#principal {
    height: 100vh;
    margin-top: 90px;
    transition: all .25s ease-out .1s;
}
#principal.oculto {
    height: 0;
    overflow: hidden;
}
#principal .cartao {
    width: 80%;
    padding: 15px 20px;
    margin: 15px auto;
    font-size: 0.9em;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    transition: opacity .25s ease-out;
}
#principal.oculto .cartao {
    opacity: 0;
}
#principal .cartao ul li {
    margin: 5px 0;
    list-style: none;
}
#principal .cartao ul li span {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: rgba(0,93,255,.4);
    border-radius: 50%;
}
#principal .cartao ul li strong {
    display: inline-block;
    margin-left: max(40px);
    margin-top: 6px;
    margin-bottom: 6px;
}
#principal .texto {
    color: #FFFFFF;
    padding: 15px;
    text-align: center;
    transition: opacity .25s ease-out;
}
#principal.oculto .texto {
    opacity: 0;
}
#principal .texto h1 {
    font-size: 2.8em;
    font-weight: 900;
    text-transform: uppercase;
}
#principal .texto p {
    font-size: 1.2em;
}
#principal .texto a {
    color: #003899;
    border-radius: 15px;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #FFF6BB;
    display: block;
    text-align: center;
    margin: 35px auto 0 auto;
    padding: 15px;
    border: 2px solid #FFF6BB;
    transition: all .15s ease-in-out;
}
#principal .texto a:hover {
    background-color: rgba(0,0,0,.1);
    color: #FFF6BB;
}
main {
    margin-top: 70px;
}
main section {
    padding: 25px 0;
}
main section h2 {
    position: relative;
    align-self: center;
    margin-bottom: 30px;
    font-size: 1.8em;
    text-transform: uppercase;
}
main section h2::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    display: block;
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background-color: #005DFF;
    transform: translateX(-50%);
}
#sobre .texto,
#areas .texto,
#experiencia .texto {
    display: flex;
    flex-direction: column;
    margin: 20px;
    text-align: justify;
}
#sobre .foto {
    margin: 20px;
    line-height: 0;
    border: 4px solid rgba(0,93,255,.4);
}
#areas .blocos {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px;
    margin-right: 75px;
}
#areas .blocos .cartao {
    position: relative;
    height: 260px;
    background: #ccc;
    display: flex;
    width: calc((100vw - 380px) / 3);
    margin: 30px 20px;
    margin-left: 75px
}
#areas .blocos .cartao .fotoCartao {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #005DFF;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: .5s ease-in-out;
}
#areas .blocos .cartao:hover .fotoCartao {
    width: 150px;
    height: 150px;
    left: -75px;
    top: calc(50% - 75px);
    transition: .5s ease-in-out;
    background: #FF0057;
}
#areas .blocos .cartao .fotoCartao::before {
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 100%;
    font-size: 4em;
    white-space: nowrap;
    color: rgba(255,255,255,.1);
    font-weight: 700;
    transition: .25s ease-in-out;
}
#areas .blocos .cartao:hover .fotoCartao::before {
    opacity: 0;
}
#areas .blocos .cartao .fotoCartao img {
    max-width: 100px;
    transition: .5s ease-in-out;
}
#areas .blocos .cartao:hover .fotoCartao img {
    max-width: 75px;
}
#areas .blocos .cartao .conteudo {
    position: absolute;
    right: 0;
    width: calc(100% - 75px);
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#areas .blocos .cartao .conteudo h3 {
    margin-bottom: 5px;
    font-size: 24px;
}
#areas .blocos .cartao .conteudo span {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background: #333333;
    color: #FFFFFF;
    cursor: pointer;
}
#areas .blocos .cartao .conteudo span:hover {
    background: #666666;
}
@media screen and (max-width: 1024px) {
    #areas .blocos {
        align-items: center;
        margin-right: 20px;
    }
    #areas .blocos .cartao {
        width: 80%;
        max-width: 300px;
        flex-direction: column;
        height: auto;
        margin: 30px auto;
    }
    #areas .blocos .cartao .fotoCartao {
        position: relative
    }
    #areas .blocos .cartao .fotoCartao,
    #areas .blocos .cartao:hover .fotoCartao {
        width: 100%;
        height: 200px;
        left: 0;
    }
    #areas .blocos .cartao .fotoCartao img,
    #areas .blocos .cartao:hover .fotoCartao img {
        max-width: 100px;
    }
    #areas .blocos .cartao .conteudo {
        position: relative;
        width: 100%;
    }
}
#experiencia .conteudo .linhaTempo {
    position: relative;
    height: 500px;
}
#experiencia .conteudo .linhaTempo ul {
    list-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1px;
    padding-left: 40px;
    color: #000000;
    font-size: 13px;
}
#experiencia .conteudo .linhaTempo ul:before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    border-left: 2px dashed #005DFF;
}
#experiencia .conteudo .linhaTempo ul li {
    position: relative;
    margin-left: 30px ;
    background-color: #FFFFFF;
    padding: 14px;
    border-radius: 6px;
    width: 260px;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}
#experiencia .conteudo .linhaTempo ul li:not(:first-child) {
    margin-top: 60px;
}
#experiencia .conteudo .linhaTempo ul li > span {
    width: 2px;
    height: 100%;
    background: #005DFF;
    left: -30px;
    top: 0;
    position: absolute;
}
#experiencia .conteudo .linhaTempo ul li > span:before,
#experiencia .conteudo .linhaTempo ul li > span:after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #005DFF;
    position: absolute;
    background: #86B7E7;
    left: -5px;
    top: 0;
}
#experiencia .conteudo .linhaTempo ul li span:after {
    top: 100%;
}
#experiencia .conteudo .linhaTempo ul li > div {
    margin-left: 10px;
}
#experiencia .conteudo .linhaTempo div .titulo,
#experiencia .conteudo .linhaTempo div .tipo {
    font-weight: 600;
    font-size: 12px;
}
#experiencia .conteudo .linhaTempo div .descricao {
    font-weight: 300;
}
#experiencia .conteudo .linhaTempo div .tipo {
    margin-bottom: 5px;
}
#experiencia .conteudo .linhaTempo div > div {
    margin-top: 5px;
}
#experiencia .conteudo .linhaTempo span.data {
    height: 100%;
}
#experiencia .conteudo .linhaTempo span.data span {
    position: absolute;
    font-size: 10px;
    left: -35px;
    font-weight: bold;
}
#experiencia .conteudo .linhaTempo span.data span:first-child {
    top: 0;
}
#experiencia .conteudo .linhaTempo span.data span:last-child {
    top: 100%;
}
#experiencia .conteudo .fotoExperiencia {
    display: none;
}
.fundoRodape {
    background-color: #CCCCCC;
}
footer {
    position: relative;
    color: #000000;
}
footer .blocos {
    position: relative;
}
footer .blocos article {
    margin: 10px;
    padding: 10px;
}
footer h4 {
    font-size: 1.2em;
    text-transform: uppercase;
    margin: 10px 0 25px 0;
}
footer ul li {
    list-style: none;
}
footer ul li a {
    display: inline-flex;
    height: 30px;
    color: #333333;
    transition: color .15s ease-in-out;
}
footer ul li a:hover {
    color: #005DFF;
}
footer .contatos li a {
    align-items: center
}
footer .contatos .icones {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 24px;
}
footer .contatos .whatsapp {
    display: inline-flex;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    font-size: 32px;
    color: #4CAF50;
}
footer .copyright {
    padding: 10px 20px;
    text-align: center;
    font-size: .8em;
}
footer .copyright a {
    color: #005DFF;
    transition: color .15s ease-in-out;
}
footer .copyright a:hover {
    color: #003899;
}
@media screen and (min-width: 960px) {
    .fundoPrincipal::before {
        clip-path: polygon(0 0, 85% 0, 60% 100%, 0% 100%);
    }
    .fundoPrincipal {
        background-color: #FFFFFF;
    }
    .fundoPrincipalFixo:before {
        clip-path: polygon(0 0, 85% 0, 82.6% 100%, 0% 100%);
    }
    .social.fixo {
        display: flex;
        left: auto;
        right: 35px;
        top: 22px;
        bottom: auto;
        z-index: 3;
    }
    .social.fixo .iconeSocial {
        width: 24px;
        height: 24px;
        color: #005DFF;
        font-size: 24px;
    }
    .social.fixo li:nth-of-type(2) .iconeSocial {
        font-size: 27px;
    }
    .seta {
        right: 50%;
        transform: scale(.9) translateX(56%);
    }
    .seta::before,
    .seta::after {
        background-color: #FFFFFF;
    }
    header .logo {
        font-size: 1.6em;
    }
    header .logo::after {
        content: '|';
        position: absolute;
        margin-top: -14px;
        margin-left: 25px;
        font-family: 'Roboto', sans-serif;
        font-size: 2em;
        font-weight: 100;
        pointer-events: none;
    }
    header nav .botaoMenu {
        display: none;
    }
    header nav ul {
        position: relative;
        flex-direction: row;
        height: 100%;
        margin-left: 25px;
        padding-top: 0;
        font-size: 0.9em;
        font-weight: 400;
        background-color: transparent;
        clip-path: none;
        transition: none;
        pointer-events: all;
    }
    header nav ul li:first-child {
        display: none
    }
    header nav ul li a {
        letter-spacing: 1px;
    }
    #principal {
        display: grid;
        grid-template-columns: 50% auto;
        grid-template-areas: "principal cartao";
        margin: 0;
    }
    #principal .cartao {
        grid-area: cartao;
        height: fit-content;
        align-self: center;
        margin: 1em;
        font-size: 1em;
    }
    #principal .texto {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        grid-area: principal;
        text-align: left;
        margin: 4em 0 0 4em;
    }
    #principal .texto h1 {
        width: 30%;
        font-size: 4em;
        line-height: .9em;
    }
    #principal .texto p {
        font-size: 1.4em;
    }
    #principal .texto a {
        margin-left: 0;
        padding: 15px 60px;
    }
    main {
        margin-top: 140px;
    }
    #sobre {
        display: grid;
        grid-template-columns: 65% auto;
        align-items: center;
    }
    #experiencia .conteudo {
        display: grid;
        grid-template-columns: 55% auto;
        align-items: center;
    }
    #experiencia .conteudo .fotoExperiencia {
        display: inherit;
        margin: 40px 0;
        margin-right: 80px;
    }
    footer .blocos {
        position: relative;
        display: grid;
        grid-template-columns: 25% 25% 1fr;
    }
    footer .blocos article {
        border-right: 1px solid #999999;
    }
    footer .blocos article:last-child {
        border: none;
    }
}