.footer {
  position: relative;
  background: url('footer-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
}

/* Overlay escuro pra legibilidade */
.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  top: 0;
  left: 0;
  z-index: 0;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Topo */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 90px;
}

/* Botão Whats */
.btn-whats {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

.btn-whats i {
  font-size: 18px;
}

/* Divisor */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 30px 0;
}

/* Conteúdo */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
}

.footer-col h3 {
  color: #d2a679; /* marrom claro */
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Social */
.social {
  margin-top: 10px;
}

.small {
  padding: 6px 12px;
  font-size: 14px;
}

/* Botão Insta */
.btn-insta {
  background: #d2a679;
  color: white;
  border-radius: 20px;
  padding: 6px 12px;
  text-decoration: none;
}

/* Bottom */
.footer-bottom {
  text-align: right;
  font-size: 14px;
  color: #ccc;
}

.social {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  position: relative; /* necessário */
  border-radius: 50%;
  color: white;
  font-size: 18px;
  text-decoration: none;
}

/* FORÇA CENTRALIZAÇÃO ABSOLUTA */
.social-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.social-icon.whatsapp {
  background: #25D366;
}

.social-icon.instagram {
  background: #d2a679;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.info-icon {
  color: #d2a679;
  margin-right: 8px;
}

/* =========================
   FOOTER RESPONSIVO
========================= */
@media (max-width: 768px) {

  .footer {
    padding: 35px 0;
    text-align: center;
  }

  .footer .container {
    padding: 0 18px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo img {
    height: 75px;
  }

  .btn-whats {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    box-sizing: border-box;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col h3 {
    margin-bottom: 12px;
  }

  .footer-col p {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-col a {
    margin-bottom: 10px;
  }

  .social {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    font-size: 13px;
  }

  .divider {
    margin: 25px 0;
  }
}