.estrutura {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.estrutura h2 {
    font-size: 40px;
    color: var(--primary-gold);
    margin: 2em auto 1em auto;
}

.estrutura-content {
    width: 65%;
}

.estrutura p {
    color: #ececec;
    font-weight: 300;
    line-height: 22px;
    text-align: center;
    margin-top: 0.5em;
}

.treino {
    text-decoration: underline;
    font-weight: 600;
}


/* GALERIA */

.galery-container {
    width: 80%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery {
    width: 70%;
    margin: 1em auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 5vw);
    grid-gap: 10px;

}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
    border-radius: 5px;
    box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.45);

}

.gallery__img:hover {
    transform: scale(1.5);
    box-shadow: 0px 0px 100px 100px rgba(0, 0, 0, 0.6);
}

.gallery__item--1:hover,
.gallery__item--2:hover {
    transform: scale(2.2);
    box-shadow: 0px 0px 100px 100px rgba(0, 0, 0, 0.6);
}

.gallery__item--1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.gallery__item--2 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}

.gallery__item--3 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 6;
}

.gallery__item--4 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 6;
}

.gallery__item--5 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 9;
}

.gallery__item--6 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 6;
    grid-row-end: 9;
}

@media screen and (max-width: 768px) {

    .galery-container,
    .gallery {
        width: 100%;
    }

    .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery__img {
        width: 80vw;
        height: 80vw;
    }

    .gallery__img:hover {
        transform: scale(1);
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    }

    .gallery__item--1:hover,
    .gallery__item--2:hover {
        transform: scale(1);
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    }
}



/* FIM DA GALERIA */
.horarios {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
}

.horarios h3,
.horarios-item,
.horarios p {
    color: #ececec;
}

.horarios h3,
.avulso h3 {
    font-size: 22px;
    margin-bottom: 1em;
}

.horarios-list {
    background-color: var(--primary-gold);
    padding: 1em 1.5em;
    border-radius: 20px;
}

.horarios-titulo {
    margin-bottom: 0.5em;
}

.horarios-item {
    font-size: 18px;
}

.horarios p {
    padding: 1em;
}

.avulso {
    width: 100%;
    padding: 1.5em 0;
    background-color: var(--primary-gold);
}

.avulso h3,
.avulso p {
    color: black;
    font-weight: 600;
}

.avulso-cta {
    margin: 2em 0 1em 0;
    width: 100%;
    text-align: center;
}

.avulso-cta-link {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: white;
    padding: .8em 1em;
    background-color: black;
    border-radius: 50px;
}


.avulso-cta-link:hover {
    color: black;
    background-color: transparent;
    border: 2px solid black;
}

@media screen and (max-width: 768px) {
    .estrutura-content {
        width: 90%;
    }
    .avulso P {
        margin: 0 10px;
    }
}