
#home {
    overflow: hidden;
    color: white;
    width: 100%;
    height: 100vh;
    position: relative;

}

#home input {
    display: none;
}

@keyframes frente {
    0% {
        margin-left: -200%;
    }

    100% {
        margin-left: -300%;
    }
}

#rad1:checked~#slide {
    margin-left: 0%;
    transition: 1s;
}


#rad2:checked~#slide {
    margin-left: -100%;
    transition: 1s;

}

#rad3:checked~#slide {
    margin-left: -200%;
    transition: 1s;

}

#rad4:checked~#slide {
    animation: frente 1 1s;
    transition: 1s;

}

#slide {
    animation-fill-mode: both;
    width: 400%;
    height: 100vh;
    display: flex;
}
texto {
    width: 400%;
    height: 100vh;
}

.idv {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.374);
}

.idv>div {
    margin: auto;
    transform: translateY(20vh);
    padding: 10px;
    width: 70%;

}

.slide1 {
    background-image: url("./assets/room-2.jpg");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    width: 100%;

}

.slide2 {
    background-image: url("./assets/room-1.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    width: 100%;

}

.slide3 {
    background-image: url("./assets/head.jpg");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    width: 100%;
}

#btSlides {
    transition: 1s;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
}

.circulo {
    position: relative;
}

#btSlides div {
    width: 30px;
    height: 30px;
    display: inline-block;
    padding: 4px;
    background-color: #171e2e71;

}

#btSlides div img {
    width: 20px;
}

.tras {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-left: solid #d9c9775b 0.2px;
    border-right: solid #d9c9775b 0.2px;

}

.frente {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-right: solid #d9c9775b 0.2px;
    border-left: solid #d9c9775b 0.2px;
}

.frente img {
    transform: rotate(180deg);
}

.texto h1,
.texto p {

    padding: 10px;
    font-family: var(--fonte-titulo);
}
div>.circulo {
    margin-top: -40px;
}

.tras {
    margin-top: -600px;

    border-radius: 50%;
    position: absolute;
    left: 5px;
}

#stxt {
    text-align: justify;
    width: 100%;
    padding-left: 30px;
}

.give {
    display: block;
    width: 50%;
    float: left;
    padding: 10px;
}


.gives li,
.gives h2 {
    padding: 10px;
}

.frente {
    margin-top: -600px;
    border-radius: 50%;
    position: absolute;
    right: 5px;
}

.whats {
    width: 58px;
    animation-name: movimento;
    animation-duration: 2s infinite;
    animation-timing-function: ease-out;
    animation-delay: 0.5s;

    position: fixed;
    bottom: 180px;
    right: 20px;
    z-index: 99;
}

.whats img:hover {
    background-color: rgb(2, 70, 2);
    transition: 2s ease;
    border-radius: 100%;}

 #popup {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        border: 1px solid #ccc;
        padding: 10px;
        z-index: 1;
        box-sizing: border-box;
      }
 #meuParagrafo:hover + #popup {
        
        display: block;
      }
      #meuParagrafo:hover{
        color:greenyellow;
        font-weight: bold;
      }