@import url('_geral.css?v=1');

.logotipo{
    max-width: 317px;
    margin: 1rem auto;
}
.menu{
    background-color: #DF4527;
    height: 40px;
    box-shadow: 0px 3px 5px #7e7e7e;
    & .burguer{
        display: none;
    }
    & ul{
        display: flex;
        gap: 4rem;
        text-transform: uppercase;
        align-items: center;
        justify-content: center;
        height: 100%;
        font-weight: 600;
        & li{
            color: #fff;
            transition: 200ms;
            &:hover{
                color: #000
            }
        }
    }
}

.banner{
    width: 100%;
    margin: .5rem 0 0;
    & img{
        width: 100%;
        margin: 0 auto;
    }
}

.title{
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: bold;
    text-align: center;
    color: #DF4527;
    margin-top: 2.7rem;
}

.video{
    /* width: fit-content; */
    margin: 0 auto;

    width: 100%;
    /* max-width: 920px; */
    padding-top: 56.25%;
    position: relative;
    margin-top: 9px;
    & iframe{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border: none;
    }
}

.box--galeria{
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.galeria{
    text-align: center;
}

.box--noticias{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.noticia h2{
    font-weight: 400;
    font-size: 1rem;
    margin-top:.3rem
}

.box--parceiros{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap:1.5rem
}


.footer{
    text-align: center;
    background-color: #DF4527;
    color:#fff;
    padding: 2rem 0;
    margin-top: 3rem;
}

.page{
    margin-top: 1rem;
    & h1{
        text-align: center;
    }
    & .text{
        margin: 1rem auto 0;
        max-width: 800px;
    }
    & .list--gallery{
        display: flex;
        gap: .7rem;
        margin-top: .7rem;
        flex-wrap: wrap;
    }
}

.paginator{
	display: flex;
	justify-content: center;
	padding: 1rem 0;
	a{
		text-decoration: none;
	}
	.paginator_item{
		background-color: #DF4527;
		color: #fff;
		min-width: 3rem;
		min-height: 3rem;
		display: grid;
		place-content: center;
		transition: 300ms;
		&.paginator_active{
			background-color:#8a2b18;
		}
		&:hover{
			background-color: #8a2b18;
		}
		&:nth-child(1){
			border-top-left-radius: 7px;
			border-bottom-left-radius: 7px;
		}
		&:nth-last-child(1){
			border-top-right-radius: 7px;
			border-bottom-right-radius: 7px;
		}
	}
}

@media (max-width: 737px){
    .logotipo{
        max-width: 200px;
    }
    .menu{
        position: relative;
        display: grid;
        box-sizing: border-box;
        justify-content: right;
        & .burguer{
            display: block;
            width: fit-content;
            padding-top:.1rem;
            background-color: #8a2b18;
            cursor: pointer;
            & div{
                width: 30px;
                height: 5px;
                background-color: #fff;
                display: block;
                margin: .3rem 1rem .3rem;             
            }
        }
        & ul{
            display: block;
            /* padding-top: 2rem ; */
            position: absolute;
            height: max-content;
            width: max-content;
            top: 40px;
            right: 100%;
            background-color: #DF4527;
            transition: 300ms;
            & li{
                margin: .8rem 0;
            }
        }
        & .open{
            /* display: block; */
            right: 0;
        }
    }
    .box--galeria{
        margin-top: .7rem;
    }
    .box--noticias{
        grid-template-columns: 1fr;
        margin-top:.7rem
    }
    .box--parceiros{
        grid-template-columns: repeat(3, 1fr);
        gap:1rem;
        margin-top: .7rem
    }
}