html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(210, 220, 253);
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

body {
    margin: 0 auto;
    width: 80%;
    background-color: rgba(0, 0, 0, 0.1);
}

.negrito {
    font-weight: bold;
}

.header {
    height: 560px;
}

.header--banner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-image: url(./img/bg_2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;

}

.navigation--menu {
    display: flex;
    gap: 24px;
    background-color: #000;
    color: #FFF;
    list-style: none;
    margin: 0;
    font-size: 1.6em;
    justify-content: end;
}

.navigation-menu--box {
    cursor: pointer;
    padding: 18px;
}

.navigation-menu--box:hover {
    background-color: rgb(245, 250, 201);
    color: #000;
}

.navigation--menu a {
    text-decoration: none;
}

.navigation--menu a:visited {
    color: inherit;
}

.article-titles {
    margin: 1.5rem auto;
    padding: 0.2em 0.4em;
    width: 70%;
    text-align: center;
    font-size: 4.5em;
    background-color: #000;
    color: #d7d7d7;
    box-shadow: inset 0 10px 10px #d7d7d7;
    border-radius: 5px;
}

.title {
        text-align: center;
        margin: 68px;
}

.title-quote {
    margin: 1.5rem auto;
    font-style: italic;
    font-weight: bold;
    font-size: 18px;
}
.content {
    margin-top: 4px;
    padding: 2em;
    
}

.final {
    height:  900px;
}

.content p {
    font-size: 1.3em;
}

#apresentacao-img1
 {
    float: right;
}

#apresentacao-img2,
#ctimg1 {
    height: 500px;
    float: left;
}

.banner-box {
    height: 50px;
    background-image: url(./img/ctbanner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
   
}

.fix-altura-page {
    height: 100%;
}

/* GALERY CSS */

.capoeira-galery--container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center ;
    gap: 2vw;
    padding: 0 1vw;
}

.capoeira-galery--boxes {
    width: 420px;
    height: 300px;
    flex-grow: 1;
    transition: transform .1s linear;
}

.capoeira-galery--boxes:hover {
    transform: scale(1.2);
}

.capoeira-galery--boxes img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    color: #FFF;
    font-size: 0.9em;
    z-index: 10;
    margin: 0;

}


.footer p {
    margin: 5px 0;
}