@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --principal: #148BB3;
    --secundaria: #54AECC;
    --background: #2A4058;
    --backgroundHeader: #333333;
    --backgroundHeaderSecundaria: #2c2c2c;
    --backgroundHover: #666666;
    --letra: #ffffff;
    --letraEscura: #000000;
}

/* GLOBAIS */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    scroll-behavior: smooth;
    word-wrap: break-word;
}

body {
    color: var(--letra);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

li {
    list-style-position: inside;
    margin: 15px 0px;
}
/* FINAL GLOBAIS */



/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    color: var(--letra);
    z-index: 100;
    transition: all 0.3s;
    height: 60px;
}

header nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0px;
    color: var(--letra);
    height: 100%;
}

header nav a {
    font-weight: 400;
    text-decoration: none;
    color: var(--letra);
    margin: 0px 10px;
    padding: 15px 15px 7px 15px;
    transition: all 0.3s;
    border-bottom: solid 3px transparent;

}
header nav a:hover  {
    transform: scale(100%);
    cursor: pointer;
    border-bottom: solid 3px white;
}


header nav a:first-child {
    margin-right: auto;
    border: none;
}

.iconHeader {
    filter: invert(1);
    border-radius: 20px;
    width: 24px;
}

header nav a img {
    max-width: 100px;
    max-height: 30px;
}


header.scrolled {
    background-color: transparent; 
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px) saturate(100%) brightness(40%) contrast(100%);
    backdrop-filter: blur(10px) saturate(100%) brightness(40%) contrast(100%);
}
/* FINAL HEADER */



/* MENU DE DROPDOWN */
header nav li {
    list-style-type: none;
}

.dropMenu {
    position: absolute;
    right: 0;
    display: none;
}

.dropMenu a:hover{
    background-color: #2c2c2c;
    border-color: transparent;
    border-radius: 8px;
}

.dropDown a {
    display: block;
    transition: 0.3s;
    margin: 0px;
    width: 100%;
    padding: 15px 15px 7px 15px;
}

.dropDown:hover .dropMenu {
    display: block;
    justify-content: end;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    width: auto;
    text-align: left;
}

/* FINAL MENU DE DROPDOWN */



/* RODAPÉ */
footer {
    background-color: var(--backgroundHeader);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: row;
}

footer p {
    padding: 20px;
    font-size: 0.8vw;
}

footer a img {
    max-width: 100px;
    max-height: 30px;
    padding: 3px 5px;
    width: auto;
    height: auto;
    margin: 10px;
    filter: invert(100%);
    border-radius: 5px;
    transition: 0.3s;
}

footer a img:hover{
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.329));
    filter: invert(100%);
}
/* FINAL RODAPÉ */



/* SCROLL BAR */
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: var(--backgroundHeader);
}

body::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 20px;
    border: 3px solid hsla(0, 0%, 0%, 0.753);
}
/* FINAL SCROLL BAR */