#site-footer {
    width: 100vw;
    clear: both;
    display: block;
    background-color: #272727;
    color: #eee;
    color: #eee;
    padding: 45px 0px 10px 0px;
    text-align: center;
    font-family: sans-serif;
    box-sizing: border-box;
    margin-left: calc(-50vw + 50%);
}

.footer-social {
    margin: 0;
    padding: 0;
}

.footer-social .social-line {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: #272727;
}

.footer-social .line {
    flex: 1;
    height: 1px;
    border: none;
    border-top: 1px solid #ccc;
    margin: 0;
}

.footer-social .social-icons {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    background-color: #272727;
}

.footer-social .social-icons a img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.footer-social .social-icons a:hover img {
    transform: scale(1.1);
}

.footer-social a {
    color: #fff;
    transition: 0.3s;
    display: flex;
}

.footer-social a:hover {
    color: #1da1f2;
}

.footer-contact {
    margin-top: 40px;
    letter-spacing: 3.5px;
}

.footer-contact h3 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
  
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}
.contact-info p:hover img {
    transform: scale(1.1);
}

.contact-info p {
    margin: 5px 0;
}

.privacidade {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    margin-top: 30px;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
}
.privacidade:hover {
    color: #f2d91d;
}

.footer-address {
    margin-top: 40px;
    margin-top: 45px;
    font-size: 14px;
    letter-spacing: 3px;
}

.copyright {
    margin-top: 40px;
    margin-top: 45px;
    font-size: 15px;
}

/* Responsividade */
@media (max-width: 1024px) {
  .contact-info {
    flex-direction: column;
    gap: 15px;
  }

  .footer-social .social-icons {
    gap: 16px;
  }

  .footer-address {
    font-size: 13px;
    padding: 0 15px;
  }
  .copyright {
    font-size: 15px;
  }
  .contact-info img {
        width: 22px;
        height: 22px;
  }
}

@media (max-width: 480px) {
  #site-footer {
      padding: 30px 15px;
  }

  .footer-contact h3 {
      font-size: 14px;
      margin-bottom: 15px;
  }

  .contact-info {
      flex-direction: column;
      gap: 15px;
  }

  .contact-info p {
      font-size: 13px;
      letter-spacing: 1px;
  }

  .footer-address {
      font-size: 12px;
      letter-spacing: 1.5px;
      padding: 0 10px;
  }
  .copyright {
    font-size: 13px;
  }

  .footer-social .social-icons {
      gap: 14px;
      padding: 0 10px;
  }

  .footer-social .social-icons a img {
      width: 22px;
      height: 22px;
  }

  .contact-info img {
        width: 20px;
        height: 20px;
    }
}