@charset "utf-8";


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


.container {
    width: 85%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

img {
    display: block;
    width: 100%;
}

.centrar_imagem {
    width: 50%;
    margin: auto;
}



#imagem_fundo {
    background: url(imagens/curais_2.webp) lightgray 50% / cover no-repeat;
}




/* ### MENU  ### */

#menu_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


nav#desktop ul {
    margin: 0;
    padding: 0;
    list-style-type: none;

    display: flex;
    justify-content: space-between;
}

nav#desktop ul li {
    margin: 0 10px;
}

#bigmac {
    display: none;

    width: 40px;
    height: 28px;

    position: relative;

    z-index: 30;

    cursor: pointer;
}

#bigmac .linha {
    position: absolute;
    height: 4px;
    width: 100%;


    background-color: white;
    border-radius: 9px;

    opacity: 1;
    left: 0;

    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
}


#bigmac .linha:nth-child(1) {
    top: 0px;
}

#bigmac .linha:nth-child(2) {
    top: 12px;
}

#bigmac .linha:nth-child(3) {
    top: 12px;
}

#bigmac .linha:nth-child(4) {
    top: 24px;
}

#bigmac.open .linha:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#bigmac.open .linha:nth-child(2) {
    transform: rotate(45deg);
}

#bigmac.open .linha:nth-child(3) {
    transform: rotate(-45deg);
}

#bigmac.open .linha:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}


nav#mobile {
    display: none;

}

/* FIM HEADER */



/* HEIGHT */
.altura_300 {
    height: 300px;
}

.heighttt {
    height: 80px;
}

.height {
    height: 60px;
}

.height_50{
    height: 50px;
}

.imagem_altura{
    height: 50px;
}

.altura_43 {
    height: 43px;
}

.altura {
    height: calc(100vh - 72px);
}

.altura_banner{
    height: calc(100vh - 122px);
}






/* WIDTH */
.largura {
    max-width: 700px;
}

.espacco {
    max-width: 500px;
}


.por20 {
    max-width: 20%;
}

.maxi20 {
    width: 30%;
}

.duas_colunas {
    width: 40%;
}

.width_50p{
    width: 50%
}


/* CINCO COLUNAS */
.cinco_colunas {
    background-color: #FFF;
    border: 4px solid #023;
}



/* DISPLAY */
.flex {
    display: flex;
}

.flex_480{
    display: none;
    }

.grid {
    display: grid;
}

.items_center {
    align-items: center;
}

.items_end {
    align-items: end;
}

.alinhar {
    justify-content: space-between;
}

.coisascentradas {
    justify-content: center;

}

.around {
    justify-content: space-around;
}

.end {
    justify-content: end;
}

.directions {
    flex-direction: column;
}


.direction_reverse {
    flex-direction: row-reverse;
}



.wrap {
    flex-wrap: wrap;
}



/* GAP */
.gap_5 {
    gap: 5px;
}

.gap {
    gap: 20px;
}

.gap_40 {
    gap: 40px;
}





/* MARGIN & PADDING */
#intruducao {
    margin-top: 200px;
    margin-bottom: 150px;
}

.auto {
    margin-left: auto;
    margin-right: auto;
}

.m_0_auto {
    margin: 0 auto;
}

.cem_px {
    margin-top: 100px;
}

/* MARGIN */
.margem_50 {
    margin-top: 50px;
}
.bottom_50 {
    margin-bottom: 50px;
}

.top_20 {
    margin-top: 20px;
}

.bottom_20 {
    margin-bottom: 20px;
}

.margin_right{
    margin-right: 15px;
}

/* MARGIN & PADDING */
.left_right {
    padding-left: 30px;
    padding-right: 30px;
}
.porcento {
    padding: 20px;
}
.padd_10px{
    padding: 10px 0px;
}



.alto {
    padding-top: 10px;
}

.padding_top_15{
    padding-top: 15px;
}

.pdd_top_50{
    padding-top: 50px;
}

.alto_100 {
    padding-top: 100px;
}

.top_pdd_300 {
    padding-top: 300px;
}



.padd_bottom_10{
    padding-bottom: 10px;
}
.baixo {
    padding-bottom: 5px;
}

