:root{
    /* CORES */
    --cor-de-fundo:antiquewhite;
    --cor-de-cinza: rgb(57, 57, 57);
    --cor-pré-cinza: rgb(165, 165, 165);

    /* FONTES */
    --fonte-chelsea: "Chelsea Market","Trebuchet MS", cursive;
    --fonte-inter: "Inter", sans-serif;
}

/* fontes */

.font-chelsea {
    font-family: var(--fonte-chelsea);
    line-height: 100%;
}


.font-inter-regular {
    font-family: var(--fonte-inter);
    font-weight: 200;
}

.uppercase {
    text-transform: uppercase;
}

/* local das fontes */

.centrado{
    text-align: center;
    align-items: center;
}

/* tamanhos */

b{
    font-weight: bold;
}


.font-size-extra-large {
    font-size: 60px;
}


.font-size-large {
    font-size: 56px;
}


h1{
    font-size: 22px;
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 12px;
}


@media (max-width: 750px) {
    .font-size-large {
        font-size: 32px;
    }
    h1{
        font-size: 12px;
    }
    
    h2 {
        font-size: 10px;
    }
    
    h3 {
        font-size: 8px;
    }
    
}


html, body{
    height: 100vh;
    background-color: var(--cor-de-fundo);
    color: var(--cor-de-cinza);
}


body{
    display: flex;
    margin: 0 55pt;
    align-items: center;
}

.posit-geral{
    position: relative;
}

.divs-menu-horizontal {
    display: flex;
    flex-direction: row;
    transform: translateX(2px);
}

.flex-display {
    display: flex;
    flex-direction: row;
}

.flex-display img {
    max-width: 130px;
    margin: -20px 0;
    scale: 80%;
    opacity: 33%;

    transition: scale 0.2s ease-out;
}

.flex-display img:hover {
    scale: 100%;
    opacity: 100%;
}


button {
    background-color: transparent;
    color: var(--cor-pré-cinza);
    border: none;
    font-size: 1em;
    font-family: var(--fonte-inter);
    font-weight: 300;
    text-transform: uppercase;
    padding: 0;
    margin: 0;

    transition: color 0.2s ease-in;
}

button:hover {
    color: var(--cor-de-cinza);
}


button.active {
    font-weight: 600;
    color: var(--cor-de-cinza);
}



.div-linguas-spacing {
    margin: 0;
    margin-right: 1em;
}

.left-div-geral {
    margin: 0;
    height: 90vh;
    flex: 1.2;
    display: flex;
    flex-direction: column;
}


.lang-div h2 {
    margin-bottom: 0;
}


.titulo-div h1,
.titulo-div h2{
    margin-block-start: 0.2em;
    margin-block-end: 0;
    
    max-width: 9em;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
}


.biodiv {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: bottom;
    justify-content: left;
}

.biofoto-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
}

.biofoto-div h1 {
    margin: 0;
}


.biofoto-div img {
    border-radius:50%;
    max-width: 45pt;
    margin-left: 1rem;
    outline: auto;
    outline-width: 2px;
    outline-color: var(--cor-de-cinza);
}


.right-div-geral {
    margin: 0;
    height: 90vh;
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}


#main-video{
    margin-top: 2rem;
    max-width: 45vw;
}

/* grid de logos */

#brands-presentation-holder > * {
    position: relative;
    top: -1em;
}

.top-two-mostrador {

    padding-bottom: 1em;
}

/* .down-two-mostrador {

} */

.grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(2,1fr);
    align-items: center;
    justify-content: center;
}

.grid img {
    max-width: 130px;
    margin: -20px 0;
    scale: 80%;
    opacity: 33%;

    transition: scale 0.2s ease-out;
}

.grid img:hover {
    scale: 100%;
    opacity: 100%;
}


/* botoes de montra */

.any-centered-menu-option {
    margin-top: 1.5em;
    text-align: center;
}

.primeira-centered-menu-option {
    width: 8em;
}

.segunda-centered-menu-option {
    width: 6em;
}

.terceira-centered-menu-option {
    width: 6.5em;
}



/* ANIMAÇÕES */



/* VISIBILIDADE */


.invisible {
    opacity: 0;
    transform: translateX(-50);
    pointer-events: none;
    position: absolute;
}

/* TRANSITIONS */

.overlay-p-contactos {
    position: fixed;
    top: 0;
    left: 0;
    width: 101vw;
    height: 101vh;
    background-color: var(--cor-de-cinza);
    transform: translateX(-101%);

    /* animation */
    transition: transform 0.4s ease-out;
    z-index: 100;
}

.overlay-p-contactos-anima-agora {
    transform: translateX(0);
}


