@import url(../../global/default.css);

/*header*/

header {
    color: var(--color-white);
    position: absolute;
    padding: 0;
    margin-top: 20px;
}

header img {
    margin-left: 15px;
}

header ul {
    margin-right: 35px;
}

.fixed {
    box-shadow: none;
}

/*default*/

section {
    width: 85%;
    margin: 0 auto 150px;
}

.sect h2{
    text-align: center;
    text-transform: uppercase;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: auto;
    display: inline-block;
    padding: 20px 50px;
    letter-spacing: 3px;
}

.title {
    border-bottom: 3px solid;
    width: 100%;
    display: flex;
}

.title h2 {
    color: var(--color-white);
}

.botao {
    width: 100%;
    display: flex;
    margin-top: 100px;
}

.botao a {
    margin: auto;
} 

.btn-link {
    margin: auto;
    border-radius: 8px;
    border: 3px solid currentColor;
    padding: 10px 15px;
    cursor: pointer;
    background: transparent;
    font-size: 1.25rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-link:hover {
    color: var(--color-white);
}

/*home*/

.home {
    width: 100%;
    height: 100vh;
    background-color: #2d2d2d;
    background-size: cover;
    background-attachment: fixed !important;
    background-position: bottom;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home h1 {
    border-bottom: currentColor 3px solid;
    padding-bottom: 15px;
    line-height: 4rem;
    font-size: 3rem;
}

.home h1, .home h3 {
    text-align: center;
    color: var(--color-white);
    margin: 10px;
    letter-spacing: 7px;
}

.home svg {
    color: var(--color-white);
    position: absolute;
    width: 32px;
    height: 32px;
    margin: 70px auto;
    bottom: 0;
    animation: indica 2s infinite;
}

@keyframes indica {
    0% {
        margin-bottom: 70px;
    } 70% {
        margin-bottom: 20px;
    } 100% {
        margin-bottom: 70px;
    }
}

/*noticias*/

.noticias-titulo h2 {
    background-color: var(--color-lightgreen);
}

.noticias .title {
    border-color: var(--color-lightgreen);
}

.noticias-container {
    margin: 80px auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.noticia-recente {
    height: 400px;
    border-radius: 10px;
    background: url(../../../media/pages/index/Noticia-Rua.jpg) no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 49.5%;
}

.noticia-texto {
    width: 90%;
    height: 100%;
    padding: 0 5%;
    padding-bottom: 25px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    backdrop-filter: brightness(0.5);
    border-radius: 10px;
}

.noticia-texto b {
    background-color: var(--color-lightgreen);
    color: var(--color-brown);
    padding: 7px 20px;
    display: inline-block;
    font-weight: 400;
    border-radius: 4px;
}

.noticia-texto p {
    margin: 15px 0;
}

.noticia-texto span {
    color: var(--color-details);
}

.noticias-diversas {
    width: 49.5%;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.noticias-diversas .noticia-texto {
    height: 180px;
}

.noticia-recente, .noticia {
    cursor: pointer;
}

.noticia-texto:hover {
    backdrop-filter: brightness(0.8);
    transition: all 0.2s;
}

.noticia {
    background-size: cover;
    border-radius: 8px;
    font-size: 0.75rem;
}

.noticia p {
    margin: 10px 0;
}

.noticia .noticia-texto {
    padding-bottom: 15px;
}

.not1 {
    background: url(../../../media/pages/index/Noticia-Filme.png) no-repeat center;
    background-size: cover;
}

.not2 {
    background: url(../../../media/pages/index/Noticia-Zeze.jpg) no-repeat top;
    background-size: cover;
}

.not3 {
    background: url(../../../media/pages/index/Noticia-PM.png) no-repeat center;
    background-size: cover;
}

.not4 {
    background: url(../../../media/pages/index/Noticia-Monarca.png) no-repeat center;
    background-size: cover;
}

.bt-not {
    color: var(--color-lightgreen);
}

.bt-not:hover {
    background-color: var(--color-lightgreen);
    border-color: var(--color-lightgreen);
}

/*eventos*/

.eventos .title {
    border-color: var(--color-yellow);
}

.eventos .title h2 {
    background-color: var(--color-yellow);
}

.eventos-container {
    margin: 80px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.evento-recente {
    width: 50%;
    display: flex;
}

.evento-recente img {
    width: 100%;
    border-radius: 20px;
    vertical-align: baseline;
}

.eventos-diversos {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.evento {
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    border: 3px solid var(--color-brown);
    color: var(--color-brown);
    cursor: pointer;
}

.data-evento {
    background-color: var(--color-brown);
    color: var(--color-white);
    font-weight: 700;
    text-align: center;
    font-size: 1.8rem;
    border-radius: 10px 0 0 10px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    min-width: 100px;
    justify-content: center;
    line-height: 2rem;
}

.data-evento p span {
    font-size: 2.5rem;
}

.texto-evento {
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.texto-evento h3 {
    color: var(--color-brown);
    font-weight: 700;
}

.selecionado {
    border-color: var(--color-yellow);
    transition: all 0.2s;
}

.selecionado .data-evento {
    color: var(--color-brown);
    background-color: var(--color-yellow);
    transition: all 0.2s;
}

.bt-eve {
    color: var(--color-yellow);
}

.bt-eve:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}

/*posts*/

.posts .title {
    border-color: var(--color-lightorange);
}

.posts .title h2 {
    background-color: var(--color-lightorange);
}

.posts-conteudo {
    margin: 80px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.post {
    width: 30%;
    border-radius: 22px;
    cursor: pointer;
    border: 2px solid var(--color-brown);
}

.post:hover {
    border-color: var(--color-lightorange);
}

.img-post, .img-post img {
    width: 100%;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.img-post img {
    height: 100%;
    vertical-align: bottom;
    
}

.text-post {
    padding: 30px 20px 30px;
    flex: 1 1 0px;
}

.text-post p {
    color: var(--color-brown);
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 2rem;
    font-size: 1rem;
}

.info-text-post {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: var(--color-brown);
    font-weight: 600;
}

.info-text-post span {
    background-color: var(--color-lightorange);
    padding: 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.info-text-post b {
    letter-spacing: 1px;
}

.bt-pos {
    color: var(--color-lightorange);
}

.bt-pos:hover {
    background-color: var(--color-lightorange);
    border-color: var(--color-lightorange);
}

/*sobre*/
.sobre .title {
    border-color: var(--color-red);
}

.sobre .title h2 {
    background-color: var(--color-red);
}

.sobre-conteudo {
    margin: 80px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.texto-sobre {
    width: 60%;
    margin: auto;
    text-align: center;
    line-height: 2rem;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-brown);
}

.citacao {
    background-color: var(--color-red);
    padding: 20px 10px;
    border-radius: 20px;
}

.citacao p {
    color: var(--color-white);
    margin: 0 20px;
}

#citado {
    text-decoration: none;
    text-align: right;
    margin: 10px 20px 0;
    font-size: 1rem;
}

.bt-sob {
    color: var(--color-red);
}

.bt-sob:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
}

.bt-sob svg {
    vertical-align:text-bottom;
    width: 24px;
    height: 24px;
}


/*FAQ*/
.FAQ .title {
    border-color: var(--color-brown);
}

.FAQ .title h2 {
    background-color: var(--color-brown);
}

.FAQ-conteudo {
    margin: 80px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.texto-faq {
    width: 40%;
}

.texto-faq h3 {
    color: var(--color-brown);
    letter-spacing: 3px;
    font-size: 2rem;
    text-align: center;
    line-height: 3rem;
}

.FAQ-botao {
    margin-top: 50px;
}

.perguntas-faq {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.ask {
    color: var(--color-brown);
    border: 2px solid currentColor;
    border-left-width: 20px;
    border-radius: 8px;
    padding: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s;
}

.ask:hover {
    padding-right: 7px;
}

.bt-per {
    color: var(--color-brown);
}

.bt-per:hover {
    background-color: var(--color-brown);
    border-color: var(--color-brown);
}