




*{
       box-sizing: border-box;
}


body {

    font-family: Arial, sans-serif;
    background-color: #121426;
    color: white;
}

header {
    background-color: #000000;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;


}

#menu_nav {
    width: 100%;
    max-width: 10000px;
   

    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 120px;
}

nav#desktop ul {
    margin: 0;
    padding: 0;
    list-style-type: none;

    display: flex;
    justify-content: space-between;
}

nav#desktop ul li {
    margin: 0 px;
}

nav a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}



nav a:hover {
    text-decoration:wavy;
    color: orange;
}




#bigmac {
    display: none;

    width: 40px;
    height: 28px;

    position: relative;

    z-index: 30;

    cursor: pointer;
}

#bigmac .linha {
    position: absolute;
    height: 4px;
    width: 100%;


    background-color: orange;
    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;

}



nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.intro-centralizada {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 160px auto 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.ilustracao-bg {
    width: 100%;
    height: auto;
    display: block;
}

.texto-centralizado {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f5f5f5;
    max-width: 600px;
}

.texto-centralizado h2 {
    font-size: 22px;
    color: orange;
    font-weight: bold;
    margin-bottom: 10px;
}

.texto-centralizado p {
    font-size: 14px;
    line-height: 1.4;
}

/* cartaz*/


/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: white;
    background-color: 121426;
    overflow-x: hidden;
    margin-top: 150px;
}

/* Container principal */
.cartaz-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
   
}

/* Imagem de fundo */
.cartaz-bg {
    width: 130%;
    display: block;
    position: relative;
    z-index: 0;
}

/* Eventos sobrepostos à imagem */
.evento {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Blocos de dia */
.evento-dia {
    width: 300px;
    min-height: 300px;
    position: relative;
    margin-top: 40px;
}

/* Datas */
.data {
    display: block;
    color: #f4b4cc;
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 16px;
}

/* Local e hora */
.local {
    display: block;
    font-size: 12px;
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Títulos de eventos */
.titulo {
    display: block;
    font-size: 14px;
    color: #00cfff;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 6px;
    margin-top: 20px;
}

.titulo a {
    color: red;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    /* necessário para aplicar transform */
    transition: transform 0.3s ease;
}

.titulo a:hover {
    transform: scale(1.3);
}

/* Subtítulo extra (jam session, etc) */
.subtitulo {
    display: block;
    font-size: 12px;
    color: #ccc;
    font-style: italic;
}

/* Países em sufixo */
.sufixo {
    font-weight: normal;
    font-size: 12px;
    color: #ccc;
    margin-left: 4px;
}

/* Logo central do festival */
.logo-central {
    width: 450px;
    margin-bottom: 0px;
    display: block
    
    
}


#entrada {
    height: calc(100vh - 93px);

    background-image: url(imagens/imagem_1.png);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    text-align: center;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
}


#texto_entrada {
    padding: 50px;
    margin-left: 190;
    margin-right: 190;  
    
}
#texto_entrada h1{

color: orange;
}


.botao-ver-programa {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid orange;
    /* linha à volta */
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.botao-ver-programa:hover {
    background: orange;
    color: #000000;
}




.section {
    text-align: center;
   
}

.highlight {
    color: orange;
    font-weight: bold;
    align-items: left;
    margin-top: 100px;
    

}











.festival-intro,
.festival-inside {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 10rem 2rem;
    margin-left: 40px;
    
    color: #fff;
}

.festival-intro-text,
.festival-inside-text {
    flex: 1;
    margin-left:60px;
    margin-right: 70px;
}

.festival-intro-title,
.festival-inside-title {
    color: #f5a400;
    font-size: 2 rem;
    font-weight: bold;
    margin-bottom: 1rem;

}

.festival-intro p,
.festival-inside p {
    font-size: 1rem;
    line-height: 1.;
    margin-bottom: 1rem;
    margin-right: 30px;
}




.festival-intro-button {
    display: inline-block;
    
    padding: 0.6rem 1.2rem;
    border: 1px solid orange;
    /* linha à volta */
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.festival-intro-button:hover {
    background: orange;
    color: #000000;
}



.festival-intro-image,
.festival-inside-image {
    flex: 1.2;
    
}

.festival-intro-image img,
.festival-inside-image img {
    width: 85%;
    height: auto;
    display: block;
}











.imagem-com-texto {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 1000px;
}

.imagem-com-texto img {
    width: 100%;
    height: auto;
    border-radius: px;
    display: block;
}

.texto-sobre-imagem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    max-width: 90%;
    border-radius: 10px;
}

.texto-sobre-imagem .highlight {
    font-size: 22px;
    color: orange;
    font-weight: bold;
    margin-bottom: 10px;
}

.texto-sobre-imagem p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: left;
    justify-content: left;
    text-align: left;
    margin-top: 100px;
    margin left: 30px;
}

