/* ─── HERO ───────────────────────────────────── */
.suporte-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 3rem 5rem;
}

.suporte-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(211, 0, 0, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0000 60%, #0a0a0a 100%);
}

.suporte-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(211, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.suporte-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.suporte-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  border: var(--border-red);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  background: rgba(211, 0, 0, 0.05);
}

.suporte-hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  letter-spacing: 6px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 0 60px rgba(211, 0, 0, 0.15);
}

.suporte-hero__title span {
  color: var(--red);
  text-shadow: 0 0 30px var(--red-glow);
}

.suporte-hero__sub {
  color: var(--white-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.suporte-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.suporte-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.suporte-hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--red);
  text-shadow: 0 0 14px var(--red-glow);
  line-height: 1;
}

.suporte-hero__stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
}

.suporte-hero__stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(211,0,0,0.4), transparent);
}

/* ─── FAQ ────────────────────────────────────── */
.faq {
  padding: 5rem 3rem 6rem;
  background: var(--black);
}

.faq__inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq__subtitle {
  color: var(--white-muted);
  font-size: 1rem;
  margin-top: 0.6rem;
  margin-bottom: 2rem;
}

/* ─── FILTER TABS ────────────────────────────── */
.faq__tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.faq__tab {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  border: var(--border-white);
  color: var(--white-muted);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.faq__tab:hover {
  border-color: rgba(211, 0, 0, 0.4);
  color: var(--white);
}

.faq__tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 16px var(--red-glow);
}

/* ─── FAQ LIST ───────────────────────────────── */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq__item {
  background: var(--black-card);
  border: var(--border-white);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq__item.open {
  border-color: rgba(211, 0, 0, 0.35);
}

.faq__item.hidden {
  display: none;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: transparent;
  color: var(--white-dim);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.faq__question:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
}

.faq__item.open .faq__question {
  color: var(--white);
}

.faq__question-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

.faq__question span:nth-child(2) {
  flex: 1;
}

.faq__arrow {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
  transition: transform 0.35s ease;
  display: inline-block;
}

.faq__item.open .faq__arrow {
  transform: rotate(90deg);
}

/* ─── ANSWER ─────────────────────────────────── */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease,
              opacity 0.3s ease;
  opacity: 0;
  border-top: 0px solid transparent;
}

.faq__item.open .faq__answer {
  max-height: 300px;
  opacity: 1;
  border-top: var(--border-white);
}

.faq__answer p {
  padding: 1.3rem 1.5rem 1.5rem 3.5rem;
  color: var(--white-muted);
  font-size: 0.97rem;
  line-height: 1.85;
}

.faq__answer a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.faq__answer a:hover {
  color: var(--red-bright);
}

/* ─── DISCORD SUPPORT ────────────────────────── */
.disc-support {
  padding: 5rem 3rem;
  background: var(--black-mid);
  position: relative;
}

.disc-support::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.disc-support__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.disc-support__desc {
  color: var(--white-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 1.2rem 0 1.8rem;
}

.disc-support__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.disc-support__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white-muted);
  font-size: 0.97rem;
}

.disc-support__list-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 22px;
}

/* ─── DISCORD CARD ───────────────────────────── */
.disc-card {
  background: var(--black-card);
  border: var(--border-white);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.disc-card:hover {
  border-color: rgba(88, 101, 242, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(88, 101, 242, 0.08);
  transform: translateY(-3px);
}

.disc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5865F2, #7289da, #5865F2);
  box-shadow: 0 0 12px rgba(88, 101, 242, 0.6);
}

.disc-card__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.disc-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: var(--border-white);
}

.disc-card__logo {
  width: 48px;
  height: 48px;
  background: #5865F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.4);
}

.disc-card__logo svg {
  width: 26px;
  height: 26px;
}

.disc-card__server-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--white);
}

.disc-card__server-sub {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
}

