.wrapper-footer {
  background-color: var(--dark-blue);
  height: auto;
  color: white;
  padding: 10rem 0;
}

.wrapper-footer h1 {
  font-size: 25px;
  font-weight: bold;
}

.wrapper-footer h2 {
  font-size: 20px;
}

.wrapper-footer p {
  font-size: 18px;
  text-align: justify;
  /* opacity: 50%; */
}

.wrapper-footer a {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  /* opacity: 50%; */
}

.line-follow {
  position: relative;
}

.pointer-bigger::before {
  content: "\2022";
  border-radius: 100%;
  position: absolute;
  color: var(--orange);
  transform: translate(-26px, -7px);
  font-size: 35px;
}

.pointer-smaller::before {
  content: "\2022";
  border-radius: 100%;
  position: absolute;
  color: var(--orange);
  transform: translateX(-23px);
  font-size: 25px;
}

.pointer-iso-sanko::before {
  content: "\2022";
  border-radius: 100%;
  position: absolute;
  color: var(--orange);
  transform: translate(-23px, 10px);
  font-size: 25px;
}

.line-follow::before {
  content: "";
  background-color: var(--orange);
  height: 100%;
  width: 1px;
  position: absolute;
  transform: translate(-16px, 10px);
}

.line-follow:nth-child(3)::before {
  content: "";
  background-color: var(--orange);
  height: 337px;
  width: 1px;
  position: absolute;
  transform: translate(-16px, 10px);
}

.contact-wrapper p {
  opacity: 1;
}

.redes-footer {
  width: 60%;
}

.btn-paginas {
  font-size: 20px;
  font-weight: bold;
  background-color: var(--light-blue);
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  border: none;
  color: var(--white);
}

.pages-content a {
  font-size: 18px;
  opacity: 1;
  color: var(--white);
}

#PagesCollapse {
  width: 100%;
  background: var(--light-blue);
  border-radius: 10px;
}

.copyright-content {
  background-color: var(--light-blue);
  padding: 1.5rem 0;
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
}

.copyright-content p {
  margin: 0;
  text-align: start;
}

.footer-logo {
  width: 100px;
  height: auto;
}

@media screen and (max-width: 989px) {
  .line-follow:first-child::before {
    content: "";
    background-color: var(--orange);
    height: 100%;
    width: 1px;
    position: absolute;
    transform: translate(112px, 10px);
  }
}

@media screen and (max-width: 767px) {
  .line-follow::before {
    display: none;
  }
  .pointer-iso-sanko::before {
    display: none;
  }
  .pointer-bigger::before {
    display: none;
  }

  .pointer-smaller::before {
    display: none;
  }

  .redes-footer {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .line-follow:nth-child(1)::before {
    content: "";
    background-color: var(--orange);
    height: 100%;
    width: 1px;
    position: absolute;
    transform: translate(112px, 10px);
  }

  .line-follow p {
    text-align: center;
  }

  .copyright-content p {
    margin-bottom: 2rem;
    text-align: center;
  }

  .wrapper-footer {
    padding: 4rem 0;
  }
}


/* ////////////////////////////////////////////////////////////// */

/* === Redes sociais do rodapé (OK) === */
.redes-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease,
                box-shadow .25s ease,
                background-color .25s ease;
}

.redes-footer a:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 4px 14px rgba(255, 165, 0, 0.35);
}


/* ////////////////////////////////////////////////////////// */
/* ===== Animação premium SOMENTE na área de Páginas ===== */

/* Desktop: dentro da coluna de páginas */
.col-lg-2 .line-follow a,
/* Mobile: dentro da área collapse */
.pages-content a {
    position: relative;
    display: inline-block;
    padding: 2px 0;
    transition: color .25s ease, transform .25s ease;
}

/* Hover refinado */
.col-lg-2 .line-follow a:hover,
.pages-content a:hover {
    color: #F28C1E;
    transform: translateY(-2px);
}

/* Underline animado */
.col-lg-2 .line-follow a::after,
.pages-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #F28C1E;
    transition: width .25s ease;
    border-radius: 2px;
}

.col-lg-2 .line-follow a:hover::after,
.pages-content a:hover::after {
    width: 100%;
}
