@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

:root{
    color: --orange(#ffbd59);
}


body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/*-------------START/HEADER-------------*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    /* background: linear-gradient(#3c005f, #922bba); */
    background: linear-gradient(#3c005f, #912bba00);
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding: 1rem 0;
    animation: colorBg linear;
    animation-timeline: scroll();
    transition: linear;



    #menu {
        z-index: 5;

        button {
            background-color: #ffbd59;
            color: #fff;
            text-decoration: underline;
            border: none;
            box-shadow: 2px 1px 30px #0000004e;
            border-radius: 20px;
            padding: 20px;
            transform: translateX(20px);

            animation: btnMove 1s ease infinite alternate-reverse;

            &:hover {
                background-color: #fff;
                color: #000;
            }

            &:active {
                transform: scale(1.1);
            }
        }
    }
}

@keyframes btnMove {
    from {
        transform: translate(20px, 10px);
    }

    to {
        transform: translate(20px, -5px)
    }
}


/*Menu hamburger*/
#menu-bar {
    width: 40px;
    height: 10px;
    margin: 30px 0 20px 20px;
    cursor: pointer;
}

.bar {
    height: 5px;
    width: 40px;
    background-color: #ffbd59;
    transform: translate(3px);
    display: block;
    border-radius: 5px;
    transition: 0.3s ease;
}

#bar1 {
    transform: translateY(-4px);
}

#bar3 {
    transform: translateY(4px);
}



.nav {
    transition: 0.3s ease;
    display: none;

    ul {
        padding: 0 22px;

        li {
            list-style: none;
            padding: 12px 0;

            a {
                color: white;
                font-size: 20px;
                text-decoration: none;

                &:hover {
                    font-weight: bold;
                }
            }
        }
    }
}

.menu-bg,
#menu {
    top: 0;
    left: 0;
    position: absolute;
}

.menu-bg {
    z-index: 1;
    width: 0;
    height: 0;
    margin: 30px 0 20px 20px;
    background: radial-gradient(circle, #3c005f, #922bba);
    box-shadow: 2px 1px 30px #00000053;
    border-radius: 50%;
    transition: 0.3s ease;
}

.change {
    display: block;

    .bar {
        background-color: white;
    }

    #bar1 {
        transform: translateY(4px) rotateZ(-45deg);
    }

    #bar2 {
        opacity: 0;
    }

    #bar3 {
        transform: translateY(-6px) rotateZ(45deg);
    }
}

.change-bg {
    width: 520px;
    height: 460px;
    transform: translate(-60%, -30%);
}

#logo {
    width: 130px;
    filter: drop-shadow(2px 2px 10px #1e0030);
    transform: translateY(0px) rotateZ(0deg);
    transition: 0.3s;
}

.change-logo img {
    width: 20px;
    transform: translateY(-6px) rotateZ(45deg);
}

/*-------------END/HEADER-------------*/

