:root{
  /* Paleta AyudaExpress */
  --brand:#1f3f93;
  --brand-600:#18337a;
  --brand-700:#102761;

  --accent:#7ac943;
  --accent-600:#63b02f;
  --accent-700:#4f9726;

  /* Motion */
  --ease-out: cubic-bezier(.22,1,.36,1);
  --dur-1: 120ms;
  --dur-2: 220ms;
}

/* =======================
   FOOTER V2 (Reusable)
   ======================= */

.footer.footer-v2{
  position: relative;
  color:#fff;
  overflow:hidden;
  background: linear-gradient(180deg, #062a63 0%, #021a45 100%);
  padding: 0; /* controlado por secciones internas */
}

/* brillo sutil */
.footer.footer-v2::before{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  filter: blur(90px);
  opacity:.35;
  background:
    radial-gradient(35% 35% at 20% 10%, rgba(255,255,255,.12), transparent 65%),
    radial-gradient(40% 40% at 80% 25%, rgba(122,201,67,.12), transparent 68%),
    radial-gradient(35% 35% at 50% 85%, rgba(31,63,147,.30), transparent 70%);
}

.footer-v2 a{ color:#fff; text-decoration:none; }
.footer-v2 a:hover{ text-decoration:underline; }

.footer-v2 .footer-shell{
  position: relative;
  z-index: 1;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

/* Top bar */
.footer-v2 .footer-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 26px 0 18px;
}

.footer-v2 .callbar{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
  font-weight: 800;
  letter-spacing: .01em;
}

.footer-v2 .callbar a{
  color:#fff;
  text-decoration:none;
  opacity:.95;
}
.footer-v2 .callbar a:hover{ opacity:1; text-decoration:underline; }

.footer-v2 .callbar .sep{ opacity:.55; }

/* Social */
.footer-v2 .socialbar{
  display:flex;
  align-items:center;
  gap: 14px;
}
.footer-v2 .socialbar a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
  opacity:.92;
  transition: transform var(--dur-2) var(--ease-out), background-color var(--dur-2) var(--ease-out), opacity var(--dur-1);
}
.footer-v2 .socialbar a:hover{
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
}

/* Main */
.footer-v2 .footer-main{
  padding: 18px 0 34px;
}

.footer-v2 .footer-cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items:start;
}

.footer-v2 .footer-title{
  font-weight: 900;
  letter-spacing: -.01em;
  margin: 0 0 .6rem;
  opacity: .95;
}

.footer-v2 .footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.footer-v2 .footer-list a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 700;
  line-height: 1.3;
}
.footer-v2 .footer-list a:hover{
  color:#fff;
  text-decoration: underline;
}

.footer-v2 .right{ text-align:right; }
.footer-v2 .right .footer-list{ align-items:flex-end; }

/* Divider */
.footer-v2 .footer-divider{
  border:0;
  height:1px;
  background: rgba(255,255,255,.18);
  margin: 22px 0 18px;
}

/* Bottom */
.footer-v2 .footer-bottom{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  padding: 18px 0 28px;
  color: rgba(255,255,255,.80);
}

.footer-v2 .footer-bottom-left{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.footer-v2 .footer-bottom-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.footer-v2 .footer-bottom-links a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 700;
}
.footer-v2 .footer-bottom-links a:hover{ color:#fff; text-decoration:underline; }

.footer-v2 .footer-copy{
  margin-top: 10px;
  font-size: .95rem;
  opacity: .95;
}

/* Badges */
.footer-v2 .footer-badges{
  display:flex;
  align-items:flex-end;
  gap: 12px;
}

.footer-v2 .badge-card{
  width: 88px;
  height: 62px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  overflow:hidden;
}

.footer-v2 .badge-card img{
  max-width: 78%;
  max-height: 70%;
  opacity:.95;
}

/* Responsive */
@media (max-width: 992px){
  .footer-v2 .footer-cols{ grid-template-columns: 1fr; }
  .footer-v2 .right{ text-align:left; }
  .footer-v2 .right .footer-list{ align-items:flex-start; }

  .footer-v2 .footer-topbar{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-v2 .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-v2 .footer-badges{ align-items:flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .footer-v2 .socialbar a{ transition:none!important; }
}
