@charset "utf-8";

#container {
    padding: 10vh 8vw;
    display: grid;
    grid-template-columns: repeat(2, [col-start] 1fr);
    grid-template-rows: auto;
    row-gap: 15vh;

    font-family: 'Open Sans', sans-serif;
}

#geolocal {
    grid-column: 1 / -1;
}

#geolocal p {
    font-family: 'Gilbert-bold', sans-serif;
    font-size: 3rem;
}

#geolocal img {
    width: 100%;
}

/* == == */

p{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

i{
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600; 
}

details
{
    font-family: 'Gilbert-bold', sans-serif;
    font-size: 20px;
}

.destaque{
    font-family: 'Gilbert-bold', sans-serif;
    font-size: 20px;
    font-style: normal;
}

#chamada p{
  font-family: 'Gilbert-bold', sans-serif;
    font-size: 32px;
    font-style: normal;  
}

details>summary {
 
    list-style: none;
  }
  summary::-webkit-details-marker {
    display: none
  }
  
  summary::after {
    content: ' ►';
  }
  details[open] summary:after {
    content: " ▼";
  }

.bar--esq {
    grid-column: 1;
    /* margin: 0 3vw 0 0; */
}

.bar--esq p {
    text-transform: uppercase;
    font-family: 'Gilbert-bold', sans-serif;
    font-size: 2rem;

    margin: 0;
}

.bar--esq .subtitulo {
    font-size: 16px;
}

.bar--esq p {
    font-size: 20px;
}


.texto {
    grid-column: 2 / -1;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.texto #subtexto {
    margin: 0;
}

/* == == */

.conteudo {
    padding: 0vh 0 0 0;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, [col-start] 1fr);
    grid-template-rows: auto;
    gap: 3vw;
} 

.conteudo #chamada {
    grid-column: 1/3;
}

/*  */
#zonaTampao {
    padding: 5vh 0 0 0;
}

#historia {
    padding: 0vh 0;
}

.fonte {
    font-size: 14px;
}

.texto img {
    width: 100%;
}

#lampiaoManifesta {
    display: grid;
    grid-template-columns: repeat(3, [col-start] 1fr);
    grid-template-rows: auto;
    gap: 2vw;
}

#lampiaoManifesta img {
    width: 100%;
}

#lampiao {
    grid-column: 1;
}

#manifesta {
    grid-column: 2 / -1;
}

#biblio {
    padding: 10vh 0;
}

/* ===== */

.texto video {
    width: 100%;
    height: auto;
}

.texto iframe {
    width: 100%;
    height: 35vh;
}

/* ===== */

#mapaIlustrado {
    grid-column: 1 / -1;
}


#mapaIlustrado .material-symbols-outlined {
    padding: 0vh 0;
    font-size: 5rem !important;
    color: #1b1b1b;
    vertical-align: text-bottom;
}

#mapaIlustrado img {
    width: 100%;
}

/* == == */
.bar--botoes {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, [col-start] 1fr);
    grid-template-rows: auto;
    gap: 0 5vw;
}

.bar--botoes .subtitulo {
    /* grid-row: 1; */
    grid-column: 1;
    /* margin: 0 0 5vh 0; */
}

.tab--locais {
    /* grid-row: 2; */
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 5vh 0 0;
}

/* Style the buttons inside the tab */
.tab--locais button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    text-align: start;

    width: 100%;
    border-bottom: 2px solid var(--corSecundaria);
}

/* Change background color of buttons on hover */
.tab--locais button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab--locais button.active {
    background-color: var(--corSecundaria);
    color: var(--corPrimaria);
}

/* Style the tab content */
.tabcontent {
    grid-column: 2 / -1;
    grid-row: 1 / span 3;
    display: none;
    padding: 6px 12px;
    font-size: 16px;
}

.tabcontent img {
    width: 100%;
    padding: 2vh 0 0 0;
}

.tabcontent #subtexto {
    text-transform: uppercase;
    padding: 0vh 0 2vh 0;
}

@media only screen and (max-width: 960px) {
    #container {
        padding:5vh 6vw;
    }

    .texto {
        grid-column: 2 / -1;
        font-size: 16px;
        font-family: 'Open Sans', sans-serif;
    }

    i {
        font-family: 'Open Sans', sans-serif;
        font-size: 10px;
        font-weight: 600;
    }

    #chamada p {
        font-family: 'Gilbert-bold', sans-serif;
        font-size: 22px;
        font-style: normal;
    }

    details {
        font-family: 'Gilbert-bold', sans-serif;
        font-size: 20px;
    }

    p {
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
    }

    .destaque {
        font-family: 'Gilbert-bold', sans-serif;
        font-size: 20px;
        font-style: normal;
    }
    

    #geolocal {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
    }

    #geolocal p {
        font-size: 3rem;
    }

    /* == == */

    .conteudo {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .bar--esq p {
        margin: 0;
    }


    /* == == */
    #zonaTampao {
        padding: 5vh 0 0 0;
    }

    #historia {
        padding: 10vh 0 0 0;
    }

    .texto img {
        width: 100%;
        padding: 5vh 0 0 0;
    }

    #lampiaoManifesta {
        display: flex;
        flex-direction: column;
    }

    #biblio {
        padding: 10vh 0;
    }


    /* == == */
    /* Style the tab */
    .bar--botoes {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        padding: 0 !important;
    }

    .bar--botoes .subtitulo {
        padding: 5vh 0 3vh;
    }
    .tab--locais {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;

        padding: 2vh 0 0;

        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Style the buttons inside the tab */
    .tab--locais button {
        background-color: #ddd;
        width: 100%;
        border-right: 2px solid var(--corSecundaria);
        border-bottom: none;
        font-size: 19px;
    }

    /* Change background color of buttons on hover */
    .tab--locais button:hover {
        background-color: #ddd;
    }

    /* Create an active/current tablink class */
    .tab--locais button.active {
        background-color: var(--corSecundaria);
        color: var(--corPrimaria);
    }

    /* Style the tab content */
    .tabcontent {
        padding: 2vh 0;
    }

    .tabcontent video {
        width: 100vw;
    }
}