/* ================= FOOTER MODERNO ================= */
.footer-modern {
  width: 100%;
  background: #000000;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* FUNDO SUTIL */
.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,204,102,0.06), transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(255,204,102,0.04), transparent 50%);
  z-index: 0;
}

/* ================= IMAGEM DECORATIVA ================= */
.footer-image { 
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;

  pointer-events: none;
  z-index: 1;

  opacity: 0.08;              /* 🔥 marca d’água */
}

.footer-image img {
  width: 100%;
  height: auto;
  display: block;

  filter: grayscale(100%) blur(1px); /* suaviza ainda mais */
}


/* ================= CONTEÚDO PRINCIPAL ================= */
.footer-inner {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 110px 0 160px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;

  position: relative;
  z-index: 2;
}

/* ================= TEXTO / LOGO ================= */
.footer-main h2 {
  font-size: 42px;              /* 🔥 logo menor */
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #ffcc66;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #dddddd;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 14px;
  letter-spacing: 2px;
  color: #aaaaaa;
}

/* ================= REDES SOCIAIS ================= */
.footer-social {
  display: flex;
  gap: 22px;
}

.footer-social a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.footer-social a:hover {
  background: #ffcc66;
  color: #000000;
  border-color: #ffcc66;
  transform: translateY(-6px);
}

/* ================= BASE / DIREITOS ================= */
.footer-bottom {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 22px 0;

  display: flex;
  justify-content: space-between;   /* 🔥 esquerda / direita */
  align-items: center;

  font-size: 13px;
  color: #777777;
  position: relative;
  z-index: 2;
}

/* DIVISOR FULL WIDTH */
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ================= CRÉDITO ================= */
.footer-credit {
  display: flex;
  gap: 4px;
}

.footer-credit a {
  color: #777777;
  text-decoration: none;
  transition: color .3s ease, text-shadow .3s ease;
}

/* hover APENAS no DR WEB */
.footer-credit a:hover {
  color: #ffcc66;
  text-shadow: 0 0 10px rgba(255,204,102,.55);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 90px 0 140px;
    gap: 40px;
  }

  .footer-main h2 {
    font-size: 38px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .footer-image {
    max-width: 90%;
  }
}
