.ev-footer {
  order: 4;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(33,122,141,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.48));
  box-shadow: 0 18px 48px rgba(35,43,43,.10);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
}
html[data-theme="dark"] .ev-footer {
  background: linear-gradient(145deg, rgba(18,46,54,.80), rgba(14,34,40,.56));
  border-color: rgba(160,220,230,.16);
}
.ev-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}
.ev-footer__text h2 {
  margin: 0;
  color: #145665;
  font-size: 17px;
  line-height: 1.6;
}
html[data-theme="dark"] .ev-footer__text h2 { color: #D8F9FF; }
.ev-footer__text p {
  margin: 4px 0 0;
  color: #657274;
  font-size: 13px;
  line-height: 1.8;
}
html[data-theme="dark"] .ev-footer__text p { color: #B8C9CC; }
.ev-social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}
.ev-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(35,43,43,.10);
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}
.ev-social-link:hover,
.ev-social-link:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(35,43,43,.14);
  outline: none;
}
.ev-social-link svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
  flex: 0 0 auto;
}
.ev-social-link--linkedin { background: #0A66C2; }
.ev-social-link--facebook { background: #1877F2; }
.ev-social-link--x { background: #111111; }
.ev-social-link--instagram { background: linear-gradient(135deg,#F58529,#DD2A7B,#8134AF,#515BD4); }
.ev-social-link--email { background: #217A8D; }
.ev-social-link--youtube { background: #FF0000; }
.ev-social-link--tiktok { background: linear-gradient(135deg,#111 0%,#111 45%,#25F4EE 45%,#FE2C55 100%); }
.ev-social-link--whatsapp { background: #25D366; color: #083B1A; }
.ev-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(33,122,141,.20);
  color: #657274;
  font-size: 12px;
  line-height: 1.7;
}
html[data-theme="dark"] .ev-footer__meta { color: #B8C9CC; border-top-color: rgba(160,220,230,.16); }
.ev-footer__home {
  color: #145665;
  font-weight: 900;
  text-decoration: none;
}
.ev-footer__home:hover,
.ev-footer__home:focus-visible { text-decoration: underline; outline: none; }
html[data-theme="dark"] .ev-footer__home { color: #D8F9FF; }
@media (min-width: 860px) {
  .ev-footer__inner {
    grid-template-columns: minmax(240px, .75fr) 1fr;
  }
  .ev-social-grid {
    justify-content: flex-end;
  }
}
@media (max-width: 520px) {
  .ev-footer {
    padding: 14px;
    border-radius: 20px;
  }
  .ev-social-grid {
    gap: 7px;
  }
  .ev-social-link {
    min-height: 36px;
    padding: 0 10px;
    font-size: 11px;
  }
  .ev-social-link svg {
    width: 15px;
    height: 15px;
  }
}
