@import url("https://fonts.googleapis.com/css?family=Poppins");

/*Cabeçalho*/

header,
header a,
header nav {
    width: 100%;
    background-color: rgb(0, 0, 0);
    position: fixed;
    top: 0;
    z-index: 10;
}

.logo {
    margin-left: 10px;
    height: 58px;
}




/*Corpo*/
body {
    margin-top: 60px;
    font-family: 'Arial';
    background-color: rgb(3, 128, 34);
    color: white;
    z-index: 1;
}

/* Apresentação */

.circulodimen img{
    width: 80%;
    position: relative;
    margin-top: 5%;
    margin-bottom: -5%;
    left: 5%;
    color: #FFF;
    
}



/*Sobre nos*/
.sobrenos{
    background-color: white;
    padding: 5%;
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: center;
    margin-bottom: -50px;
    margin-bottom: 5%;
    margin-top: 2%;
}
.textosobrenos{
    color: rgb(0, 0, 0);
}


/*Quartos*/

.Quartos {
    font-family: 'Poppins';
    padding: 25px;
    padding-bottom: 100px;
}

#cardquartos {
    box-shadow: 0 20px 20px rgb(0, 0, 0);
}

.apresentacao p {
    font-size: x-large;
    margin-top: 66px;
    position: static;
    background-color: rgb(3, 128, 34);
    color: #ffffff;
    text-align: center;
}

.apresentacao {
    margin-top: 50px;
    width: device-width;
    display: flexbox;
    flex-direction: row;
    margin-left: 4%;
    margin-right: 4%;
    text-align: justify;
    align-items: center;
    justify-content: center;
}

/*Diferenciais*/
.diferenciais {
    font-family: 'Poppins';
    margin-top: 50px;
    display: flexbox;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(255, 255, 255);
    background-image: linear-gradient(to top, black, rgb(3, 128, 34));
    
    
}
.titulodiferenciaisfigure{
    display: flexbox;
}
.titulodiferenciais {
    width: 100%;
    font-family: 'Poppins';
    display: block;
    padding: 1%;
    justify-content: center;
    align-items: center;
    text-align: center;
    word-break: break-word;
    
}

.titulodiferenciais p {
    color: rgb(255, 255, 255);
    font-size: xxx-large;
    margin-bottom: 50px;
    margin-top: 50px;
    padding-left: 1%;
    padding-right: 5%;
}


.section {
    margin-top: 30px;
}

.depoimentoss{
    font-family: 'Poppins';
    display: flexbox;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: black;
}
.cardsdepoimentos{
    padding: 2%;
    background-image: linear-gradient(to top, rgb(3, 128, 34), black);
    bottom: 5px;
}


/*Google Maps*/
.gmaps {
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(3, 128, 34);
}

.mapa iframe {
    width: 50%;
    height: fit-content;
    border-radius: 4px;
}


/*Rodapé*/
.rodape {
    color: white;
    text-align: center;
    padding: 10px;
    background-color: black;
}


@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(300px);
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-300px);
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(300px);
    }

    to {
        opacity: 1;
    }
}