.two-column>div {
    flex: 1;
    min-width: 00px;
}



.impacto {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.impacto-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.impacto-img {
    width: 100%;
    height: auto;
    display: block;
}

.impacto-texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 700px;
    text-align: center;
    color: #ffffff;

}

.impacto-bloco h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.impacto-bloco p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 100px;
}









      



/* terceira pagina */



/* Secção base */
.secao-paira {
    position: relative;
    width: 100%;
    height: 110vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fundo com linhas */
.fundo-paira {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagens/fundo.svg');
    /* substitui pelo nome correto do SVG de fundo */
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 1;
}

/* Conteúdo sobre o fundo */
.conteudo-paira {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 90%;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    color: white;
}

/* Imagem da banda */
.imagem-paira img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* Texto à direita */
.texto-paira {
    flex: 1;
    min-width: 300px;
}

.texto-paira h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.texto-verde {
    color: #5BE5D1;
}

.texto-cinza {
    color: #888;
}

.info-paira {
    font-weight: bold;
    margin-bottom: 5px;
}

.hora-paira {
    color: #5BE5D1;
    margin-bottom: 20px;
}

/* Botão verde */
.botao-verde {
    background-color: #00B6B1;
    color: white;
    border: none;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.botao-verde:hover {
    background-color: orange;
    color: #000;
}




/* quarta pagina */


#entrada2 {
    height: calc(90vh - 0px);

    background-image: url(imagens/imagem1....png);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    text-align: center;
    margin-top: 120px;
    color: orange;

    display: flex;
    justify-content: center;
    align-items: center;
}

.section {
    padding:px 0px 0px 100px;
    /* diminui o valor no topo */
}

.ilustracao-piano {
    max-width: 420px;
        width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 30%);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 80%);
}


.texto-festival {
    margin-top: 400px;
    margin-left: 100px;
    
   
    
}











.festival-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    /* ou o que corresponder à tua cor de fundo */
    padding: 4rem 2rem;
    gap: 4rem;
}

.festival-content {
    flex: 1;
    color: #ffffff;
}

.festival-title {
    color: #f5a400;
    font-size: 2;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-left: 70px;
     margin-top: 40px;
}

.festival-text {
    font-size: 1.1rem;
    
    margin-left: 70px;
}

.festival-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.festival-image {
    width: 60%;
    height: auto;
    display: block;

    /* Degradê no topo que desaparece suavemente */
    mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
}











#entrada5 {
    height: 700px;
    display:block;
    whith:100%;

    background-image: url(imagens/imagem2_pagina4.png);

   

    text-align: center;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}


#texto_entrada5 {
    padding: 50px;
    margin-left: 190;
    margin-right: 190;
    
}

#texto_entrada5 h1 {

    color: orange;
    font-size: 25px;
}


#texto_entrada5 h2 {

    color: rgb(255, 255, 255);
    font-size: 17px;
}
#texto_entrada5 p {

    color: rgb(255, 255, 255);
    font-size: 15px;
}




.section-encontros {
    margin-top: 100px;
    /* Espaço do frame acima */
    align-items: center;
    gap: 100px;
}

.ilustracao-encontros {
    width: 600px;
    height: auto;
    margin-left: 100px;
}
    

.texto-encontros {
    max-width: 600px;
    margin-bottom: 70px;
    margin-right: 100px;
} 


#entrada6 {
    height: calc(100vh - 93px);

    background-image: url(imagens/imagem4_pagina4.png);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    text-align: center;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
}


#texto_entrada6 {
    padding: 50px;
    margin-left: 190;
    margin-right: 190;
    /* background-color: rgba(240, 210, 171, 0.5); */
}

#texto_entrada6 h1 {

    color: orange;
    font-size: 25px;
}


#texto_entrada6 h2 {

    color: rgb(255, 255, 255);
    font-size: 17px;
}

#texto_entrada6 p {

    color: rgb(255, 255, 255);
    font-size: 15px;
}



.galeria-section {
    padding: 0px 0px;
    background-color: #121426;
    text-align: center;
    margin-top: 70px;
    
    
}

.galeria-titulo {
    font-size: 32px;
    color: orange;
    margin-bottom: 60px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.galeria-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease,box-shadow 0.3s ease;
    cursor: pointer;
    
}

.galeria-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);

}




/*footer*/

