* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    background-color: #36303ad5;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
}

header {
    width: 100%;
    padding: 5px 0;
    background-color: #00000034;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

header:hover {
    background-color: #FFCB0C;
}

header .logo img {
    width: 90px;
}

header .interface {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
}

header.rolar {
    background-color:#FFCB0C;
    box-shadow: 0px 0px 8px #00000059;
}

header .menu-desktop nav ul {
    list-style: none;
    display: flex;
}

header .menu-desktop nav ul li a {
    text-decoration: none;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    display: block;
}

header .menu-desktop nav ul li a:hover {
    color: #000;
}

.drop-hover {
    position: relative;
}

.drop-hover .drop {
    position: absolute;
    background-color: #FFCB0C;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: .3s;
}

.drop-hover .drop a {
    padding: 20px;
    border-bottom: 1px solid #fff;
}

.drop-hover:hover .drop {
    height: 255px;
}

.but-menu li {
    display: flex;
    flex-direction: row;
    color: #fff;
    float: left;
    margin: 13px 0 15px;
    gap: 0.5px;
}

menu {
    display: none;
}

#menu_icon {
    color: #ffffff;
    position: relative;
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 999999;
}

#menu_icon:hover {
    color: #000;
}

menu h1 {
    margin: 20px 5rem;
    color: #ffffff;
}

.logo_menu {
    display: flex;
    gap: 2px;
    width: 63px;
    margin: 0px 6.5rem 15px;
    transform: rotate(360deg);
}

.itens_link {
    width: 268px;
    position: absolute;
    top: 30px;
    right: 90px;
    background: #FFCB0C;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding: 0px 0 10px;
    box-shadow: 0 0.1rem 0.5rem #3b3b3b;
}

.link a {
    display: flex;
    gap: 1px;
    padding-top: 12px;
    padding-left: 15px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    width: 100%;
    height: 24px;
    font-size: 20px;
    border-top: 2px solid #00000036;
    list-style-type: none;
    text-decoration: none;
    color: #ffffff;
}

.link a:hover {
    color: #000;
}

li a {
    text-decoration: none;
}

input {
    display: none;
}

.gallery {
    width: 100%;
    text-align: center;
}

.gallery h1 {
    text-transform: uppercase;
    color: #fff;
    margin: 180px auto 60px;
}

.gallery .top-gallery {
    background-color: #322C36;
    width: 90%;
    margin: 0 auto 20px auto;
    height: 60px;
    display: flex;
    align-items: center;
}

.gallery .top-gallery h3 {
    text-transform: capitalize;
    height: 100%;
    background-color: #FFCB0C;
    line-height: 60px;
    padding: 0 50px;
    color: #fff;
}

label {
    display: inline-block;
    height: 100%;
    margin: 0 20px;
    line-height: 60px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: .5s;
    text-transform: capitalize;
    font-weight: 600;
}

label:hover {
    color: #FFCB0C;
    border-bottom: 3px solid #FFCB0C;
    margin-top: -10px;
}

.photo-gallery {
    width: 90%;
    margin: 30px auto;
    column-count: 4;
    column-gap: 15px;
    transition: .6s;
}

.photo-gallery .pic img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 3px 3px 3px #322c36cb;
}

#myImg {
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 100px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


#check1:checked~.gallery .photo-gallery .pic {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

#check2:checked~.gallery .photo-gallery .boxe {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

#check2:checked~.gallery .photo-gallery .jiu,
#check2:checked~.gallery .photo-gallery .kids,
#check2:checked~.gallery .photo-gallery .muay {
    opacity: 0;
    transform: scale(0);
    position: absolute;
    transition: 0s;
}

#check3:checked~.gallery .photo-gallery .jiu {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

#check3:checked~.gallery .photo-gallery .boxe,
#check3:checked~.gallery .photo-gallery .kids,
#check3:checked~.gallery .photo-gallery .muay {
    opacity: 0;
    transform: scale(0);
    position: absolute;
    transition: 0s;
}

#check4:checked~.gallery .photo-gallery .kids {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

#check4:checked~.gallery .photo-gallery .boxe,
#check4:checked~.gallery .photo-gallery .jiu,
#check4:checked~.gallery .photo-gallery .muay {
    opacity: 0;
    transform: scale(0);
    position: absolute;
    transition: 0s;
}

#check5:checked~.gallery .photo-gallery .muay {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

#check5:checked~.gallery .photo-gallery .boxe,
#check5:checked~.gallery .photo-gallery .jiu,
#check5:checked~.gallery .photo-gallery .kids {
    opacity: 0;
    transform: scale(0);
    position: absolute;
    transition: 0s;
}

.footer {
    background-color: #322C36;
    margin-top: 0;
}

.footer .interface {
    width: 80%;
    margin: auto;
    padding-top: 60px;
}

.footer .footer-container {
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-contact p {
    color: #FFCB0C;
    font-size: 12px;
    margin-bottom: 5px;
    width: 250px;
}

.footer-links ul li {
    list-style: none;
    font-size: 12px;
    margin-bottom: 5px;
}

.footer-links ul li a {
    color: #FFCB0C;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-social a {
    display: block;
    color: #FFCB0C;
    font-size: 12px;
    margin-bottom: 5px;
    text-decoration: none;
}

.footer-social a:hover {
    text-decoration: underline;
}

.footer-social a i {
    margin-right: 5px;
}

.footer-bottom {
    background-color: #322C36;
    text-align: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
    border-top: 1px solid #444;
}

.circleWhats {
    width: 33px;
    height: 35px;
    border-radius: 50%;
    background-color: #3CE203;
    position: fixed;
    bottom: 0;
    right: 0;
    margin-bottom: 25px;
    margin-right: 25px;
    z-index: 9999;
}

.circleWhats img {
    width: 20px;
    height: 20px;
    margin-top: 8px;
    margin-left: 7px;
    align-items: center;
    justify-content: center;
}