/* Fontes modernas */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

body#artistas,
body#Circuitos {
    background: linear-gradient(0deg, rgba(0, 21, 36, 1) 0%, rgba(21, 97, 109, 1) 50%, rgba(0, 21, 36, 1) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* HEADER */
header {
    background-color: #001524;
    color: white;
    padding: 15px 0;
}

header h1 {
    font-family: 'Bebas Neue', 'Anton', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
}

header h1 a {
    color: white;
    text-decoration: none;
}


header h1 a:visited {
    color: white;
}

header nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
    color: white;
}

#menu_nav {
    width: 80%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav#desktop ul {
    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;
    left: 0;
    transition: 0.5s ease-in-out;
}

#bigmac .linha:nth-child(1) {
    top: 0;
}

#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),
#bigmac.open .linha:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

#bigmac.open .linha:nth-child(2) {
    transform: rotate(45deg);
}

#bigmac.open .linha:nth-child(3) {
    transform: rotate(-45deg);
}

nav#mobile {
    display: none;
}

/* ENTRADA */
#entrada {
    background: linear-gradient(to top, #15616D 0%, rgba(0, 0, 255, 0) 25%),
        url(imagens/2imagem\ paa.jpg) no-repeat center center;
    background-size: cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#info_entrada {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

#info_entrada h2 {
    font-family: 'Anton', sans-serif;
    font-size: 72px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

#info_entrada p {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 30px;
}

#botoes_entrada {
    margin-top: 20px;
}

.btn_entrada {
    background-color: #FF7D00;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn_entrada:hover {
    background-color: #e66f00;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* ARTISTAS */
.titulo_artistas,
.titulo_circuitos {
    text-align: center;
    font-size: 48px;
    margin-top: 70px;
    margin-bottom: 30px;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    color: white;
}

.titulo_data {
    text-align: center;
    font-size: 32px;
    margin: 40px 0 20px;
    font-family: 'Bebas Neue', sans-serif;
    color: #FF7D00;
}

.secao_artistas {
    padding: 40px 0;
}

.artistas_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 80%;
    margin: auto;
}

.artista_card {
    text-align: center;
    background-color: rgb(84, 187, 187);
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.artista_card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* PLANOS */
#seccao_2 {
    background-color: #15616D;
    padding: 80px 0;
}

.conteudo_centrado {
    width: 70%;
    margin: 0 auto;
}

.aplica_flex {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.tres_colunas,
.tres_colunas.maior {
    background-color: rgb(84, 187, 187);
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.tres_colunas.maior {
    flex: 2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.tres_colunas.maior:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.tres_colunas h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.tres_colunas p strong {
    font-size: 24px;
}

.lista_icones {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
    font-size: 16px;
}

.lista_icones li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    text-align: left;
}

.lista_icones li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
}

.btn_coluna {
    margin-top: auto;
    padding: 12px 24px;
    background-color: #FF7D00;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn_coluna:hover {
    background-color: #e66f00;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* DIVISORES */
.divisor_menor,
.divisor_maior {
    padding: 20px 0;
}

.divisor_menor img {
    width: 50%;
    max-width: 300px;
    margin: auto;
}

.divisor_maior {
    background-color: #15616D;
}

.divisor_maior#circuitos {
    background-color: transparent;
}

body#artistas .divisor_maior {
    background: transparent;
}

.divisor_maior img {
    width: 80%;
    max-width: 700px;
    margin: auto;
}

/* CONTACTOS */
#contactos_localizacao {
    background: linear-gradient(to bottom, #15616D, #001524);
    padding: 60px 0;
    color: white;
}

body#circuitos #contactos_localizacao {
    background: transparent;
}

body#artistas #contactos_localizacao {
    background: transparent;
}

#contactos_localizacao h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

#contactos_localizacao p {
    text-align: center;
    font-size: 18px;
    margin: 10px 0;
}

#contactos_localizacao .mapa {
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

/* FOOTER */
footer {
    background-color: #001524;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer_conteudo {
    width: 80%;
    max-width: 1000px;
    margin: auto;
}

.footer_conteudo p {
    margin-bottom: 15px;
    font-size: 16px;
}

.redes_sociais a {
    display: inline-block;
    margin: 0 10px;
}

.redes_sociais img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.redes_sociais img:hover {
    transform: scale(1.2);
}

/* CIRCUITOS */
.circuitos_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.circuito_card {
    background-color: rgb(84, 187, 187);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.circuito_card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #001524;
}

.circuito_card p {
    font-size: 16px;
    color: #001524;
}

.circuito_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.linha_paragens {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    overflow-x: hidden;
    /* impede scroll horizontal */
}

.caixa_paragem {
    flex: 1 1 0;
    /* permite que todas tenham mesmo tamanho e encolham se necessário */
    min-width: 0;
    /* evita que o conteúdo force quebra ou scroll */
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.caixa_paragem p {
    margin: 4px 0;
    font-size: 14px;
}

.circuito_card h3 {
    text-align: center;
    margin-left: 5px;
    color: #001524;
}

@media (max-width: 768px) {
    .linha_paragens {
        flex-direction: column;
        align-items: center;
    }

    .caixa_paragem {
        width: 90%;
        margin-bottom: 15px;
    }
}

/* RESPONSIVO */
@media (max-width: 800px) {
    header {
        width: 100%;
        position: fixed;
        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: 70px;
        transition: 0.3s linear;
        background-color: rgba(182, 230, 255, 0.95);
    }

    nav#mobile.menu_abre {
        left: 0;
    }

    nav#mobile ul {
        list-style-type: none;
    }

    nav#mobile li {
        width: 100%;
        padding: 20px 0;
        text-align: center;
        height: 80px;
    }

    .aplica_flex {
        flex-direction: column;
        align-items: center;
    }

    .tres_colunas,
    .tres_colunas.maior {
        width: 80%;
        flex: none;
    }
}