main {
    margin-top: 88px;
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;


    video {
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        z-index: -10;
        width: 100%;
    }

    div {
        display: grid;
        /* gap: 1.5rem; */
        font-size: 18px;
        padding: rem 0;
        background: linear-gradient(#ffffff00, #ffff);

        h1 {
            background: linear-gradient(to right, #ffffffc7, #9138c500);
            padding: 10px 20px;
            width: 90%;
            span {
            color: #922bba;
            animation: textColor infinite alternate-reverse 3s;
            }
        }

        p {
            background: linear-gradient(to left, #e6c4f7a7, #9138c500);
            padding: 1rem 20px;
            font-weight: bold;
        }
    }
}

@keyframes textColor {
    to {
        color: #3c005f;
    }
}

/*---------/ACCORDIONS---------*/
.accordion {
    background: linear-gradient(#ffffff, #922bba);
    border-radius: 0;
    overflow: hidden;
    max-height: 10000px;

    h2 {
        text-align: center;
        margin: 3rem 0;
        color: #1e0030;
    }

    /* Core styles/functionality */
    .tab {
        position: relative;

        input {
            position: absolute;
            opacity: 0;
            z-index: -1;
        }

        input:not(:checked)~.tab__content {
            max-height: 0px;
        }

        input:checked+.tab__label::after {
            transition: .5s ease;
            position: absolute;
            right: 18%;
        }

        input:not(:checked)+.tab__label:after {
            transform: rotateZ(270deg);
            position: absolute;
            right: 15%;
        }

        input[type="radio"]:checked~.tab__content {
            max-height: 1500px;
            /* Ajuste para acomodar o conteúdo mais longo */
        }

        #parcerias{
            display: grid;

        }


        .tab__content {
            /* max-height: 0;
            overflow: hidden;
            transition: all 0.35s;
            height: auto; */

            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease-out;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            background-color: white;
            width: 100%;

            .profile {
                background: linear-gradient(#57028875, #ffffff36);
                border-radius: 20px;
                padding-left: 5rem;
                padding-top: 1rem;
                width: 100%;
                display: flex;
                align-items: center;
                gap: 1rem;

                .foto {
                    width: 60px;
                    height: 60px;
                    border-radius: 50%;
                    box-shadow: 2px 2px 20px #00000056;
                }

                span {
                    font-weight: bold;
                    font-size: 20px;
                }

                .verificado {
                    width: 25px;
                    height: 25px;
                }
            }

            .link-informativo{
                width: 100%;
                display: flex;
                justify-content: center;
                color: #ffffff;
                

                p{
                    background-color: #1e0030f5;
                    border: none;
                    font-weight: bold;
                    padding: 10px;
                    width: 80%;

                    a{
                        text-decoration: underline;
                        color: white;
                    }
                }
            }

            #parceiros{
                background-color: #3c005f;
                color: #fff;
                padding: 1rem;
                display: flex;
                justify-content: space-around;
                align-items: center;

                .baowei{
                    width: 50px;
                    height: 50px;
                    background-color: #050000;
                    overflow: hidden;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 5px;

                    img{
                        width: 40px;
                    }
                }
                
                img{
                    border-radius: 5px;
                }

                a{
                    text-decoration: none;
                    .parceiros-btn{
                        border: none;
                        padding: 8px;
                        width: 100px;
                        border-radius: 5px;
                    }

                    &:hover{
                        .parceiros-btn{
                            background-color: #cccccc;
                        }
                    }

                    &:active{
                        .parceiros-btn{
                            transform: scale(0.9);
                        }
                    }
                }

            }

            p {
                width: 80%;
                padding: 1rem;
                margin-bottom: 1rem;
                border: solid 2px #3c005f99;
                border-radius: 20px;
            }
        }

        .tab__label,
        .tab__close {
            display: flex;
            color: #ffffff;
            background: #922bba;
            height: 100px;
            background-size: cover;
            background-position: 90%;
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 20px;

            span {
                color: #fff;
                font-weight: bold;
                height: 100%;
                width: 100%;
                background-color: #3c005f94;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: .5s cubic-bezier(0.165, 0.84, 0.44, 1);

                &:hover {
                    background-color: #1e0030c5;
                }
            }
        }

        &:nth-child(2) .tab__label {
            background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRNgEpVYdJZfeZOLiti8Dg8fonEzmyKCpVcNg&s);
        }

        &:nth-child(3) .tab__label {
            background-image: url(https://i0.wp.com/post.healthline.com/wp-content/uploads/2023/02/female-dumbbells-1296x728-header-1296x729.jpg?w=1155&h=2268);
        }

        &:nth-child(4) .tab__label {
            background-image: url(https://vidaedancastudio.com.br/wp-content/uploads/2018/02/pilates.jpg);
        }

        &:nth-child(5) .tab__label {
            background-image: url(https://blog.futfanatics.com.br/wp-content/uploads/2021/08/boxe.jpg);
        }

        &:nth-child(6) .tab__label {
            background-image: url(https://media.istockphoto.com/id/1416417320/pt/foto/healthy-food-healthy-eating-background-salmon-fruit-vegetable-and-berry-superfood.jpg?s=612x612&w=0&k=20&c=EQrfy7di6GhhYrmm8RlcimRbfjuXOgSHRPgdthcPdqc=);
        }

        .tab__label::after {
            content: "\276F";
            width: 1em;
            height: 1em;
            text-align: center;
            transform: rotateZ(90deg);
            transition: all 0.35s;
        }

        .tab__close {
            justify-content: flex-end;
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
        }
    }
}

/*---------/ACCORDIONS---------*/

.localizacao {
    display: grid;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    text-align: center;
    background-color: #fff;
    width: 100%;

    /*Mapa*/
    iframe {
        width: 100%;
        height: 300px;
    }

    /*horarios*/
    .horarios{
        ul{
            list-style: none;
            margin-top: 1rem;
            font-size: 20px;
            
            strong{
                color: #1e0030;
            }
        }
        
    }
}


.nossoTime {
    animation: nossoTimeAppear linear;
    animation-timeline: scroll();
    /* opacity: 0; */
    text-align: center;
    font-size: 20px;
    background-image: url(https://www.keckmedicine.org/wp-content/uploads/2021/11/group-of-young-athletes-playing-team-sports-poses-with-basketball.jpg);
    background-size: cover;

    h2 {
        padding-top: 1.5rem;
        padding-bottom: 1rem;
        background: linear-gradient(white, #00000000);

    }

    /* Container do carrossel */
    .carousel-container {
        position: relative;
        left: 50%;
        transform: translate(-50%);
        width: 100%;
        background: linear-gradient(to top, #3c005f, #ffffff00);
        padding-bottom: 3rem;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Estilo das imagens */
    .carousel {
        display: flex;
        gap: 1rem;
        padding: 30px;
        transition: transform 0.5s ease-in-out;
    }

    .carousel img {
        width: 80%;
        max-width: 450px;
        border-radius: 20px;
        flex-shrink: 0;
    }

    /* Botões de navegação */
    .prev-btn,
    .next-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        z-index: 1;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .prev-btn:hover,
    .next-btn:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }
}

footer {
    padding: 3rem 0;
    height: auto;
    width: 100%;
    background: linear-gradient(#3c005f, #1e0030);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    gap: 1rem;

    hr {
        width: 80%;
        height: 0;
    }

    h3 {
        width: 80%;
    }

    /*segundo h3*/
    :nth-child(5) {
        margin-top: 2rem;
    }

    a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
        gap: 7px;

        background-color: #1e0030;
        padding: 12px;
        border-radius: 15px;

        img {
            width: 25px;
        }
    }

    .logo-white {
        width: 200px;
        margin: 3rem 0;
    }
}