@charset "utf-8";

#container {
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    grid-template-rows: auto;

    padding: 0 0 10vh 0;
}

#texto
{
    grid-column: 2 / 5;
    padding: 5vh 0 0;
}

#registros,
#entrevistas,
#relatos {
    grid-column: 2 / -2;
    padding: 5vh 0 0;
}

.texto--titulo {
    font-family: 'Gilbert-bold', sans-serif;
    font-size: 32px;
    grid-column: 1 / -4;
}

.texto--titulo2 {
    font-family: 'Gilbert-bold', sans-serif;
    font-size: 24px;
    grid-column: 1 / -4;
}

.texto--subtitulo {
    padding: 3vh 32vw 0 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    grid-column: 2 / 12;
}

#texto--subtitulo--inferior{

    margin-right: 20vw;
}

.subtitulo-inferior{

    margin-right: 100vw;
}


/* Style the tab */
#registros {
    display: grid;
    grid-template-columns: repeat(10, [col-start] 1fr);
    grid-template-rows: auto;
    gap: 0 5vw;
}

#registros .texto--titulo {
    padding: 0 0 5vh;
}

.tab--pessoas {
    grid-column: 1 / -8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 2vh 0 0;
}

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

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

    font-family: 'Gilbert-bold', sans-serif;
}

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

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

/* Style the tab content */
.tabcontent {
    grid-column: -8 / -1;
    display: none;
    padding: 6px 12px;
}

.tabcontent iframe {
    width: 100%;
    height: 100%;
}

/* == Entrevistas == */

#entrevistas--arquivos {
    padding: 3vh 0 0;

    display: grid;
    grid-template-columns: repeat(11, [col-start] 1fr);
    grid-template-rows: auto;
    gap: 1vw;
    margin-right: 0;
}

.entrevistas--arquivos__card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.entrevistas--arquivos__card .material-symbols-outlined {
    font-size: 4rem !important;
    text-align: center;
    justify-content: center;
}

.entrevistas--arquivos__card .arquivos__card--nome {
    font-family: 'Open sans', sans-serif;
    margin-top: 10px;
    font-size: 1em;
    text-align: center;
    color: #8A8A8A;
}

/* == Relatos de entrevista == */
#relatos {
    display: flex;
    flex-direction: column;
}

.relatos--subtitulo {
    padding: 5vh 0 0;

    font-family: 'Gilbert-bold', sans-serif;
    font-size: 16px;
}

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

    #container {
        
        padding: 5vh 6vw;
    }

    #texto {
        grid-column: 2 / 5;
        padding: 0vh 0 0;
    }


    .texto--titulo {
        font-family: 'Gilbert-bold', sans-serif;
        font-size: 22px;
        grid-column: 1 / -4;
    }


    #texto,
    #registros,
    #entrevistas,
    #relatos {
        grid-column: 1 / -1;
    }

    #texto--subtitulo {
        padding: 3vh 0 0;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;

        padding-right: 0 !important;
    }

    /* Style the tab */
    #registros {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        padding: none;
    }

    .tab--pessoas {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;

        padding: 5vh 0 0;

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

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

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

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

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

    .tabcontent iframe {
        width: 87vw;
    }

    /* == Entrevistas == */

    #entrevistas--arquivos {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin-right:0;
        flex-wrap: wrap;
    }

    .entrevistas--arquivos__card a {
        padding: 3vh 0;
    }

    .texto--subtitulo{
        padding: 2vh 0 0 0;
        grid-column: 1 / 12 !important;
    }

    #texto--subtitulo--inferior{

        margin-right: 0;
    }

    .texto--titulo2 {
        font-family: 'Gilbert-bold', sans-serif;
        font-size: 20px;
        grid-column: 1 / -4;
    }
}