.disc-card__badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00e676;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.disc-card__badge-dot {
  width: 6px;
  height: 6px;
  background: #00e676;
  border-radius: 50%;
  animation: pulseGreen 1.5s infinite;
  box-shadow: 0 0 6px #00e676;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.disc-card__body {
  padding: 1.5rem;
}

.disc-card__body-text {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.disc-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #5865F2;
  color: white;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.disc-card__btn:hover {
  background: #4752c4;
  box-shadow: 0 4px 24px rgba(88, 101, 242, 0.5);
  transform: translateY(-2px);
}

.disc-card__link-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.5rem;
  border-top: var(--border-white);
  background: rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.disc-card__link-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
  white-space: nowrap;
}

.disc-card__link-code {
  font-family: monospace;
  font-size: 0.9rem;
  color: #7289da;
  background: rgba(88, 101, 242, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  border: 1px solid rgba(88, 101, 242, 0.2);
  flex: 1;
  white-space: nowrap;
}

.disc-card__copy {
  margin-left: auto;
}

/* ─── INGAME SUPPORT ─────────────────────────── */
.ingame-support {
  padding: 5rem 3rem;
  background: var(--black);
  position: relative;
}

.ingame-support__inner {
  max-width: 900px;
  margin: 0 auto;
}

.ingame-support__desc {
  color: var(--white-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0.8rem 0 2.5rem;
  max-width: 640px;
}

.ingame-commands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.ingame-command {
  background: var(--black-card);
  border: var(--border-white);
  border-radius: 4px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ingame-command::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.ingame-command:hover::before {
  transform: scaleY(1);
}

.ingame-command:hover {
  border-color: rgba(211, 0, 0, 0.25);
  transform: translateX(4px);
}

.ingame-command__cmd {
  font-family: monospace;
  font-size: 1.05rem;
  color: var(--red);
  background: rgba(211, 0, 0, 0.08);
  border: var(--border-red);
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 0 8px var(--red-glow);
  letter-spacing: 1px;
}

.ingame-command__desc {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ingame-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(211, 0, 0, 0.05);
  border: var(--border-red);
  border-radius: 4px;
  padding: 1.3rem 1.6rem;
}

.ingame-notice__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ingame-notice p {
  color: var(--white-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.ingame-notice strong {
  color: var(--white);
}

/* ─── SUPPORT INFO CARDS ─────────────────────── */
.support-info {
  padding: 5rem 3rem 6rem;
  background: var(--black-mid);
  position: relative;
}

.support-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.support-info__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.support-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.support-info__card {
  background: var(--black-card);
  border: var(--border-white);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.support-info__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red-metal);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  box-shadow: 0 0 8px var(--red);
}

.support-info__card:hover::after {
  transform: scaleX(1);
}

.support-info__card:hover {
  transform: translateY(-4px);
  border-color: rgba(211, 0, 0, 0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.support-info__card-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.support-info__card-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--red);
  text-shadow: 0 0 14px var(--red-glow);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.support-info__card-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.support-info__card-desc {
  color: var(--white-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .support-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .disc-support__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ingame-commands {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .suporte-hero { padding: 8rem 1.5rem 4rem; }
  .faq { padding: 4rem 1.5rem 5rem; }
  .disc-support { padding: 4rem 1.5rem; }
  .ingame-support { padding: 4rem 1.5rem; }
  .support-info { padding: 4rem 1.5rem 5rem; }
  .suporte-hero__stat-divider { display: none; }
  .suporte-hero__stats { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .support-info__grid {
    grid-template-columns: 1fr;
  }
  .disc-card__link-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .disc-card__copy {
    margin-left: 0;
  }
}

/* 📱 MOBILE */
@media (max-width: 480px) {
  .section-title {
    font-size: 2.1rem;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    padding: 0 10px; /* evita colar nas bordas */
  }

  .section-title span {
    text-shadow: 0 0 20px var(--red-glow); /* reduz glow pra não estourar */
  }
}