.pdd_btt_50{
    padding-bottom: 50px;
}

.bottom_300 {
    padding-bottom: 300px;
}

.bottom_700 {
    padding-bottom: 700px;
}



/* BACKGROUND IMAGE */
.background_img {
    background-image: url(imagens/cural_1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    padding-bottom: 500px;
}

.imagem {
    max-height: 700px;
}

.bg_cartazes {
    background-image: url(imagens/curais_2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    padding-bottom: 500px;
}




/* TEXT */
#font {
    font-family: "JetBrains Mono", monospace;

}

.paragrafo {
    max-width: 525px;
}

.respostas {
    max-width: 980px;
}

.muito_texto{
    line-height: 150%;
}

.perguntas{
    font-weight: 600;
}


/* TEXT COLOR */
.azul {
    color: #023;
}

.branco {
    color: #FFF;
}



/* FONT SIZE */
.tituloX {
    font-size: 45px;
}

h1 {
    font-size: 40px;
    margin: 0;
    text-align: center;
}

h2 {
    font-size: 30px;
}

h3{
    font-size: 19px;
}

h4{
    font-size: 16px;
}

.texto_miudo {
    font-size: 12px;
}

p {
    font-size: 16px;
}




/* TEXT ALIGN */
.text_align {
    text-align: center;
}

.right {
    text-align: right;
}



/* FONT WEIGHT */
.weight_600 {
    font-weight: 600;
}



/* BOTOES */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.logo {
    font-size: 35px;
    color: #FFF;
    text-decoration: none;
}

.logo:hover {
    font-size: 35px;
    color: #FFF;
    text-decoration: none;
}


.botoes_heeader {
    font-size: 12px;
    text-decoration: none;
}

.botoes_heeader:hover {
    font-size: 12px;
    text-decoration: underline;
}



.botoes_branco {
    color: #023;
    text-decoration: none;
    background-color: #ffffff;
    
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 9px;
    padding: 5px 10px;
}

.botoes_branco:hover {
    color: #FFF;
    background-color: #025373;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 9px;
    text-decoration: none;
    padding: 5px 10px;
}

.botoes_azul {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #025373;
    border-radius: 9px;
    padding: 5px 10px;
    background-color: #025373;
}

.botoes_azul:hover {
    color: #025373;
    border: 2px solid #025373;
    text-decoration: none;
    background-color: #fff;
}






/* background */



#teste_2{
    background-image: url(imagens/curais_4.webp);
    height: 50vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#banner {
    background-image: url(imagens/banner.webp);
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}


.background_claro {
    background-color: #025373;
}

.background_escuro {
    background-color: #143D58;
}

header {
    background-color: #025373;
}

.medidas {
    grid-template-columns: 1fr 1fr 1fr;
}



