/*************************************
*           Footer                   *
**************************************/
footer {
  position: relative;
  width: 100%;
  padding: 1.5rem 1rem;
  min-height: auto;
  background-color: var(--background-section-footer);
  color: var(--color-footer-text);
}

.footer-container ul li {
  text-align: center;
  font-size: 0.775rem;
}

.footer-container ul li a {
  text-transform: capitalize;
  color: var(--color-footer-text);
}

/**********************
*   SCROLL BTN UP     *
***********************/
.bton {
  background-color: #e66e53;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: -60px;
  right: 20px;
  opacity: 0;
  transition: bottom 0.4s ease, opacity 0.4s ease;
  z-index: 1000;
}

.bton.active {
  bottom: 20px;
  opacity: 1;
  box-shadow: rgb(14 30 37 / 0.12) 0 2px 4px 0,
    rgb(14 30 37 / 0.32) 0 2px 16px 0;
}

.icone {
  width: 20px;
}

.bton svg {
  fill: var(--bg-color-bg-up);
  height: auto;
  width: 40px;
}

/*****************************
*           CHAT             *
******************************/
.chat-icon {
  width: 80px;
  height: 80px;
  display: inline-block;
  position: fixed;
  bottom: 25px;
  right: 20px;
  opacity: 0.9;
  z-index: 100;
  overflow: hidden;
  transition: transform 0.3s ease, bottom 0.4s ease, opacity 0.4s ease;
}

.chat-icon:hover {
  transform: scale(1.1);
}

.chat-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.75s ease;
}

.chat-icon:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.chat-icon svg {
  fill: var(--bg-color-bg-up);
  width: 60px;
  height: auto;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 480px) {
  .chat-icon {
    display: none;
  }
}
