:root {
  --bg: #0b090d;
  --bg-alt: #0e0c11;
  --card: #131017;
  --text: #f4f1ea;
  --muted: #8a8494;
  --muted-2: #5c5666;
  --muted-3: #4a4453;
  --muted-4: #3a3543;
  --border: rgba(244, 241, 234, 0.1);
  --border-soft: rgba(244, 241, 234, 0.08);
  --cyan: #43d6e0;
  --pink: #ff3d8b;
  --purple: #a06bff;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto; /* header / conteúdo / rodapé */
  grid-template-columns: minmax(0, 1fr); /* trava a largura da coluna na tela, sem deixar o ticker esticar tudo */
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.mono { font-family: var(--font-mono); }
.muted { color: var(--muted); }
.muted-3 { color: var(--muted-3); }
.muted-4 { color: var(--muted-4); }
.cyan { color: var(--cyan); }
.pink { color: var(--pink); }
.small { font-size: 12px; letter-spacing: 3px; }

.hl {
  position: relative;
  display: inline-block;
}
.hl::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 54%;
  height: 5px;
  background: var(--pink);
}
.hl-big::after {
  top: 55%;
  height: clamp(6px, 1.2vw, 17px);
  left: -6px;
  right: -6px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 9, 13, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: 0.5px;
  color: var(--text);
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 38px);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
}

.nav a:not(.btn) {
  color: var(--muted);
}
.nav a:not(.btn):hover {
  color: var(--text);
}

/* ---------- Buttons ---------- */

.btn {
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  border-radius: 10px;
  display: inline-block;
  white-space: nowrap;
}

.btn-cyan {
  color: var(--bg);
  background: var(--cyan);
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 2px;
}
.btn-cyan:hover {
  background: var(--pink);
  color: var(--text);
}

.btn-lg {
  font-size: 21px;
  padding: 17px 34px;
}

.btn-outline {
  color: var(--text);
  border: 2px solid rgba(244, 241, 234, 0.16);
  padding: 15px 32px;
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-pink {
  color: var(--bg);
  background: var(--pink);
  padding: 16px 30px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  border-bottom: 1px solid var(--border-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 56px;
  align-items: center;
  padding: 72px 24px 64px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.status {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--cyan);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  animation: sp-pulse 1.3s ease-in-out infinite;
}
.dot-sm {
  width: 7px;
  height: 7px;
  animation: none;
}

.title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 10.5vw, 150px);
  line-height: 0.85;
  letter-spacing: -1px;
}

.lede {
  margin: 0;
  max-width: 500px;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.5;
  color: #c9c5bd;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.video-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
}

.video-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
}

.video-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--muted-3);
}

/* ---------- Ticker ---------- */

.ticker-wrap {
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 15px 0;
}

.ticker {
  display: flex;
  width: max-content;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  animation: sp-ticker 40s linear infinite;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: #2a2431;
  white-space: nowrap;
}

.dim { font-size: 20px; }

@keyframes sp-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes sp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.78); }
}

/* ---------- Sections ---------- */

.section {
  border-bottom: 1px solid var(--border-soft);
}
.section-alt {
  background: var(--bg-alt);
}

.section-grid {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 40px;
  padding: 72px 24px;
}

.section-num {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 14px;
}
.section-num .num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
}
.rule {
  height: 1px;
  background: rgba(244, 241, 234, 0.14);
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.15;
  font-weight: 400;
}

.text,
.text-sub {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}
.text-sub.small {
  font-size: 16px;
  letter-spacing: normal;
}
.text-sub strong {
  color: var(--text);
  font-weight: 700;
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(244, 241, 234, 0.12);
  border-bottom: 1px solid rgba(244, 241, 234, 0.12);
  gap: 0;
}
.stat {
  padding: 30px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid rgba(244, 241, 234, 0.12);
}
.stat:first-child {
  padding-left: 0;
  border-left: none;
}
.stat .small {
  margin-top: 6px;
  letter-spacing: 2.5px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1;
  color: var(--text);
}
.stat-label {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.5px;
}

/* ---------- Mesa ---------- */

.mesa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
}

.mesa-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mesa-card:hover {
  border-color: rgba(244, 241, 234, 0.24);
}

.mesa-photo {
  aspect-ratio: 4 / 5;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 1px;
  opacity: 0.55;
}

.mesa-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid var(--border);
}
.mesa-name {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}
.mesa-role {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--muted-2);
}

/* ---------- Canais ---------- */

.canais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.canal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  color: var(--text);
  min-height: 220px;
  justify-content: space-between;
}
.canal-card:hover {
  border-color: var(--cyan);
  background: #171320;
}

.canal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.arrow {
  font-size: 18px;
  color: var(--muted-3);
}

.canal-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.pill {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: 20px;
  padding: 6px 12px;
  white-space: nowrap;
}

.canal-name {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.5px;
}

.cortes-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 6px solid var(--pink);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--text);
  flex-wrap: wrap;
}
.cortes-card:hover {
  background: #171320;
  border-color: rgba(244, 241, 234, 0.24);
  border-left-color: var(--pink);
}

.cortes-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}
.cortes-tag {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--pink);
}
.cortes-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: 0.5px;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.socials-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-chip {
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 12px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.social-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--card);
}
.chip-name {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* ---------- Contato ---------- */

.email-link {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: var(--text);
  border-bottom: 5px solid var(--cyan);
  padding-bottom: 12px;
  display: inline-block;
  overflow-wrap: break-word;
  max-width: 100%;
}
.email-link:hover {
  color: var(--cyan);
  border-color: var(--pink);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-alt);
}
.footer-inner {
  padding: 44px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand .logo {
  font-size: 30px;
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 12px;
  letter-spacing: 2px;
}
.footer-links a {
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--text);
}

::selection {
  background: var(--pink);
  color: var(--bg);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav {
    gap: 14px;
  }
  .nav a:not(.btn) {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-num {
    flex-direction: row;
    align-items: center;
    padding-top: 0;
  }
  .rule {
    flex: 1;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
  .stat:nth-child(2n+1) {
    border-left: none;
    margin-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 520px) {
  .wrap {
    padding: 0 18px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}
