/* =========================================================
   FOOTER PRIMENET — Estilo BrisNet, delicado
   ========================================================= */

.footer-prime {
  /* MESMO FUNDO DO DESTAQUE / TIRA O AZULADO */
  background: linear-gradient(180deg, #4B0053 0%, #2b0031 100%);
  padding: 40px 0 32px;
  color: #eee6ff;
  border-top: 1px solid #3b003f;
  border-bottom: 1px solid #3b003f;
}

.footer-prime .container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* --------------------
   BLOCO TOP (4 cards)
--------------------- */
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
  align-items: center;
}

.ft-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ft-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.4px solid rgba(244, 232, 255, 0.8);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-icon svg {
  width: 22px;
  height: 22px;
}

.ft-text {
  margin: 0;
  line-height: 1.25;
}

.ft-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(248, 250, 252, 0.75);
}

.ft-value {
  display: block;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.9rem;
}

/* linha divisória */
.footer-line {
  border: 0;
  border-top: 1px solid rgba(248, 250, 252, 0.16);
  margin: 22px 0;
}

/* --------------------
   BLOCO CENTRAL
--------------------- */
.footer-mid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}

.footer-logo-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.footer-slogan {
  margin: 0;
  color: rgba(241, 245, 255, 0.8);
  font-size: 0.9rem;
}

/* Títulos */
.footer-social h4,
.footer-local h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

/* Redes sociais */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.social-icons a svg {
  width: 18px;
  height: 18px;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
}

/* Localização */
.footer-local p {
  margin: 0;
  color: rgba(237, 233, 254, 0.9);
  line-height: 1.35;
  font-size: 0.9rem;
}

/* --------------------
   BOTTOM
--------------------- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: rgba(237, 233, 254, 0.85);
  font-size: 0.82rem;
}

.footer-top-btn {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  color: #fff;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.footer-top-btn:hover {
  background: rgba(15, 23, 42, 0.32);
  transform: translateY(-1px);
}

/* --------------------
   RESPONSIVO
--------------------- */
@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-mid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .footer-prime {
    padding: 22px 0 18px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
