
/* ====================================================== */
/* =========================GERAL======================== */
/* ====================================================== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    height: 100%;
    width: 100%;
}



/* ====================================================== */
/* =========================HOME========================= */
/* ====================================================== */


.main__home {
    /* outline:auto; */
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.home__container1 {
    /* outline:auto; */
    height: 85vh;
    width: 85vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3%;
}


.home__container1__slideshow {
    /* outline:auto; */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    object-fit: fill;
}

.home__container1__slideshow__slides {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.home__container1__slideshow__slides:hover {
    filter: unset;
}



.home__container1__logotipo {
    position:absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 33%;
    bottom: 33%;
}

.home__container1__logotipo__logo {
    height: 100%;
    width: 100%;
    animation-name: fadeInUp;
    animation-duration: 2.2s;
}




/* ====================================================== */
/* =========================MENU========================= */
/* ====================================================== */


.menu {
    margin-top: 1.5%;
    width: 100%;
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content:space-between;
}

.menu__type {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 24px;
}

.menu__type__selected {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 19px;
    font-weight: 500;
    text-decoration: underline;
}


/* ====================================================== */
/* ======================SOCIAL MENU===================== */
/* ====================================================== */


.menu__topo {
    width: 100%;
    display:flex;
    flex-direction: row;
    align-items: center;
}


.menu__topo__descritivo {
    width: 100%;
    margin-bottom: 1%;
    display: flex;
    flex-direction:row;
    justify-content:flex-start;
    gap: 5%;
}

.menu__topo__descritivo__texto {
    font-family: 'Nunito Sans', sans-serif;
    font-style: italic;
    font-size: 16px;
    font-weight: 400;

}

.menu__topo__social {
    width: 100%;
    margin-bottom: 1%;
    display: flex;
    flex-direction:row;
    justify-content:flex-end;
    gap: 10%;
}

.menu__topo__social__icons {
    width: 15px;
}








  /************* ANIMAÇÕES *************/


  @keyframes fadeInUp {
    from {
        transform: translate3d(0,500px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}