/* restart css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.header {
    width: 100%;
    background: rgba(25, 25, 25, 0.92);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(2px);
}
.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: auto;
    margin: 0 auto;
    padding: 0 18px;
    height: 40px;
}
.header__logo {
    width: 38px;
    height: auto;
}
.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color--lightgrey);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}
.header__nav {
    position: fixed;
    top: 40px;
    right: 0;
    width: 45vw;
    max-width: 320px;
    height: 120vh;
    background: rgba(25, 25, 25, 0.97);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px 0 24px;
    transition: 0.3s;
}
.header__nav.active {
    display: flex;
}
.header__nav ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
}
.header__nav ul li {
    width: 100%;
    padding: 18px 0;
    text-align: left;
    list-style: none;
}
.header__nav ul li a {
    color: var(--color--lightgrey);
    font-size: 0.95rem;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.06rem;
    transition: color 0.3s, background 0.3s;
}
.header__nav ul li a:hover {
    color: var(--color--secondary);
    background: rgba(255,255,255,0.05); /* leve fundo ao passar o mouse */
}


/* padronização de cores */
:root{
    --color--white: #ffffff;
    --color--darkgrey: #191919;
    --color--slimdarkgrey: #1c1c1c;
    --color--emphasis: #e8ff3c;
    --color--secondary: #dc6ebe;
    --color--lightgrey: #c8c8c8;
    --color--plaster: rgb(226, 225, 225);
    --color--copygrey: #333333;
}


/* barra de scroll lateral */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background-color:var(--color--emphasis); 
}
::-webkit-scrollbar-thumb{
    background-color: var(--color--secondary);
}


::selection{
    background: var(--color--secondary);
    color: var(--color--darkgrey);
}


.footer{
    background-color: var(--color--darkgrey);
    color:var(--color--lightgrey);
    font-family: open-sans, sans-serif;
    padding: 4px;
    font-size: 0.7rem;
    letter-spacing: 0.06rem;
    padding: 45px 0px 45px 0px;
}
.footer__branding--logo{
    height: 120px;
    display: flex;
    align-items: center;    
    justify-content: center;
    flex-direction: column;
    gap:10px;
}
.footer__branding--logo img{    
    width: 180px;
    height: 50px;
}
.footer__branding--logo a img{
    transition: transform 0.3s ease;
}
.footer__branding--logo a img:hover{
    transform: scale(1.03);
}
.footer__branding--social{
    height: 70px;
    display: flex;
    align-items: center;    
    justify-content: center;
    font-size: 26px;
    gap: 10px;
}
#linkedin{
    color: #0a66c2;
    transition: transform 0.3s ease;
    }
#linkedin:hover{
    transform: scale(1.1);
}
#twitter{
    color: var(--color--white);
    transition: transform 0.3s ease;
}
#twitter:hover{
    transform: scale(1.2);
}
.footer__contact--form{
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    gap: 10px;
}
.footer__contact--form h4{
    font-size: 0.8rem;
    letter-spacing: 0.06rem;
}
.footer__form--input input{
    outline: none;
    border: solid 0.5px;
    border-radius: 5px;
    padding: 6px;
    letter-spacing: 0.06rem;
}
.footer__form--input button{
    padding: 6px;
    border-radius: 5px;
    border: solid 0.5px;
    color: var(--color--darkgrey);
    background-color: var(--color--emphasis);
} 
.footer__contact--form p{
    font-size: 0.6rem;
    letter-spacing: 0.06rem;
    color: var(--color--lightgrey);
}
.footer__contact--contact{
    gap: 5px;
    height: 90px;
    display: flex;
    align-items: center;    
    justify-content: center;
    flex-direction: column;
}
.footer__contact--contact--phone{
    display: flex;
    flex-direction: row;
    gap:5px;
}
.footer__contact--contact--phone i{
    color: var(--color--emphasis);
    font-size: 14px;
}
.footer__contact--contact--phone a{
    text-decoration: none;
    color: var(--color--white);
}
.footer__contact--contact--phone a:hover{
    text-decoration: none;
    color: var(--color--emphasis);
}
.footer__contact--contact--email{
    display: flex;
    flex-direction: row;
    gap:5px;
}
.footer__contact--contact--email i{
    color: var(--color--emphasis);
    font-size: 14px;    
}
.footer__contact--contact--email a{
    text-decoration: none;
    color: var(--color--white);
}
.footer__contact--contact--email a:hover{
    text-decoration: none;
    color: var(--color--emphasis);
}
.footer__copy{
    background-color: var(--color--copygrey);
    color: var(--color--lightgrey);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3vh;
    font-family: open-sans, sans-serif;
    font-weight: 200;
    padding: 4px;
    font-size: 0.6rem;
    letter-spacing: 0.06rem;
}
.footer__copy a{
    text-decoration: none;
    color: var(--color--lightgrey);
    padding-left: 5px;
}
.footer__copy a:hover{
    color: var(--color--emphasis);
}

