/* =========================
   FOOTER PRO (LIMPIO)
   ========================= */

.footer-pro{
  background:#0b1220;
  color:rgba(226,232,240,.85);
  padding:56px 0 0;
  margin-top:48px;
  border-top:1px solid rgba(255,255,255,.08);
}

/* ✅ Footer más angosto (quita el espacio grande) */
.footer-pro .wrap{
  width:min(980px, calc(100% - 32px));
  margin:0 auto;
}

/* ✅ Grid PRO: 3 columnas balanceadas */
.footer-pro .footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr;
  gap:28px;
  padding-bottom:40px;
  align-items:start;
}

/* Responsive */
@media (max-width: 980px){
  .footer-pro .wrap{ width:min(760px, calc(100% - 32px)); }
  .footer-pro .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 640px){
  .footer-pro .wrap{ width:min(560px, calc(100% - 32px)); }
  .footer-pro .footer-grid{ grid-template-columns:1fr; }
}

/* Headings */
.footer-title{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
  color:#fff;
  letter-spacing:.2px;
}
.footer-heading{
  margin:0 0 14px;
  font-size:13px;
  font-weight:900;
  color:#fff;
  letter-spacing:.4px;
  text-transform:uppercase;
}

/* Brand row */
.footer-brand{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.footer-logo{
  width:44px;
  height:44px;
  border-radius:12px;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.footer-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.footer-logo-fallback{
  font-weight:900;
  color:#fff;
  letter-spacing:.5px;
}

/* Text */
.footer-text{
  margin:0;
  line-height:1.7;
  font-size:13px;
  color:rgba(226,232,240,.75);
}

/* Links */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.footer-links a{
  color:rgba(226,232,240,.80);
  text-decoration:none;
  font-size:13px;
  transition:.15s ease;
  display:inline-flex;
}
.footer-links a:hover{
  color:#38bdf8;
  transform:translateX(2px);
}

/* Contact */
.footer-contact{
  display:grid;
  gap:12px;
  margin-top:10px;
}
.footer-item{display:grid;gap:2px;}
.footer-label{
  font-size:11px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:rgba(226,232,240,.55);
}
.footer-item a{
  color:rgba(226,232,240,.85);
  text-decoration:none;
}
.footer-item a:hover{color:#38bdf8;}

/* ✅ Social (igual estilo header) */
.footer-pro .social{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.footer-pro .social a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#0b2a6f;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 4px 10px rgba(0,0,0,.22);
  transition:.22s;
  text-decoration:none;
  position:relative;
  overflow:hidden;
}
.footer-pro .social a:hover{
  transform:translateY(-2px);
  background:#2563eb;
}
.footer-pro .social svg{
  width:16px;
  height:16px;
  fill:#fff;
  position:relative;
  z-index:2;
}
.footer-pro .social a.ig{background:#0b2a6f;}
.footer-pro .social a.ig::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 100%, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 75%, #4f5bd5 100%);
  opacity:.95;
  transform:rotate(12deg);
}
.footer-pro .social a.is-disabled{
  opacity:.55;
  filter:saturate(.7);
  cursor:default;
  transform:none !important;
}
.footer-pro .social a.is-disabled:hover{background:#0b2a6f;}

/* Bottom bar */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:16px 0;
  background:rgba(0,0,0,.10);
}
.footer-bottom-inner{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  font-size:12px;
  color:rgba(226,232,240,.70);
}
.footer-dot{opacity:.5;}
/* ✅ Logo footer completo (como header) */
.footer-logo{
  width: 78px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.footer-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;      /* ✅ antes era cover */
  object-position: center;
  padding: 6px;             /* opcional: margen interno elegante */
  display:block;
}
