@import url('https://fonts.googleapis.com/css?family=Roboto:b');

html {
    font-family: 'Roboto', sans-serif;
    color: #D65A10;
}

body {
    background-color: aliceblue;
}

ul {
    list-style-position: inside;
}

a {
    color: #D65A10;
}

.page {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
}

.leftSide {
    display: flex;
    flex-direction: column;
    width: 20%;
    height: 100%;
    border: 5px solid #D65A10;
    background-color:#D65A10;
    color: aliceblue;
}

.header {
    font-size: 20px;
    text-align: center;
    height: 20%;
    flex-grow: 1;
}


.footer {
    font-size: 20px;
    text-align: center;
    align-items: flex-end;
    flex-grow: 1;
    align-content: flex-end;
    padding-top: 20%;
}

.menu {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    flex-grow: 3;
    justify-content: center;
    align-items: center;
}

.itemMenu {
    display: flex;
    align-items: center;
    height: 25%;
    width: 70%;
    font-size: 20px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: aliceblue;
    cursor: pointer;
    margin-top: 10%;
}

.itemMenu:hover {
    border-radius: 10%;
    border: 2px solid #ad490e;
    box-shadow: 2px 2px #8f3c0b;
}

.rightSide {
    height: 100%;
    width: 80%;
    /* border: 2px solid darkcyan; */
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hidePainel {
    display: none;
}

.showPainel {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    flex-basis: auto;
    height: 100%;
    width: 100%;
}

.borderImage {
    display: flex;
    flex-grow: 2;
    max-height: 40%;
    width: 80%;
    align-items: center;    
    background:aliceblue;
    /* background: linear-gradient(45deg, rgba(214,90,16,1) 38%, rgba(214,90,16,0) 100%);     */
     border-bottom: 2px solid #D65A10;
    justify-content: center;
}

.imageContainer {
    clip-path: circle(32.7% at 50% 50%);
    align-items: center;
    max-width: 40%;
}



.dadosContainer{
    background-color: aliceblue;
    width: 80%;
    padding: 1%;
    flex-grow: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    text-align: center;
    color: #D65A10;
}


.text {
    width: 100%;
}



.downloadButton {
    background-color: aliceblue;
    color: #D65A10;
    padding: 2% 1%;
    font-size: medium;
    border-radius: 5%;
    border: 3px solid #D65A10;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    /* box-shadow: 2px 1px #000; */
}

.downloadButton:hover {
    background-color: #ff9c61;
    box-shadow: 2px 2px #8f3c0b;
}


.icone {
    width:24px;
    height:24px;
}

.lists {
    text-align: left;
}

.footerIcon {
    width: 20px;
}

img {
    margin: 0 0;
    width: auto;
    height: auto;
    max-width:100%;
    max-height: 100%;
}