.footer {
    background-color: #212020;
    color: #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 80px;
    font-family: 'Arial', sans-serif;
    flex-wrap: wrap;
    gap: 40px;
    

   
}

.footer-logo img {
    width: 160px;
    height: auto;
}



.footer-section ul {
    list-style: none;
    padding: 0;
    
    
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.5;
}



.footer-section h4 {
    margin-bottom: 12px;
}


.footer-section ul li {
    margin-bottom: 15px;
    margin-top: 15px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

.footer-section ul li a i {
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.footer-section ul li a:hover {
    color: #FFA500;
    transform: scale(1.05);
}

.footer-section ul li a:hover i {
   
    transform: scale(1.2);
}

.footer-section ul li a img.social-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness() invert();
    /* deixa branco por padrão */
    transition: all 0.3s ease;
}












/*RESPONSIVO*/








@media (max-width: 600px) {

   
    .festival-intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
        gap: 40px;
    }

    .festival-intro-text,
    .festival-intro-image {
        width: 100%;
    }

    .festival-intro-image img {
        width: 90%;
        height: auto;
    }

   
    .festival-inside {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .festival-inside-image,
    .festival-inside-text {
        width: 120%;
    }

    .festival-inside-image img {
        width: 60%;
        height: auto;
    }

    
    .impacto-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 200px;
    }

    .impacto-img {
        width: 0%;
        height: auto;
    }

    .impacto-texto {
        width: 100%;
        
    }

    
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .footer-logo img {
        width: 110px;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section ul {
        padding-left: 150px;
    }

    .social-icon {
        width: 20px;
        height: auto;
        margin-right: 8px;
    }
}

@media (max-width: 600px) {

    .festival-intro-title,
    .festival-inside-title {
        font-size: 1.5rem;
        margin-right: 20px;
    }

    .festival-intro-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-right: 28px;
    }

    .impacto-bloco h3 {
        font-size: 1.2rem;
        color: orange;
    }

    .impacto-bloco p {
        font-size: 0.95rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}





/*responsivo cartaz*/
@media (max-width: 600px) {
    .cartaz-container {
        flex-direction: column;
        padding: 1rem;
        overflow-x: hidden;
    }

    .cartaz-bg {
        width: 00%;
        height: auto;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: 0.2;
    }

    .evento {
        position: relative;
        display: ;
        flex-direction: column;
        gap: 2rem;
        padding: 1rem ;
        z-index: 1;
    }

    .evento-dia {
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 1rem;
        padding: 2rem;
        color: #f4b4cc;
        font-size: 0.9rem;
        margin-left: 40px;
    }

        .evento-dia.destaque {
            display: none;
        }
        }

    .data {
        font-weight: bold;
        font-size: 1.2rem;
        color: #f4b4cc;
        display: block;
        margin-bottom: 0.5rem;
    }

    .local {
        font-size: 0.9rem;
        color: #eee;
        display: block;
        margin-bottom: 0.5rem;
    }

    .titulo {
        font-size: 1rem;
        font-weight: bold;
        color: #43f0d8;
        display: block;
        margin-bottom: 0.3rem;
    }

    .subtitulo {
        font-size: 0.9rem;
        font-style: italic;
        color: white;
    }

    .sufixo {
        font-size: 0.8rem;
        color: #999;
    }

@media (max-width:600px) {



/*responsivo pagina do festival*/

/*768*/



@media screen and (max-width: 600px) {

        /* Fesitval: layout em coluna */
        .festival-section {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2rem 1rem;
        }

        .festival-content {
            padding: 0;
        }
 
        .festival-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            margin-right: 60px;
        }

        .festival-text {
            font-size: 1rem;
            margin-bottom: 1rem;
            margin-left: 20px;
            margin-right: 20px;
        }

        .festival-image-container {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 1rem;
            margin-right: 40px;
        }

        .festival-image {
            max-width: 100%;
            height: auto;
        }

        /* Encontros: imagem em cima, texto em baixo */
        .section-encontros {
            flex-direction: column;
            padding: 1rem 1rem;
            text-align: center;
            gap: 1rem;

        }

        .ilustracao-encontros {
            max-width: 90%;
            height: auto;
            margin-left: 1px;
            
           
        }

        .texto-encontros {
            padding: 0;
            margin-left: 10px;
            margin-right: 20px;
        }

        .highlight {
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

        .texto-encontros p {
            font-size: 1rem;
            margin-bottom: 1rem;
        }
    }




    /* responsivo do HEADER */

    header {
        top: 0;
        z-index: 9999;
    }

    #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: 160px;
        transition: 0 linear;

        background-color: rgb(134, 94, 14);
    }


    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: 100px;
    }

}