* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
}

/* FUNDO */
.client-bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.glow-1 {
  width: 380px;
  height: 380px;
  background: rgba(255, 0, 0, 0.14);
  top: 80px;
  left: -80px;
}

.glow-2 {
  width: 420px;
  height: 420px;
  background: rgba(137, 58, 255, 0.10);
  bottom: 0;
  right: -100px;
}

.glow-3 {
  width: 320px;
  height: 320px;
  background: rgba(0, 255, 153, 0.08);
  top: 45%;
  left: 40%;
}

.client-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,0,0,0.11) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(133,80,255,0.10) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0,255,163,0.08) 1.5px, transparent 1.5px);
  background-size: 180px 180px, 260px 260px, 320px 320px, 400px 400px;
  background-position: 0 0, 40px 60px, 100px 150px, 60px 100px;
  animation: particlesMove 18s linear infinite;
  opacity: 0.9;
}

@keyframes particlesMove {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(18px) translateX(-10px); }
  100% { transform: translateY(0) translateX(0); }
}

/* HEADER */
.client-header {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.client-logo-area h1 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
}

.client-logo-area h1 span {
  color: #ff0000;
}

.client-logo-area p {
  color: #8b8b8b;
  margin-top: 4px;
  font-size: 14px;
}

.client-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: .25s ease;
}

.header-btn.primary {
  color: #fff;
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.22);
}

.header-btn.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.header-btn.secondary {
  color: #d5d5d5;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.header-btn.secondary:hover {
  border-color: rgba(255,0,0,0.22);
  color: #fff;
}

/* MAIN */
.client-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px 70px;
}

/* TITULOS */
.section-title {
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.section-title p {
  color: #9e9e9e;
  font-size: 15px;
}

/* HERO */
.client-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 10px 40px rgba(0,0,0,0.35);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 18px;
}

.client-avatar {
  width: 88px;
  height: 88px;
  min-width: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 4px rgba(255, 0, 0, 0.08),
    0 0 26px rgba(255, 0, 0, 0.12);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 999px;
  color: #ff5f5f;
  background: rgba(255, 0, 0, 0.10);
  border: 1px solid rgba(255, 0, 0, 0.18);
}

