/* Logo VI da navbar */
.site-header .logo-vi {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  text-decoration: none;
  line-height: 1;
}

.site-header .vi-text {
  display: inline-block;
  padding-right: .12em;
  color: #ffbd00;
  font-family: var(--font-main, "Helvetica Neue", Arial, sans-serif);
  font-size: clamp(2.35rem, 3vw, 3.35rem);
  font-weight: 900;
  font-style: italic;
  line-height: .8;
  letter-spacing: -.12em;
  background: linear-gradient(135deg, #ffbd00 0%, #ffd24a 48%, #d99d00 100%);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 189, 0, .42));
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), filter .35s ease, background-position .35s ease;
}

.site-header .logo-vi:hover .vi-text,
.site-header .logo-vi:focus-visible .vi-text {
  transform: translateY(-1px) scale(1.06);
  filter: drop-shadow(0 0 18px rgba(255, 189, 0, .68));
  background-position: 100% 50%;
}

/* Rodapé GTA VI Agora */
.site-footer {
  display: flex;
  justify-content: center;
  padding: clamp(72px, 8vw, 108px) 20px 42px;
  color: #fff;
  background: #0b0c10;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-family: var(--font-main, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
}

.site-footer .footer-container {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(54px, 6vw, 76px);
  text-decoration: none;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}

.site-footer .footer-logo img {
  display: block;
  width: min(260px, 58vw);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .3));
}

.site-footer .footer-logo:hover,
.site-footer .footer-logo:focus-visible {
  transform: translateY(-4px) scale(1.025);
  filter: drop-shadow(0 0 18px rgba(255, 189, 0, .24));
}

.site-footer .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(22px, 3vw, 34px);
  margin-bottom: 38px;
}

.site-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #c8c8c8;
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

.site-footer .social-icons svg {
  display: block;
  width: 19px;
  height: 19px;
}

.site-footer .social-icons a:hover,
.site-footer .social-icons a:focus-visible {
  color: #fff;
  opacity: .9;
  transform: translateY(-3px);
}

.site-footer .legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-bottom: clamp(52px, 6vw, 70px);
  text-align: center;
}

.site-footer .legal-links a {
  color: #c9c9c9;
  font-size: clamp(.78rem, 1.2vw, .9rem);
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease;
}

.site-footer .legal-links a:hover,
.site-footer .legal-links a:focus-visible { color: #fff; }

.site-footer .classification-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: min(100%, 660px);
  text-align: left;
}

.site-footer .class-badge {
  flex: none;
  min-width: 88px;
  padding: 10px 9px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .86);
  font-size: .56rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .035em;
  text-align: center;
}

.site-footer .class-text p { margin: 0; color: #fff; font-size: clamp(.86rem, 1.35vw, 1rem); line-height: 1.55; }
.site-footer .class-text strong { font-weight: 750; }
.site-footer .class-text a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.site-footer .footer-signature { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; width: 100%; margin-top: 54px; padding-top: 22px; color: rgba(255, 255, 255, .38); border-top: 1px solid rgba(255, 255, 255, .06); font-size: .68rem; letter-spacing: .08em; text-align: center; text-transform: uppercase; }

@media (max-width: 640px) {
  .site-header .logo-vi { min-width: 54px; }
  .site-header .vi-text { font-size: 2.25rem; }
  .site-footer { padding-left: 18px; padding-right: 18px; }
  .site-footer .footer-logo { margin-bottom: 46px; }
  .site-footer .social-icons { gap: 24px; }
  .site-footer .legal-links { gap: 12px 18px; }
  .site-footer .classification-container { align-items: flex-start; gap: 16px; }
  .site-footer .class-badge { min-width: 74px; padding: 8px 6px; font-size: .48rem; }
  .site-footer .footer-signature { flex-direction: column; }
}
@media (max-width: 430px) { .site-footer .classification-container { flex-direction: column; align-items: center; text-align: center; } .site-footer .class-text { text-align: center; } }
