/* =========================
   FOOTER
========================= */
.site-footer{
  padding: 44px 0 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-grid .footer-col:nth-child(2){
  justify-self: center;
  text-align: center;
}

.footer-grid .footer-col:nth-child(2) .footer-social{
  justify-content: center;
}

.footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  min-width: 0;
}

.footer-brand-name{
  font-weight: 800;
  color: #0f172a;
  font-size: 1.3rem;
}

.footer-desc{
  margin: 0;
  max-width: 280px;
  color: rgba(37, 99, 235, 0.65);
  line-height: 1.45;
  font-size: 0.95rem;
}

.footer-title{
  margin: 0 0 10px 0;
  font-weight: 800;
  color: #0f172a;
  font-size: 1rem;
}

.footer-social{
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social-btn{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(37, 99, 235, 0.85);
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
}

.footer-social-btn:hover{
  transform: translateY(-1px);
  opacity: .95;
  background: rgb(30, 75, 170); /* azul */
  color: #fff;
  border-color: rgb(30, 75, 170);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.20);
}

.tiktok-icon{
  width: 18px;
  height: 18px;
  display: block;
}

.footer-legal{
  justify-self: end;
  text-align: right;
}

.footer-legal-links{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-link-btn{
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(37, 99, 235, 0.65);
  font-weight: 500;
  text-decoration: none;
}

.footer-link-btn:hover{
  color: rgba(37, 99, 235, 0.95);
}

.footer-bottom{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  text-align: center;
  color: rgba(37, 99, 235, 0.55);
  font-size: 0.9rem;
}

.a{
  display: flex; 
  align-items: center; 
  gap: 10px; 
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-legal{
    justify-self: start;
    text-align: left;
  }
  .footer-legal-links{
    align-items: flex-start;
  }
}

.site-footer .brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}


.footer-link-worker{
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}