body {
    margin: 0;
    padding: 0;
    background-color: #C7B299;
    overflow-x: hidden;
    box-sizing: border-box;
}


/* --- SECÇÃO HOMEPAGE --- */
#sectionHomepage {
    position: relative;
}

#imgHomepage {
    width: 100%;
}



/* --- SECÇÃO PRODUTOS --- */
#sectionProdutos {
    height: 100%;
    background-color: #FFFDEB;
}

.mySlides {
    display: none
}

img {
    vertical-align: middle;
}

.slideshow-container {
    max-width: 1300px;
    position: relative;
    margin: auto;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    font-size: 35px;
    padding: 0px;
    margin-top: -22px;
    color: #8C5A28;
    transition: 0.5s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    margin-bottom: 20px;
    background-color: #C7B299;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
}

.active,
.dot:hover {
    background-color: #8C5A28;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}



/* --- SECÇÃO INFORMAÇÕES --- */
#sectionInfo {
    background-color: #AC9079;
    width: 100vw;
    height: 100%;
}

#info {
    font-family: 'Open Sans';
    font-weight: 300;
    color: #fff;
    font-size: 18px;
    position: relative;
    padding: 5% 0 5% 2%;
}

.infoClass {
    display: inline-block;
    padding-left: 15%;
}

#info a {
    font-weight: 400;
    color: #647397;
}


#pt2020 {
    position: relative;
    padding-bottom: 2%;
    margin-left: 50%;
    transform: translate(-40%);
}

#pt2020 img {
    width: 100%;
}

@media (max-width: 900px) {
    .dot {
        margin-bottom: 10px;
    }
    
    #info{
        font-size: 15px;
    }
    
    .infoClass {
        display: block;
    }

    #pt2020 {
        margin-left: 0px;
        transform: translate(0%);
    }
}