body {
    margin: 0;
    padding: 0;
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
html{
    scroll-behavior: smooth;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

#home {


    min-height: 70vh;

    display: flex;
    align-items: center;
    flex-direction: column;

    margin-top: 10vw;
}
.text-home {

    font-size: x-large;
    text-align: center;
    width: 65%;
    height: 50%;
}

.galeria {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 5vh;
}
.frame {
    width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
.frame img {
    width: 100%;
    height: 100%;
    transition: opacity .5s ease;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

#servicos {
    display: flex;

    border-top: 6px solid yellow;
    border-bottom: 6px solid yellow;

    margin-top: 25px;
    height: 80vh;
    width: 100%;
    background-color: black;
    color: white;
}
.joker {

    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.joker img {
    height: 95%;
    width: 65%;

}
.info-servicos {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 50%;
}
.info-servicos .content {
    background-color: dimgray;
    margin: 10px;
    height: 25%;
    width: 80%;

    border-radius: 20px;
    border: 2px solid rgba(255,255,255,.1);
    transition: .35s ease;
}
.info-servicos div:hover{
    background-color: rgb(35, 36, 36);
    
    border: 5px solid yellow;
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,.25);
}
.info-servicos h3 {
    font-size: xx-large;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

#localizacao {
    width: 100%;

    margin-top: 15px;

    display: flex;
    align-items: center;
    justify-content: space-around;
}
.map-info{
    width: 40vw;
    height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;

    font-size: larger;

    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,.3);
}

.map-info a {
    padding: 10px 100px 10px 100px;
    border-radius: 15px;
    border: 1px solid black;

    transition: .35s ease;

    text-decoration: none;
    color: black;
}
.map-info a:hover{
    background-color: rgb(255, 255, 27);
    border: 4px solid black;
    transform: scale(1.2);
}