.footer{
  margin-top: 60px;
  background: rgba(6,10,24,.78);
  border-top: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -10px 40px rgba(0,0,0,.18);
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 38px 18px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

/* marca */
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
}

.footer-logo-img{
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 999px;
  overflow: hidden;
  box-shadow:
    0 10px 18px rgba(0,0,0,.25),
    0 0 0 1px rgba(255,255,255,.10);
  background:#fff;
}

.footer-logo-text{
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer-logo-text b{
  color: #7c3aed;
}

.footer-desc{
  margin-top: 12px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.65;
  max-width: 420px;
}

/* badges */
.footer-badges{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pill{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* colunas */
.footer-title{
  color:#fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-links{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact-item,
.footer-bottom a{
  color: rgba(203,213,245,.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color .15s ease, transform .15s ease, opacity .15s ease;
}

.footer-links a:hover,
.footer-contact-item:hover,
.footer-bottom a:hover{
  color:#fff;
  transform: translateY(-1px);
}

.footer-contact{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.footer-note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.18);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  line-height: 1.5;
}

/* barra final */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(2,6,23,.62);
}

.footer-bottom-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  text-align:center;
  line-height: 1.5;
}

.footer-dot{
  opacity: .5;
}

/* responsivo */
@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-desc{
    max-width: none;
  }

  .footer-bottom-inner{
    flex-direction: column;
    gap: 6px;
  }

  .footer-dot{
    display:none;
  }
}

/* =========================================================
   MELHORIAS VISUAIS PARA SEO / CONFIANÇA
   ========================================================= */

.footer .footer-links a,
.footer .footer-contact-item{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
}

.footer .footer-links a::before{
  content: "•";
  color: rgba(251,191,36,.92);
  margin-right: 8px;
  font-weight: 900;
}

.footer .footer-contact-item::before{
  content: "•";
  color: rgba(124,58,237,.92);
  margin-right: 8px;
  font-weight: 900;
}

.footer .footer-links a:hover::before,
.footer .footer-contact-item:hover::before{
  color: #fff;
}

.footer .footer-title{
  position: relative;
  padding-bottom: 8px;
}

.footer .footer-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #fbbf24);
  opacity: .95;
}

.footer .footer-bottom a{
  font-weight: 700;
}

@media (max-width: 900px){
  .footer .footer-title::after{
    width: 36px;
  }
}