
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
body{
    font-family: 'Cormorant Upright', serif;
    font-weight: bold;
    max-height: max-content;
    background: rgb(228,228,228);
    background: linear-gradient(90deg, rgba(228,228,228,1) 0%, rgba(255,255,255,1) 100%);
}

header{
    background-color: palevioletred;
    max-height: 75px;
    margin-left: auto;
    margin-right: auto;
    position: center;
    z-index: 1;
}
div{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    position: center;
    z-index: 1;
}
.navCabecalho{
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: space-around;
    padding: 24px;
}
main{
    max-height: 100vw;
    margin-top: 10px;
    position: relative;
    z-index: 0;
}
.central{
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
    overflow: hidden;
}
.imagens{
    margin-left: auto;
    margin-right: auto;
    display: flex;
    overflow: hidden;
    max-height: 80%;
    object-fit: cover;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
}

.imagemCentro{
    scroll-snap-align: start;
    max-width: 100vw;
    animation: animation;
    animation-duration: 20s;
    animation-iteration-count: infinite;
}

nav{    
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    margin-top: -50px;
    margin-bottom: -6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
a{
    color: black;
    position: relative;
    font-size: larger;
    text-decoration: none;
    z-index: 1;
}
a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:hover::before{
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  
}
footer{
    padding: 25px;
    text-align: center;
    background-color: palevioletred;
    font-size: large;
    position: relative;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 50px;
}
footer section .map{
    border-radius: 15px;
    margin-bottom: 50px;
}

@keyframes animation {
    0%{margin-left: 0%;}
    20%{margin-left: 0%;}
    25%{margin-left: -25%; }
    50%{margin-left: -50%;}
    75%{margin-left: -80%;}

}

