@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

html{
    scroll-behavior: smooth;
}

.container{
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.container1{ 
    max-width: 1080px;
    margin: 0 auto;
}

#dojo{
    background-color: #000;
}
.sobredojo{ 
    /* max-width: 1080px; */
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
}
.sobredojo .texto{
    width: 100%;
    padding: 3px;
}
.sobredojo .texto p{
    font-size: 14pt;
}
.sobredojo .image{
    width: 45%;
    padding: 3px;
}
.sobredojo .image img{
    width: 100%;
    border-radius: 10px;
}

#sensei{
    background-image: url(ativos/img/sensei4.avif);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
#sensei h2{
    color: #000;
    text-shadow: 0 0 10px #fff;
    font-weight: 900;
    /* font-family: 'Poppins'; */
}
.container1 .prof{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.container1 .prof .prof1{
    width: 20%;
    background-color: #111;
    height: 350px;
    margin: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #ffffff;
    padding: 1px;
}
.hidden{
    /* opacity: 0; */
    transform: rotatey(-90deg);
    transition: all 3s;
  }
  .show{
    /* opacity: 1; */
    transition-delay: 1s;
    transform: rotateY(0deg);
  }
 
.container1 .prof .prof1 img{
    width: 90%;
    border-radius: 15px;
}

#vfotos{
    text-decoration: none;
    color: #fff;
    padding-top: 5em;
}
#vfotos div{
    text-align: center;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 10px;
}

#hora{
    background-image: url(ativos/img/dragon.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: #333;
    background-attachment: fixed;
    color: #fff;
}
.horario{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #000;
}
.horario .semana{
    width: 19%;
    height: auto;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 5px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 15px #000;
}
.horario .semana h1{
    font-weight: 900;
    font-size: 20pt;
    margin-bottom: 10px;
}
.horario .semana h4{
    font-size: 14pt;
    font-weight: 900;
}
.horario .semana p{
    font-weight: 600;
    font-size: 12pt;
    margin-bottom: 10px;
}

#produto{
    background-image: url(ativos/img/produtos.jpg);
    /* background-color: #111; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.prod{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.prod .pro{
    background: rgba(0, 0, 0, 0.5);
    width: 45%;
    margin: 10px;
    height: auto;
    border-radius: 10px;
    box-shadow: 7px 10px 15px #000;
    text-align: center;
    padding: 1em;
}

#fotos{
    background-image: url(ativos/img/gale.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

#local{
    background-image: url(ativos/img/local2.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    color: #000;
}
.local{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
}
.local .loc1{
    width: 47%;
    height: 300px;
    /* background-color: #4e0c0c; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
.local .loc1 iframe{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 10px;
}
.local .loc2{
    width: 45%;
    height: 300px;
    background-color: rgba(56, 56, 56, 0.548);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 10px;
    color: #fff;
    border-radius: 15px;
    box-shadow: 5px 10px 15px #000;
}
.local .loc2 img{
    width: 90px;
    animation: waze 3s ease-in-out infinite;
    margin-top: 1em;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 5px 5px 20px #000000e3;
}
#mensal{
    background-image: url(img/bg-foto.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.mensal .loc2{
    width: 90%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
}
.wam{
    color: #fff;
}
@keyframes waze{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}

footer{
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1em;
}
footer a{
    text-decoration: none;
    color: #fff;
}


header{
    background-color: black;
    width: 100%;
    padding: 15px 4%;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.logo{
    width: 25%;
}

.logo img{
    width: 70px;
    cursor: pointer;
}

.menu{
    width: 60%;
}

.menu nav a{
    color: #c4c4c4;
    text-decoration: none;
    font-size: 18px;
    padding-right: 10px;
    padding-bottom: 5px;
    position: relative;
}

.menu nav a::after{
    content: " ";
    width: 0px;
    height: 4px;
    background-image: linear-gradient(45deg , #d90503, #ff3300);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;
}

.menu nav a:hover::after{
    width: 30px;
}

.menu nav a:hover{
    color: #ffffff;
}

.social{
    width: 25%;
}

.social .button{
    /* width: 40px;
    height: 40px; */
    margin-right: 20px;
    border: 0;
    cursor: pointer;
    /* background-image: linear-gradient(45deg , #d90503, #ff3300); */
    /* border-radius: 5px; */
    transition: transform 0.5s;
}

.social .button i{
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(45deg , #d90503, #ff3300);
    /* width: 40px;
    height: 40px; */
    padding: 9px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.social .button:hover{
    transform: scale(0.9);
}

/* estilização do conteúdo */

section{
    padding: 90px 4%;
    border-bottom: 1px solid #ccc;
}

section h2{
    font-size: 2em;
    margin-bottom: 25px;
}

section p{
    font-size: 20px;
}

#menu-mobile{
    background-color: #1111119f;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 77px;
    right: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    z-index: 1000;
    transition: 0.5s;
    overflow: hidden;
}

#menu-mobile nav a{
    display: block;
    color: #ffffff;
    padding: 20px 30px;
    font-size: 20px;
    text-decoration: none;
}

#menu-mobile nav a:hover{
    background-color: #383838;
}

#btn-menu,
#btn-menu-close{
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

/* @media screen and (max-width: 1110px) {
    .menu,
    .social{
        display: none;
    }

    .logo{
        width: 100%;
    }

    #btn-menu,
    #menu-mobile{
        display: block;
    }

    #menu-mobile.active{
        height: calc(100vh - 77px);
        visibility: visible;
    }
} */
@media (max-width:480px) {
    .menu{
        width: 80%;
        text-align: center;
    }
    .social{
        display: none;
    }

    .logo{
        width: 20%;
        /* display: none; */
    }

    #btn-menu,
    #menu-mobile{
        display: block;
    }

    #menu-mobile.active{
        height: calc(100vh - 77px);
        visibility: visible;
    }

    .sobredojo{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }
    .sobredojo .card{
        width: 100%;
    }
    .sobredojo .image{
        width: 100%;
    }
}