@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: #000;
  --first-color-alt: #000;
  --title-color: #ffffff;
  --nav_logo: #ffffff;
  --text-color: #0b805e;
  --nav_link: #001;
  --body-color: #001;
  --container-color: #0b805e;

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --tiny-font-size: .625rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: white;
}

a:active {
  text-decoration: none;
}

ul{
  padding-inline-start: 0px;
}

/* Merdas importantes para a NavBar */

.nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: 5rem;
    display: grid;
    align-content: center;
    border-radius: 1.25rem 1.25rem 0 0;
    transition: .4s;
  }
.li:hover {
  background-color: red;
}


.nav__list {
    display: flex;
    justify-content: center;
    column-gap: 1rem;
    list-style: none;
  }

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--nav_link);
  font-weight: 60;
}
.nav__link_ativo {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: #ffffff;
  font-weight: 900;    
}

.nav__name {
  font-size: var(--normal-font-size);
}

.publicidade {
  position: relative;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
