* {
    margin: 0%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    box-sizing: border-box;
    font-size: 1.03em;
}
main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/*Cabeçalho*/
header {
    width: 100%;
    height: 20vh;
    background: #323b4c;
    padding: 1%;
    
}
#molduraFoto {
    width: 10%;
    height: 20vh;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    margin-left: 3%;
}
#molduraFoto img {
    width: 95%;
    height: 95%;
    border-radius: 50%;
    transform: translate(3%, 3%);
    object-fit: cover;
    transition: 0.3s;
}
#molduraFoto img:hover {
    filter: brightness(100%);
    scale: 110%;
}
header h1 {
    color: #FFFFFF;
    font-size: 3.3em;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-align: left;
}
header h3 {
    color: #FFFFFF;
    font-size: 2em;
    font-weight: 500;
    letter-spacing: 0.5px;
}
ulLinguagens {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/*Seções*/
#sections {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    position: relative;
}

/*Seção 1*/
#sec01 {
    width: 30%;
    height: 100%;
    background: #e4e4e4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1%;
    position: sticky;
    top: 0;
}
#sec01 h3 {
    font-size: 1.5em;
}
#sec01 li {
    padding-top: 3%;
}
#sec01 a {
    text-decoration: none;
    color: black;
    transition: 0.3s;
    padding-left: 5%;
}
#sec01 a:hover {
    color: blue;
}
#sec01 p {
    text-decoration: none;
    color: black;
    transition: 0.3s;
    padding-left: 5%;
    font-weight: 500;
}
#sec01 p:hover {
    color: darkcyan;
}
.ulContato li{
    list-style: none;
    display: flex;
}
.ulContato li img {
    width: 30px;
    height: 30px;
}
.liTitulo {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
}

/*Seção 2*/
#sec02 {
    width: 70%;
    height: 100%;
    background: #f8f8f8;
    display: flex;
    flex-wrap: wrap;
    padding: 2%;
    padding-top: 1%;
}
#sec02 ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#sec02 h3 {
    font-size: 1.5em;
    margin-bottom: 2%;
}
#sec02 p {
    font-size: 1.3em;
    font-weight: 500;
}
.Cotemig p {
    margin-bottom: 2%;
}
#CotP1 {
    width: 100%;
    text-align: left;
}
.certificados {
    width: 100%;
    height: 33%;
}
#quadro {
    width: 100%;
    height: 100%;
    display: grid;
    grid: repeat(2, 1fr) / repeat(3, 1fr);
}
#quadro div {
    width: 100%;
    height: 100%;
    border: #000 solid 1px;
    margin-left: 3%;
}
#quadro img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {

    header {
        height: auto;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    #molduraFoto {
        width: 120px;
        height: 120px;
        margin: auto;
    }

    header h1 {
        font-size: 2em;
        margin-top: 15px;
    }

    header h3 {
        font-size: 1.2em;
    }

    #sections {
        flex-direction: column;
    }

    #sec01,
    #sec02 {
        width: 100%;
        height: auto;
    }
    #sec01 {
        position: relative;
        top: 0
    }
    #sec02  ul{
        padding: 0%;
    }

    .liTitulo {
        margin-top: 15%;
    }
    #sec02 p {
        text-align: start;
    }

    #quadro {
        flex-direction: row;
    }
}
