/* ===== FOOTER — SuiteMC ===== */
.suite-footer-wrap {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
  padding-top: 2.5rem;
}

@media (min-width: 640px) {
  .suite-footer-wrap {
    padding-top: 3.5rem;
  }
}

.suite-footer {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, rgb(16 16 16), rgb(10 10 10));
  border-top: 1px solid rgb(255 255 255 / 0.08);
  font-family: 'Montserrat', sans-serif;
}

.suite-footer-accent {
  height: 2px;
  width: 100%;
  background: hsl(var(--primary));
  box-shadow: 0 0 20px hsl(var(--primary) / 0.45);
}

.suite-footer-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 1rem 1rem;
}

@media (min-width: 768px) {
  .suite-footer-inner {
    padding: 2rem 2.5rem 1.25rem;
  }
}

.suite-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .suite-footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: start;
  }
}

/* Brand */
.suite-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  min-width: 0;
}

.suite-footer-logo {
  display: block;
  height: clamp(3.5rem, 7vw, 5rem);
  width: auto;
  max-width: min(260px, 100%);
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}

.suite-footer-brand-name {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.suite-footer-tagline {
  margin: 0;
  max-width: 22rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.6;
  color: rgb(161 161 170);
  text-align: center;
}

.suite-footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.suite-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(255 255 255 / 0.03);
  border-radius: 0;
  transition: border-color 0.2s, background-color 0.2s;
}

.suite-footer-social:hover {
  border-color: hsl(var(--primary) / 0.45);
  background: hsl(var(--primary) / 0.08);
}

.suite-footer-social-icon {
  width: 1rem;
  height: 1rem;
  background: rgb(161 161 170);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  transition: background-color 0.2s;
}

.suite-footer-social:hover .suite-footer-social-icon {
  background: hsl(var(--primary));
}

/* Atalhos */
.suite-footer-section-label {
  margin: 0 0 0.625rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(113 113 122);
}

.suite-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.suite-footer-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0 0.75rem;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(212 212 216);
  background: rgb(255 255 255 / 0.02);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-left: 2px solid hsl(var(--primary) / 0.45);
  border-radius: 0;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
  text-decoration: none;
}

.suite-footer-nav-link:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.04);
  border-color: rgb(255 255 255 / 0.14);
  border-left-color: hsl(var(--primary));
}

.suite-footer-nav-link svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  color: hsl(var(--primary));
}

.suite-footer-mid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Servidor */
.suite-footer-server {
  display: flex;
  align-items: stretch;
  gap: 0.625rem;
  padding: 0.875rem;
  background: rgb(255 255 255 / 0.02);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 0;
}

.suite-footer-server-copy {
  flex: 1;
  min-width: 0;
}

.suite-footer-server-ip {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suite-footer-server-meta {
  margin: 0.25rem 0 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(113 113 122);
}

.suite-footer-copy-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  min-width: 4.25rem;
  padding: 0.5rem 0.625rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: hsl(var(--primary));
  border: 1px solid hsl(var(--primary));
  border-radius: 0;
  cursor: pointer;
  transition: filter 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px -8px hsl(var(--primary) / 0.7);
}

.suite-footer-copy-btn:hover {
  filter: brightness(1.06);
}

.suite-footer-copy-btn.is-copied {
  filter: brightness(0.95);
}

.suite-footer-copy-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* Pagamento */
.suite-footer-pay {
  display: flex;
  flex-direction: column;
}

.suite-footer-pay-card {
  padding: 0.875rem;
  background: rgb(255 255 255 / 0.02);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 0;
}

.suite-footer-secure {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.suite-footer-pay-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.suite-footer-pay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background: #0a0a0a;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0;
}

.suite-footer-pay-icon img {
  width: 1.375rem;
  height: 1.375rem;
  object-fit: contain;
}

.suite-footer-pay-title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.suite-footer-pay-sub {
  margin: 0.125rem 0 0;
  font-size: 10px;
  font-weight: 600;
  color: rgb(113 113 122);
}

.suite-footer-secure svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: hsl(var(--primary));
}

.suite-footer-secure p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  color: rgb(113 113 122);
}

/* Bottom bar */
.suite-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.06);
}

@media (min-width: 768px) {
  .suite-footer-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
}

.suite-footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.suite-footer-legal p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
  color: rgb(113 113 122);
}

.suite-footer-legal p strong {
  color: rgb(161 161 170);
  font-weight: 800;
}

.suite-footer-made {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(82 82 91);
  white-space: nowrap;
}

.suite-footer-made span {
  color: hsl(var(--primary));
}
