/*::::::::::::::: NAVBAR :::::::::::::::*/

#navbar {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border-bottom: 1px solid gray;
  box-shadow: 0 2px 10px gray;
  padding: 0 2%;
}

/*========= LOGO =========*/

#logo {
  width: 100px;
  height: 100%;
  padding-top: 4px;
}

#logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*======== SOCIAL ========*/

#social {
  height: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#social li {
  margin: 0 0.5rem;
}

#social li a {
  padding: 4px;
  font-size: 1.2rem;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#facebook {
  background-color: #106aff;
}

#facebook:hover {
  box-shadow: 0 0 8px rgba(16, 108, 255, 0.8);
}

#tiktok {
  background-color: rgb(0, 0, 0);
}

#tiktok:hover {
  box-shadow: 0 0 8px rgb(0, 0, 0, 0.8);
}

#youtube {
  background-color: red;
}

#youtube:hover {
  box-shadow: 0 0 8px #ff3131cc;
}

#social #waMsg {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

#waMsg #whatsapp {
  padding: 8px;
  font-size: 30px;
  z-index: inherit;
  background-color: rgb(44, 212, 107);
}

#waMsg #whatsapp:hover {
  box-shadow: 0 0 8px rgb(44, 212, 107, 0.8);
}