/* PROGRAMA */
.armand_hammer {
    background-image: url(imagens/Armand_Hammer.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}


.livro {
    background-image: url(imagens/livro.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}#viagem {
    background-image: url(imagens/viagem.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}#rodrigo_amado {
    background-image: url(imagens/rodrigo_amado.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}#zoh_amba {
    background-image: url(imagens/zoh_amba.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}#dreamcrusher {
    background-image: url(imagens/dreamcrusher.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}#assembling {
    background-image: url(imagens/margarida.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}#leida {
    background-image: url(imagens/leida.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh; 
    max-width: 300px;
    max-height: 200px;
}#fuji {
    background-image: url(imagens/fuIIIIta.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}
.teste_imagem {
    background-image: url(imagens/Armand_Hammer.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}
.exposicao {
    background-image: url(imagens/exposicao.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}
.chuquimamani {
    background-image: url(imagens/chuquimani.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}
.son_du_maqui {
    background-image: url(imagens/son_du_maqui.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.dj_anderson {
    background-image: url(imagens/dj_anderson.webp);
    background-position: center;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.ojoo {
    background-image: url(imagens/ojoo.webp);
    background-position: center;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.ghosted {
    background-image: url(imagens/ghosted.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.carolf {
    background-image: url(imagens/carolf.webp);
    background-position: center;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.oko_dj {
    background-image: url(imagens/oko_dj.webp);
    background-position: center;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}
.nidia_v {
    background-image: url(imagens/nidia_v.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.lenhart_tapes {
    background-image: url(imagens/lenhart_tapes.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.h_31_r {
    background-image: url(imagens/h_31_r.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}
.speaker_music {
    background-image: url(imagens/speaker_music.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.caveira {
    background-image: url(imagens/caveira.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.nu_no {
    background-image: url(imagens/nu_no.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.kakuhan {
    background-image: url(imagens/kakuhan.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.ulla {
    background-image: url(imagens/ulla.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.jules_reidy {
    background-image: url(imagens/jules_reidy.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.tome_silva {
    background-image: url(imagens/tome_silva.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.alfredo_costa {
    background-image: url(imagens/alfredo_costa.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.eve {
    background-image: url(imagens/eve.webp);
    background-position: center;    
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.nkisi {
    background-image: url(imagens/nkisi.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.france {
    background-image: url(imagens/france.webp);
    background-position: center;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.zancudo {
    background-image: url(imagens/zancudo.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.nazar {
    background-image: url(imagens/nazar.webp);
    background-position: center;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.donna_candy {
    background-image: url(imagens/donna_candy.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.mariam_rezaei {
    background-image: url(imagens/mariam_rezaei.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}.ines_arianna_violeta {
    background-image: url(imagens/ines_arianna_violeta.webp);
    /* MUDAR PARA IMAGEM CERTA*/
    background-position: top;
    background-size: cover;
    height: 50vh;
    max-width: 300px;
    max-height: 200px;
}


.saiponto {
    list-style-type: none;
}

html {
    scroll-behavior: smooth;
}




/* LINHAS */
.barra {
    width: 1px;
    height: 25px;
    background-color: #FFF;
}

.linha {
    border-top: 1px solid white;
}

#linha_especial {
    height: 1px;
    background-color: white;
}






/* TESTE TESTE TESTE */
  
  .conteudoX {
    display: none;
    padding: 10px 10px;
  }
  
  button.active i {
    transform: rotate(180deg);
    transition: 0.3s;
  }
  
  .faq_item .titulo {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .topico_header {
    display: flex;
    align-items: center;    
    padding: 10px;
    cursor: pointer;
  }

  .accordion-btn {
    transform: rotate(0deg);
}

.accordion-btn.active {
    transform: rotate(180deg);
}

.lista button {
    display: block;
    margin-left: 30px;
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    transform: rotate(0deg);
    transition: transform 0.5s;
}

/* ############*/
/*  RESPONSIVO */
/* ############*/


@media (max-width:800px) {

    header {
        width: 100%;

        position: fixed;
        top: 0;
        z-index: 9999;
        /* top: 0; */
    }

    #menu_nav {
        width: 95%;
    }

    #bigmac {
        display: block;
    }

    nav#desktop {
        display: none;

    }

    nav#mobile {
        display: block;
        position: fixed;


        z-index: 20;
        width: 100%;
        left: -100vw;
        top: 70px;
        transition: .3s linear;

        background-color: #025373;
    }


    nav#mobile.menu_abre {
        left: 0;
    }

    nav#mobile ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    nav#mobile li {
        width: 100%;
        padding: 20px 0;
        text-align: center;
        height: 80px;
    }

    /* WIDTH */

    .maxi20 {
        width: 100%;
    }

    .duas_colunas {
        width: 100%;
    }

}

@media (max-width:480px) {

.none{
    display: none;
}

.altura_300{
    height: auto;
}

.flex_480{
display: flex;
}

.background_img .directions   {
    flex-direction: row;
}

.background_img {
    padding-bottom: 200px;
}

.column_reverse{
    flex-direction: column-reverse;
}

.width_50p{
    width: 85%;
}

.margin_auto{
    margin: auto;
}


.direction_reverse {
    flex-direction: column;
}

.medidas {
    grid-template-columns: 1fr;
    /*  tirar isto*/
}
}



/* ############*/
/*  -o botão do OUT.FEST no fotter, não está a funcionar */
/*  - */
/* ############*/