.cookies-msg{
        font-family: 'space grotesk', sans-serif;
        font-size: 0.9rem;
        letter-spacing: 0.03rem;
        width: 90%;
        background-color: var(--color--white);
        position: fixed;
        bottom: 3%;
        left: 50%;
        transform: translate(-50%);
        border-radius: 7px;
        display: none;
}
    .cookies-msg.mostrar{
        display: block;
}
    .cookies-msg .cookies__txt{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        flex-direction: column;
}
    .cookies__txt--btn{
        padding-top: 12px;
}
    .cookies-msg .cookies__txt--btn button{
        background-color: var(--color--secondary);
        color: var(--color--white);
        font-weight: 700;
        font-size: 14px;
        padding: 10px 35px;
        border: none;
        cursor: pointer;
        transition: .2s;
        letter-spacing: 0.03rem;
        border-radius: 5px;
}
    .cookies-msg .cookies__txt--btn button:hover{
        transform: scale(0.95);
}


@media only screen and (min-width:601px) and (max-width: 768px) {


    .footer{
        display: flex;
        flex-direction: row
    }
    .footer__branding{
        display: flex;
        flex-direction: column;
        width: 50%;
    }
    .footer__contact{
        display: flex;
        flex-direction: column;
        width: 50%;
    }
    .footer__branding--logo{
        width: auto;
        height: 150px;
    }
    .footer__branding--social{
        width: auto;
        height: 150px;
    }   
    .footer__contact--contact{
        width: auto;
        height: 150px;
    }
}


@media only screen and (min-width:769px) {
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(25, 25, 25, 25);
    }
    .header__container {
        height: 55px;
        max-width: 1650px;
    }
    .menu-toggle {
        display: none;
    }
    .header__nav {
        position: static;
        display: flex;
        align-items: center;
        height: auto;
        width: auto;
        background: none;
        padding: 0;
    }
    .header__nav ul {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .header__nav ul li {
        border: none;
        padding: 0 18px;
        margin: 0;
        width: auto;
    }


    .footer{
        display: flex;
        flex-direction: row;
        height: 25vh;
    }
    .footer__branding{
        display: flex;
        flex-direction: row;
        width: 50%;
        align-items: center;
    }
    .footer__branding--logo{
        width: 50%;
    }
    .footer__branding--social{
        width: 50%;
        font-size: 28px;
    }
    .footer__contact{
        display: flex;
        flex-direction: row;
        width: 50%;
        align-items: center;
    }
    .footer__contact--form{
        width: 50%
    }
    .footer__contact--contact{
        width: 50%
    }
    .cookies-msg{
        width: 50%;
    }
    .cookies-msg .cookies__txt{
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .cookies__txt--btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 20px;
    }
    .cookies-msg .cookies__txt--btn{
        padding-top: 0px;
    }
}


