/* ═══════════════════════════════════════════════════
   OwnerSeg — Suporte Page Styles
   ═══════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────── */
.suporte-hero {
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  color: var(--white);
  background: linear-gradient(160deg, rgba(17,24,39,.92) 40%, rgba(49,72,156,.85) 100%);
}

.suporte-hero .container {
  position: relative;
  z-index: 2;
}

.suporte-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(153,244,115,.15);
  border: 1px solid rgba(153,244,115,.35);
  color: var(--green);
  font-family: 'Sora', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: .35rem 1rem;
  margin-bottom: 1.2rem;
}

.suporte-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .8rem;
}
.suporte-hero h1 span { color: var(--green); }

.suporte-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CHANNEL CARDS ───────────────────────────── */
.suporte-channels {
  padding: 70px 0 90px;
}

.suporte-card {
  background: var(--white);
  border: 1px solid #e5e9f2;
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.suporte-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.suporte-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(49,72,156,.12);
  border-color: #c5ceee;
  color: var(--dark);
}
.suporte-card:hover::before { opacity: 1; }

.suporte-card-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  transition: transform .25s;
}
.suporte-card:hover .suporte-card-icon { transform: scale(1.08); }

.suporte-icon-jira {
  background: linear-gradient(135deg, #0052cc 0%, #2684ff 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,82,204,.3);
}
.suporte-icon-whatsapp {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.suporte-icon-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #2ca5e0 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,136,204,.3);
}
.suporte-icon-email {
  background: linear-gradient(135deg, var(--blue) 0%, #4a63c0 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(49,72,156,.3);
}

.suporte-card h5 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.suporte-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.suporte-card-link {
  font-family: 'Sora', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s;
  position: relative;
  z-index: 1;
}
.suporte-card:hover .suporte-card-link { color: var(--blue-dark); }

/* ── LOGIN CARD ──────────────────────────────── */
.suporte-login {
  padding: 0 0 90px;
}

.suporte-login-card {
  background: linear-gradient(130deg, var(--blue) 0%, #243a8a 100%);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(49,72,156,.2);
}
.suporte-login-card::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(153,244,115,.08);
  right: -80px; top: -80px;
  pointer-events: none;
}
.suporte-login-card::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(153,244,115,.06);
  left: -50px; bottom: -60px;
  pointer-events: none;
}

.suporte-login-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 1.8rem;
  color: var(--green);
}

.suporte-login-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .6rem;
}

.suporte-login-card p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  max-width: 420px;
  margin: 0 auto 1.8rem;
  line-height: 1.7;
}

.btn-suporte-login {
  background: var(--green);
  color: var(--blue);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  border: none;
  border-radius: 99px;
  padding: .85rem 2.4rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(153,244,115,.3);
  position: relative;
  z-index: 1;
}
.btn-suporte-login:hover {
  background: #b5ff85;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(153,244,115,.45);
  color: var(--blue);
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
  .suporte-hero { padding: 120px 0 60px; }
  .suporte-channels { padding: 40px 0 60px; }
  .suporte-card { padding: 1.8rem 1.4rem; }
  .suporte-login-card { padding: 2.5rem 1.5rem; }
  .suporte-login { padding: 0 0 60px; }
}