.client-user-info h2 {
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.client-user-info p {
  max-width: 640px;
  color: #aaaaaa;
  line-height: 1.7;
  font-size: 15px;
}

.client-status-box {
  min-width: 290px;
  padding: 22px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.public-box {
  background: linear-gradient(180deg, rgba(255,0,0,0.10), rgba(137,58,255,0.08));
  border: 1px solid rgba(255, 0, 0, 0.16);
}

.status-label {
  font-size: 13px;
  color: #ff6c6c;
  margin-bottom: 8px;
}

.client-status-box strong {
  font-size: 24px;
  margin-bottom: 8px;
}

.client-status-box small {
  color: #b6b6b6;
  line-height: 1.5;
}

/* SOCIAL */
.social-section {
  margin-bottom: 28px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.social-card {
  text-decoration: none;
  color: #fff;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transition: .25s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.social-card:hover {
  transform: translateY(-4px);
}

.social-card.discord:hover {
  border-color: rgba(114,137,218,0.45);
  box-shadow: 0 0 24px rgba(114,137,218,0.16);
}

.social-card.instagram:hover {
  border-color: rgba(193,53,132,0.45);
  box-shadow: 0 0 24px rgba(193,53,132,0.16);
}

.social-card.youtube:hover {
  border-color: rgba(255,0,0,0.30);
  box-shadow: 0 0 24px rgba(255,0,0,0.16);
}

.social-card.whatsapp:hover {
  border-color: rgba(37,211,102,0.35);
  box-shadow: 0 0 24px rgba(37,211,102,0.16);
}

.social-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.social-content p {
  color: #a9a9a9;
  line-height: 1.6;
  font-size: 14px;
}

.social-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  font-weight: 800;
}

/* OVERVIEW */
.client-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.overview-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.overview-card span {
  display: block;
  color: #d0d0d0;
  font-size: 13px;
  margin-bottom: 10px;
}

.overview-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.overview-card p {
  color: #d4d4d4;
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 18px;
}

.overview-card.red {
  background: linear-gradient(180deg, rgba(255,0,0,0.12), rgba(255,255,255,0.03));
  border-color: rgba(255,0,0,0.16);
}

.overview-card.purple {
  background: linear-gradient(180deg, rgba(122,71,255,0.14), rgba(255,255,255,0.03));
  border-color: rgba(122,71,255,0.20);
}

.overview-card.green {
  background: linear-gradient(180deg, rgba(0,255,166,0.10), rgba(255,255,255,0.03));
  border-color: rgba(0,255,166,0.16);
}

.overview-card.dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.mini-btn {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.mini-btn.red {
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
  color: #fff;
}

.mini-btn.purple {
  background: linear-gradient(180deg, #8a4dff 0%, #5b1de2 100%);
  color: #fff;
}

.mini-btn.green {
  background: linear-gradient(180deg, #19d68b 0%, #0aa06a 100%);
  color: #fff;
}

.mini-btn.dark {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

.mini-btn:hover {
  transform: translateY(-2px);
}

/* QUICK */
.client-progress-section {
  margin-bottom: 28px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-card {
  text-decoration: none;
  color: #fff;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.24);
  transition: .25s ease;
}

.quick-card:hover {
  transform: translateY(-4px);
}

.quick-card.red {
  background: linear-gradient(180deg, rgba(255,0,0,0.12), rgba(255,255,255,0.025));
}

.quick-card.purple {
  background: linear-gradient(180deg, rgba(122,71,255,0.14), rgba(255,255,255,0.025));
}

.quick-card.green {
  background: linear-gradient(180deg, rgba(0,255,166,0.10), rgba(255,255,255,0.025));
}

.quick-card.orange {
  background: linear-gradient(180deg, rgba(255,145,0,0.14), rgba(255,255,255,0.025));
}

.quick-mini {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 900;
}

.quick-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.quick-card p {
  color: #d5d5d5;
  line-height: 1.7;
  font-size: 14px;
}

/* GRID */
.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.client-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.24);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.card-head h3 {
  font-size: 24px;
}

.tag-red,
.tag-dark {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.tag-red {
  color: #ff6b6b;
  background: rgba(255, 0, 0, 0.10);
  border: 1px solid rgba(255, 0, 0, 0.18);
}

.tag-dark {
  color: #d8d8d8;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

/* FILES */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.file-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.file-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.file-item span {
  color: #a8a8a8;
  font-size: 13px;
}

.file-link-btn {
  min-width: 110px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.file-link-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* SUPPORT */
.card-text {
  color: #afafaf;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.action-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
  color: #fff;
}

.action-btn.red {
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
}

.action-btn.purple-btn {
  background: linear-gradient(180deg, #8a4dff 0%, #5b1de2 100%);
}

.action-btn.green-btn {
  background: linear-gradient(180deg, #19d68b 0%, #0aa06a 100%);
}

.action-btn.dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.action-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* INFO */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.info-item strong {
  font-size: 15px;
}

.info-item span {
  color: #cfcfcf;
  font-size: 14px;
  text-align: right;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dot {
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-top: 6px;
  border-radius: 50%;
}

.red-dot {
  background: #ff0000;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.55);
}

.purple-dot {
  background: #8a4dff;
  box-shadow: 0 0 16px rgba(138, 77, 255, 0.55);
}

.green-dot {
  background: #10d68b;
  box-shadow: 0 0 16px rgba(16, 214, 139, 0.55);
}

.timeline-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.timeline-item p {
  color: #a9a9a9;
  line-height: 1.6;
  font-size: 14px;
}

/* BIG DOWNLOADS */
.download-showcase {
  margin-bottom: 28px;
}

.download-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.download-big-card {
  text-decoration: none;
  color: #fff;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.24);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .25s ease;
}

.download-big-card:hover {
  transform: translateY(-4px);
}

.download-big-card.red {
  background: linear-gradient(180deg, rgba(255,0,0,0.12), rgba(255,255,255,0.025));
}

.download-big-card.purple {
  background: linear-gradient(180deg, rgba(122,71,255,0.14), rgba(255,255,255,0.025));
}

.download-big-card.green {
  background: linear-gradient(180deg, rgba(0,255,166,0.10), rgba(255,255,255,0.025));
}

.download-big-card span {
  display: block;
  color: #d7d7d7;
  font-size: 13px;
  margin-bottom: 12px;
}

.download-big-card h3 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.download-big-card p {
  color: #d4d4d4;
  font-size: 15px;
  line-height: 1.7;
}

.download-big-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: fit-content;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  font-size: 14px;
}

/* FINAL */
.client-final-box {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,0,0,0.11), rgba(122,71,255,0.08));
  border: 1px solid rgba(255, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.final-mini {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff6666;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 900;
}

.client-final-box h2 {
  font-size: 34px;
  margin-bottom: 10px;
  line-height: 1.05;
}

.client-final-box p {
  color: #c2c2c2;
  max-width: 720px;
  line-height: 1.7;
}

.final-btn {
  min-width: 220px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  transition: .25s ease;
}

.final-btn:hover {
  border-color: rgba(255, 0, 0, 0.18);
  transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 1150px) {
  .social-grid,
  .client-overview,
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-big-grid {
    grid-template-columns: 1fr;
  }

  .client-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-status-box {
    width: 100%;
  }

  .client-final-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .client-grid {
    grid-template-columns: 1fr;
  }

  .client-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .header-btn {
    flex: 1;
  }

  .client-user-info h2,
  .client-final-box h2 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .social-grid,
  .client-overview,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .client-profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-avatar {
    width: 74px;
    height: 74px;
    min-width: 74px;
  }

  .client-user-info h2 {
    font-size: 24px;
  }

  .file-item,
  .info-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-item span {
    text-align: left;
  }

  .file-link-btn {
    width: 100%;
  }

  .support-actions {
    flex-direction: column;
  }

  .action-btn {
    width: 100%;
  }

  .final-btn {
    width: 100%;
  }
}

/* FOOTER RED NETWORK */
.footer-red {
  margin-top: 80px;
  padding: 50px 20px 20px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 0, 0, 0.25);
  box-shadow: 0 -20px 60px rgba(255, 0, 0, 0.15);
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-left h2 {
  font-size: 28px;
}

.footer-left span {
  color: #ff0000;
}

.footer-left p {
  margin-top: 10px;
  color: #aaa;
  line-height: 1.6;
}

/* LINKS */
.footer-center h3,
.footer-right h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-center ul {
  list-style: none;
}

.footer-center ul li {
  margin-bottom: 8px;
}

.footer-center a,
.footer-right a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-center a:hover,
.footer-right a:hover {
  color: #ff0000;
}

/* CONTATO */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

/* RESPONSIVO */
@media(max-width:900px){
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right{
    align-items: center;
  }
}