* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #070707;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

:root {
  --menu-topo-height: 82px;
}

/* TOPO */
.menu-topo {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  background: rgba(35, 35, 35, 0.96);
  border-bottom: 3px solid #d7d000;
  backdrop-filter: blur(6px);
}

.menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-logo > img {
  height: 52px;
  width: auto;
  display: block;
}

.menu-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-social-link:hover {
  transform: translateY(-1px);
  opacity: 0.78;
}

.menu-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-social-link-icon {
  color: #ffffff;
  font-size: 22px;
}

.menu-logo-divider {
  display: block;
  width: 2px;
  height: 34px;
  background: #d7d000;
  flex: 0 0 auto;
  margin-left: 3px;
  margin-right: 3px;
}

.menu-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.menu-nav a {
  font-family: 'Bebas Neue', sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  letter-spacing: 0.8px;
  line-height: 1;
  padding: 0 16px;
  position: relative;
  transition: color 0.25s ease;
}

.menu-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 20px;
  background: #d7d000;
  transform: translateY(-50%);
}

.menu-nav a:hover {
  color: #d7d000;
}

.menu-nav a.ativo {
  color: #d7d000;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 4px solid #d7d000;
  background: #000;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.hero-banner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: -4%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(22px);
  transform: scale(1.08);
}

.hero-banner img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #000;
  padding: 0;
}


.hero-banner.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.26) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.14) 100%
  );
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(to top, rgba(215,208,0,0.12), rgba(215,208,0,0));
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  text-align: center;
  padding: 20px;
}

.hero-logo {
  width: 320px;
  max-width: 80vw;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.badge-live {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.78);
  border: 2px solid #d7d000;
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  padding: 8px 16px;
  margin-bottom: 18px;
  box-shadow: 0 0 16px rgba(215, 208, 0, 0.18);
  animation: livePulse 1s infinite alternate;
}

@keyframes livePulse {
  from {
    box-shadow: 0 0 10px rgba(215, 208, 0, 0.15);
    transform: scale(1);
  }
  to {
    box-shadow: 0 0 22px rgba(215, 208, 0, 0.45);
    transform: scale(1.03);
  }
}

.badge-live::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff2a2a;
  display: inline-block;
  box-shadow:
    0 0 10px rgba(255, 0, 0, 0.9),
    0 0 18px rgba(255, 0, 0, 0.6);
  animation: liveBlink 1s infinite alternate;
}

@keyframes liveBlink {
  0% {
    opacity: 0.4;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 2px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.50);
}

.hero-content p {
  margin-top: 14px;
  font-size: 24px;
  color: #f2f2f2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-buttons {
  pointer-events: auto;
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 48px;
  padding: 0 20px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  transition: 0.25s ease;
}

.btn-primary {
  background: #d7d000;
  color: #111111;
  border: 2px solid #d7d000;
}

.btn-primary:hover {
  background: #f0e800;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(0,0,0,0.58);
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  border-color: #d7d000;
  color: #d7d000;
  transform: translateY(-1px);
}

/* TICKER */
.ticker {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-top: 2px solid #d7d000;
  border-bottom: 2px solid #d7d000;
  background: #101010;
}

.ticker-label {
  flex: 0 0 auto;
  background: #d7d000;
  color: #111;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
}

.ticker-track-wrap {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}

.ticker-track {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
  padding-left: 100%;
  animation: tickerMove 24s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.7px;
}

.ticker-track span:nth-child(even) {
  color: #d7d000;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CONTAINER */
.site-container {
  width: 92%;
  max-width: 1360px;
  margin: 0 auto;
  background: #121212;
  border-left: 1px solid #2e2e2e;
  border-right: 1px solid #2e2e2e;
}

/* TITULO */
.servicos-topo {
  background: #262626;
  text-align: center;
  padding: 22px 15px;
  border-bottom: 2px solid #d7d000;
  border-top: 2px solid #d7d000;
}

.servicos-topo h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
}

.servicos-topo span {
  color: #d7d000;
  margin: 0 16px;
}

/* SLIDER */
.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  background: #0d0d0d;
}

.slider-container.dragging {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  will-change: transform;
}

.card {
  flex: 0 0 calc(100% / 3);
  background: #090909;
  border-right: 1px solid #2e2e2e;
  border-bottom: 2px solid #d7d000;
  overflow: hidden;
  user-select: none;
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px 20px 24px;
  min-height: 180px;
}

.card-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 17px;
  line-height: 1.45;
  color: #f2f2f2;
}

.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 2px solid #d7d000;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  font-size: 28px;
  transition: 0.2s ease;
}

.seta:hover {
  background: #d7d000;
  color: #111111;
  box-shadow: 0 0 18px rgba(215, 208, 0, 0.22);
}

.seta-esquerda { left: 14px; }
.seta-direita { right: 14px; }

/* BLOCOS */
.blocos-espn {
  padding: 28px 24px 32px;
  background: #151515;
}

.headline-box {
  border: 1px solid #2c2c2c;
  border-left: 5px solid #d7d000;
  background: linear-gradient(90deg, #1b1b1b, #111111);
  padding: 24px;
  margin-bottom: 22px;
}

.headline-tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #111111;
  background: #d7d000;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.headline-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.headline-box p {
  font-size: 17px;
  line-height: 1.5;
  color: #f1f1f1;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-card {
  background: #0f0f0f;
  border-top: 3px solid #d7d000;
  border-bottom: 1px solid #2e2e2e;
  border-left: 1px solid #2e2e2e;
  border-right: 1px solid #2e2e2e;
  padding: 22px;
}

.mini-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.mini-card p {
  font-size: 16px;
  line-height: 1.5;
}

.mini-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.mini-card-link:hover {
  transform: translateY(-3px);
  border-top-color: #f0e800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

/* CALENDARIO */
.calendar-page {
  padding: 34px 0 40px;
}

.calendar-hero,
.calendar-section {
  padding-left: 28px;
  padding-right: 28px;
}

.calendar-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  margin-bottom: 26px;
}

.calendar-hero-copy,
.calendar-month-card,
.calendar-card {
  background: rgba(14, 14, 14, 0.94);
  border: 1px solid #2d2d2d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.calendar-hero-copy {
  padding: 30px;
  border-left: 4px solid #d7d000;
  background:
    radial-gradient(circle at top left, rgba(215, 208, 0, 0.14), transparent 38%),
    linear-gradient(180deg, #171717 0%, #101010 100%);
}

.calendar-kicker,
.calendar-month-label,
.calendar-card-tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.3px;
  color: #d7d000;
}

.calendar-kicker,
.calendar-month-label {
  font-size: 22px;
  margin-bottom: 12px;
}

.calendar-hero-copy h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.calendar-hero-copy p,
.calendar-month-card p {
  font-size: 17px;
  line-height: 1.65;
  color: #d7d7d7;
}

.calendar-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.calendar-month-card {
  padding: 28px;
  border-top: 4px solid #d7d000;
  align-content: start;
}

.calendar-month-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
  color: #ffffff;
}

.calendar-month-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.calendar-stat {
  padding: 16px 12px;
  text-align: center;
  background: #161616;
  border: 1px solid #2d2d2d;
}

.calendar-stat span {
  display: block;
  margin-bottom: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #bfbfbf;
}

.calendar-stat strong {
  margin: 0;
  font-size: 34px;
}

.calendar-headline {
  margin-bottom: 22px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.calendar-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  overflow: hidden;
}

.calendar-card-date {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 18px 12px;
  background:
    linear-gradient(180deg, rgba(215, 208, 0, 0.18), rgba(215, 208, 0, 0.05)),
    #121212;
  border-right: 1px solid #2d2d2d;
}

.calendar-card-date span,
.calendar-card-date strong {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1;
}

.calendar-card-date span {
  font-size: 54px;
  color: #ffffff;
}

.calendar-card-date strong {
  font-size: 22px;
  letter-spacing: 1.2px;
  color: #d7d000;
}

.calendar-card-body {
  padding: 24px;
}

.calendar-card-tag {
  font-size: 20px;
  margin-bottom: 10px;
}

.calendar-card-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 10px;
  color: #ffffff;
}

.calendar-card-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #d7d7d7;
  margin-bottom: 16px;
}

.calendar-meta {
  display: grid;
  gap: 8px;
  list-style: none;
  color: #f2f2f2;
  font-size: 15px;
  line-height: 1.5;
}

.calendar-empty {
  grid-column: 1 / -1;
  padding: 34px 28px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(215, 208, 0, 0.12), transparent 32%),
    linear-gradient(180deg, #171717 0%, #101010 100%);
  border: 1px solid #2d2d2d;
  border-top: 4px solid #d7d000;
}

.calendar-empty h2 {
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

.calendar-empty p {
  font-size: 16px;
  line-height: 1.6;
  color: #d7d7d7;
}

/* RODAPE */
.rodape {
  background: #101010;
  border-top: 2px solid #d7d000;
  padding: 28px 14px 20px;
  text-align: center;
  text-transform: uppercase;
}

.rodape-patrocinadores,
.rodape-parceiros,
.rodape-contato {
  max-width: 1100px;
  margin: 0 auto 28px;
}
  /* TOPO CONTATO */
.contato-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BLOCO ESQUERDA (LOGO + TEXTO) */
.contato-esquerda {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contato-logo {
  width: 120px;
  max-width: 22vw;
  height: auto;
  object-fit: contain;
}

.contato-conteudo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* BLOCO DIREITA (REDES) */
.contato-guias {
  margin-left: auto; /* ISSO EMPURRA PRA DIREITA */
}

/* REDES */
.contato-redes {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.rodape-contato h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 18px;
}

.contato-redes {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.rede {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  background: #0d0d0d;
  border: 1px solid #2e2e2e;
  border-top: 2px solid #d7d000;
  padding: 12px 20px;
  transition: 0.3s ease;
}

.rede span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.rede i {
  font-size: 26px;
}

.insta i {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.face i {
  color: #1877f2;
}

.rede:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: #d7d000;
  box-shadow: 0 0 18px rgba(215,208,0,0.25);
}


.rodape-patrocinadores h3,
.rodape-parceiros h3,
.rodape-contato h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 18px;
}

.patrocinadores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.parceiro-centro {
  grid-column: 2 / 4;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.patrocinador-item,
.parceiro-item {
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid #2e2e2e;
  border-top: 2px solid #d7d000;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.30s ease, box-shadow 0.30s ease, border-color 0.30s ease;
}

.parceiro-item {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.patrocinador-item::before,
.parceiro-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%) scale(0.45);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 230, 0, 0.95) 0%,
    rgba(255, 230, 0, 0.55) 28%,
    rgba(255, 230, 0, 0.22) 52%,
    rgba(255, 230, 0, 0.08) 70%,
    transparent 100%
  );
  filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.patrocinador-item::after,
.parceiro-item::after {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    radial-gradient(circle at 32% 56%, rgba(255,230,0,0.34), transparent 24%),
    radial-gradient(circle at 68% 40%, rgba(255,230,0,0.28), transparent 22%),
    radial-gradient(circle at 52% 72%, rgba(255,230,0,0.20), transparent 20%);
  filter: blur(20px);
  opacity: 0;
  transform: scale(0.82);
  pointer-events: none;
  z-index: 1;
}

.patrocinador-item:hover,
.parceiro-item:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: #8a8400;
  box-shadow: 0 0 24px rgba(215,208,0,0.18);
}

.patrocinador-item:hover::before,
.parceiro-item:hover::before {
  opacity: 1;
  animation: fumacaAmarela 2s ease-in-out infinite alternate;
}

.patrocinador-item:hover::after,
.parceiro-item:hover::after {
  opacity: 1;
  animation: fumacaAmarela2 2s ease-in-out infinite alternate;
}

.patrocinador-item img,
.parceiro-item img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.30s ease;
}

.patrocinador-item:hover img,
.parceiro-item:hover img {
  transform: scale(1.08);
}

@keyframes fumacaAmarela {
  0% {
    transform: translate(-50%, -50%) scale(0.50);
    opacity: 0.28;
  }
  50% {
    transform: translate(-50%, -56%) scale(0.95);
    opacity: 0.50;
  }
  100% {
    transform: translate(-50%, -62%) scale(1.18);
    opacity: 0.22;
  }
}

@keyframes fumacaAmarela2 {
  0% {
    transform: scale(0.82) rotate(0deg);
    opacity: 0.10;
  }
  50% {
    transform: scale(1.00) rotate(4deg);
    opacity: 0.22;
  }
  100% {
    transform: scale(1.08) rotate(-4deg);
    opacity: 0.08;
  }
}

/* CONTATO RODAPÉ */
.contato-redes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.rede {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  background: #0d0d0d;
  border: 1px solid #2e2e2e;
  border-top: 2px solid #d7d000;
  padding: 12px 20px;
  transition: 0.3s ease;
}

.rede span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.rede i {
  font-size: 26px;
}

.insta i {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.face i {
  color: #1877f2;
}

.rede:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: #d7d000;
  box-shadow: 0 0 18px rgba(215,208,0,0.25);
}

.rodape-final {
  border-top: 1px solid #2e2e2e;
  padding-top: 18px;
  font-size: 14px;
  text-transform: uppercase;
}

/* LIVE PAGE */
.live-page {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  background: #1b1b1b;
  border-left: 1px solid #3a3a3a;
  border-right: 1px solid #3a3a3a;
  min-height: 100vh;
}

.live-page-topo {
  text-align: center;
  padding: 38px 20px 30px;
  border-bottom: 3px solid #d7d000;
  background: #202020;
}

.live-page-topo h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.live-page-topo p {
  font-size: 17px;
  color: #f2f2f2;
}

/* PLAYER PRINCIPAL */
.live-player-section {
  padding: 30px 20px;
  background: #141414;
  border-bottom: 3px solid #d7d000;
}

.player-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.player-live-badge,
.player-live-time,
.player-viewers {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  padding: 6px 12px;
}

.player-live-badge {
  background: #c40000;
  color: #fff;
  border: 1px solid #fff;
}

.player-live-time {
  background: #d7d000;
  color: #111;
}

.player-viewers {
  background: #222;
  color: #fff;
  border: 1px solid #444;
}

.player-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid #2c2c2c;
  overflow: hidden;
}

.player-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.player-info {
  padding-top: 16px;
}

.player-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}

.player-info p {
  font-size: 16px;
  color: #f2f2f2;
  line-height: 1.5;
}

/* LIVES */
.live-destaque {
  padding: 36px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  border-bottom: 3px solid #d7d000;
  background: #181818;
}

.live-box,
.mini-live {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #111111;
}

.live-box {
  width: 100%;
  max-width: 720px;
  border: 1px solid #2c2c2c;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.live-box img,
.mini-live img {
  width: 100%;
  display: block;
}

.live-box:hover,
.mini-live:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(215, 208, 0, 0.18);
}

.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: #c40000;
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: 1px solid #ffffff;
  box-shadow: 0 0 12px rgba(196, 0, 0, 0.45);
}

.live-status {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.78);
  color: #d7d000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: 1px solid #d7d000;
}

.yt-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 5px 10px;
  border: 1px solid #ffffff;
}

.mini-yt {
  font-size: 14px;
  bottom: 8px;
  right: 8px;
  padding: 4px 8px;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  color: #ffffff;
  font-size: 70px;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.live-box:hover .play-overlay,
.mini-live:hover .play-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.40);
}

.live-meta {
  padding: 16px 18px 18px;
  background: #0f0f0f;
  border-top: 1px solid #2c2c2c;
}

.live-meta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}

.live-meta p {
  font-size: 15px;
  color: #f2f2f2;
}

.mini-play {
  font-size: 42px;
}

.ultimas-lives {
  padding: 28px 26px 34px;
  background: #1b1b1b;
}

.ultimas-lives h2 {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.ultimas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.mini-live {
  border: 1px solid #2c2c2c;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .hero {
    height: 75vh;
    min-height: 460px;
  }

  .hero-content h1 {
    font-size: 84px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .servicos-topo h2 {
    font-size: 42px;
  }

  .card {
    flex: 0 0 50%;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .patrocinadores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .parceiros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .parceiro-centro {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  .ultimas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-topo {
    padding: 10px 12px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .menu-nav {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    flex-wrap: wrap;
    gap: 8px 0;
  }

  .menu-nav a {
    font-size: 19px;
    padding: 0 10px;
  }

  .menu-logo > img {
    height: 40px;
  }

  .menu-logo {
    gap: 7px;
  }

  .menu-social-link {
    width: 18px;
    height: 18px;
  }

  .hero {
    height: 60vh;
    min-height: 360px;
  }

  .hero-logo {
    width: 220px;
    max-width: 78vw;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .badge-live {
    font-size: 18px;
    padding: 7px 12px;
  }

  .btn {
    min-width: 120px;
    height: 42px;
    font-size: 18px;
  }

  .ticker-label {
    font-size: 22px;
    padding: 8px 12px;
  }

  .ticker-track {
    font-size: 24px;
  }

  .site-container {
    width: 100%;
  }

  .servicos-topo h2 {
    font-size: 30px;
  }

  .card {
    flex: 0 0 100%;
  }

  .card img {
    height: 230px;
  }

  .card-content h3 {
    font-size: 42px;
  }

  .headline-box h3 {
    font-size: 32px;
  }

  .rodape-patrocinadores h3,
  .rodape-parceiros h3,
  .rodape-contato h3 {
    font-size: 28px;
  }

  .patrocinador-item,
  .parceiro-item {
    min-height: 115px;
    padding: 16px;
  }

  .patrocinador-item img,
  .parceiro-item img {
    max-height: 90px;
  }
}

@media (max-width: 600px) {
  .live-page {
    width: 100%;
  }

  .live-page-topo {
    padding: 28px 14px 24px;
  }

  .live-page-topo h1 {
    font-size: 38px;
  }

  .live-page-topo p {
    font-size: 15px;
  }

  .live-player-section {
    padding: 22px 14px;
  }

  .player-live-badge,
  .player-live-time,
  .player-viewers {
    font-size: 18px;
  }

  .player-info h2 {
    font-size: 30px;
  }

  .live-destaque {
    padding: 28px 14px 18px;
    gap: 18px;
  }

  .ultimas-lives {
    padding: 24px 14px 30px;
  }

  .ultimas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ultimas-lives h2 {
    font-size: 28px;
  }

  .live-badge,
  .live-status {
    font-size: 16px;
    padding: 5px 10px;
  }

  .play-overlay {
    font-size: 48px;
  }

  .mini-play {
    font-size: 30px;
  }

  .live-meta h3 {
    font-size: 28px;
  }

  .yt-badge {
    font-size: 14px;
  }

  .patrocinadores-grid,
  .parceiros-grid {
    grid-template-columns: 1fr;
  }

  .parceiro-centro {
    grid-column: auto;
    max-width: 100%;
  }

  .rodape-final {
    font-size: 12px;
    line-height: 1.5;
  }
.guias-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
}

.guias-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 1px;
  position: relative;
  transition: 0.25s;
}

/* LINHA AMARELA IGUAL MENU */
.guias-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #d7d000;
  transition: 0.3s;
}

.guias-links a:hover {
  color: #d7d000;
}

.guias-links a:hover::after {
  width: 100%;
}
}

/* RODAPE REFEITO */
.rodape {
  background: #101010;
  border-top: 2px solid #d7d000;
  padding: 20px 14px;
  text-align: center;
  color: #ffffff;
}

.rodape-principal {
  position: relative;
  overflow: hidden;
  padding: 34px 18px 22px;
  text-align: left;
  background:
    radial-gradient(circle at top left, rgba(215, 208, 0, 0.14), transparent 32%),
    linear-gradient(180deg, #121212 0%, #090909 100%);
}

.rodape-principal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.03), transparent 35%),
    linear-gradient(0deg, rgba(215, 208, 0, 0.04), transparent 28%);
  pointer-events: none;
}

.rodape-principal > * {
  position: relative;
  z-index: 1;
}

.rodape-principal > .rodape-patrocinadores,
.rodape-principal > .rodape-parceiros,
.rodape-principal > .rodape-contato {
  display: none;
}

.rodape-hero,
.rodape-grid,
.rodape-base {
  max-width: 1200px;
  margin: 0 auto;
}

.rodape-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  margin-bottom: 24px;
}

.rodape-brand,
.rodape-acoes,
.rodape-bloco {
  background: rgba(12, 12, 12, 0.9);
  border: 1px solid #2f2f2f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.rodape-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-left: 4px solid #d7d000;
}

.rodape-logo {
  width: 122px;
  max-width: 22vw;
  height: auto;
  object-fit: contain;
}

.rodape-brand-copy {
  display: grid;
  gap: 10px;
}

.rodape-kicker,
.rodape-acoes-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1.6px;
  color: #d7d000;
}

.rodape-brand-copy h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
}

.rodape-brand-copy p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  color: #d8d8d8;
  text-transform: none;
}

.rodape-acoes {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  border-top: 4px solid #d7d000;
}

.rodape-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 18px;
  background: #d7d000;
  color: #111111;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.rodape-cta:hover {
  background: #f0e800;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(215, 208, 0, 0.18);
}

.contato-redes {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.rede {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 18px;
  text-decoration: none;
  color: #ffffff;
  background: #101010;
  border: 1px solid #2f2f2f;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rede span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.rede i {
  font-size: 24px;
}

.insta i {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yt i {
  color: #ff3b30;
}

.whatsapp i {
  color: #25d366;
}

.rede:hover {
  transform: translateY(-2px);
  border-color: #d7d000;
  box-shadow: 0 10px 20px rgba(215, 208, 0, 0.12);
}

.guias-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guias-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #2a2a2a;
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.guias-links a::after {
  display: none;
}

.guias-links a:hover {
  color: #d7d000;
  border-color: #d7d000;
  transform: translateY(-2px);
}

.rodape-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.rodape-bloco {
  padding: 24px;
}

.rodape-bloco h3 {
  margin-bottom: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1px;
}

.patrocinadores-grid,
.parceiros-grid {
  display: grid;
  gap: 16px;
}

.patrocinadores-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.parceiros-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.parceiro-centro {
  grid-column: 2 / 3;
}

.patrocinador-item,
.parceiro-item {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(180deg, #101010 0%, #171717 100%);
  border: 1px solid #2d2d2d;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.patrocinador-item::before,
.parceiro-item::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -38%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 208, 0, 0.30), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: scale(0.8);
}

.patrocinador-item:hover,
.parceiro-item:hover {
  transform: translateY(-3px);
  border-color: #8e8800;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.patrocinador-item:hover::before,
.parceiro-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.patrocinador-item img,
.parceiro-item img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.rodape-base {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #2b2b2b;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #cfcfcf;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .rodape-hero,
  .rodape-grid {
    grid-template-columns: 1fr;
  }

  .rodape-brand-copy h3 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .rodape-principal {
    padding: 26px 14px 20px;
  }

  .rodape-brand {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 22px;
  }

  .rodape-logo {
    width: 108px;
    max-width: 38vw;
  }

  .rodape-brand-copy h3 {
    font-size: 36px;
  }

  .rodape-acoes,
  .rodape-bloco {
    padding: 22px;
  }

  .rodape-cta {
    width: 100%;
    font-size: 24px;
  }

  .patrocinadores-grid {
    grid-template-columns: 1fr;
  }

  .parceiros-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .parceiro-centro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .rodape-brand-copy h3 {
    font-size: 30px;
  }

  .rodape-brand-copy p {
    font-size: 15px;
  }

  .contato-redes,
  .guias-links {
    flex-direction: column;
  }

  .rede,
  .guias-links a {
    width: 100%;
    justify-content: center;
  }

  .parceiros-grid {
    grid-template-columns: 1fr;
  }

  .rodape-base {
    justify-content: center;
    text-align: center;
    line-height: 1.5;
  }
}

/* SOBRE PAGE */
.sobre-page {
  padding-bottom: 36px;
}

.sobre-hero-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: 26px 24px 22px;
  background:
    radial-gradient(circle at top left, rgba(215, 208, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #181818 0%, #111111 100%);
  border-bottom: 2px solid #d7d000;
}

.sobre-copy,
.sobre-card,
.sobre-metrica,
.sobre-pilar,
.sobre-diferenciais-copy,
.sobre-lista-item {
  border: 1px solid #2d2d2d;
  background: #101010;
}

.sobre-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  border-left: 4px solid #d7d000;
}

.sobre-tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1.4px;
  color: #d7d000;
}

.sobre-copy h1,
.sobre-diferenciais-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
}

.sobre-copy h1 {
  font-size: 74px;
}

.sobre-copy p,
.sobre-card p,
.sobre-metrica span,
.sobre-pilar-copy p,
.sobre-diferenciais-copy p,
.sobre-lista-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #dddddd;
}

.sobre-hero-acoes {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sobre-visual {
  display: grid;
  gap: 18px;
}

.sobre-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 210px;
  border-top: 4px solid #d7d000;
  background:
    linear-gradient(135deg, rgba(215, 208, 0, 0.10), transparent 40%),
    #0f0f0f;
}

.sobre-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 208, 0, 0.24), transparent 70%);
}

.sobre-card-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1.2px;
  color: #d7d000;
}

.sobre-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.95;
}

.sobre-card p {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.sobre-mosaico {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sobre-mosaico-item {
  overflow: hidden;
  min-height: 240px;
  border: 1px solid #2d2d2d;
  background: #0d0d0d;
}

.sobre-mosaico-item img,
.sobre-pilar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sobre-metricas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 24px;
  background: #121212;
}

.sobre-ceo {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  padding: 24px;
  background: #121212;
}

.sobre-ceo-photo,
.sobre-ceo-copy {
  border: 1px solid #2d2d2d;
  background: #101010;
}

.sobre-ceo-photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-top: 4px solid #d7d000;
}

.sobre-ceo-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent);
  pointer-events: none;
}

.sobre-ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sobre-ceo-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
  border-left: 4px solid #d7d000;
}

.sobre-ceo-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
  color: #ffffff;
}

.sobre-ceo-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: #dddddd;
}

.sobre-metrica {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-top: 3px solid #d7d000;
}

.sobre-metrica strong,
.sobre-lista-item span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
}

.sobre-pilares {
  background: #151515;
}

.sobre-pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sobre-pilar {
  overflow: hidden;
  border-right: 1px solid #292929;
}

.sobre-pilar:last-child {
  border-right: 0;
}

.sobre-pilar-media {
  position: relative;
}

.sobre-pilar img {
  height: 260px;
}

.sobre-pilar-etapa {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 2px solid #d7d000;
  background: rgba(0, 0, 0, 0.84);
  color: #d7d000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 1px;
  z-index: 1;
}

.sobre-pilar-copy {
  padding: 22px;
}

.sobre-pilar-copy h3 {
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.sobre-diferenciais {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  padding: 24px;
  background: #111111;
}

.sobre-diferenciais-copy,
.sobre-lista {
  min-width: 0;
}

.sobre-diferenciais-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
}

.sobre-diferenciais-copy h2 {
  font-size: 58px;
}

.sobre-lista {
  display: grid;
  gap: 14px;
}

.sobre-lista-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border-left: 4px solid #d7d000;
}

@media (max-width: 1100px) {
  .sobre-hero-page,
  .sobre-diferenciais,
  .sobre-ceo {
    grid-template-columns: 1fr;
  }

  .sobre-copy h1 {
    font-size: 60px;
  }

  .sobre-pilares-grid {
    grid-template-columns: 1fr;
  }

  .sobre-pilar {
    border-right: 0;
    border-bottom: 1px solid #292929;
  }
}

@media (max-width: 768px) {
  .sobre-hero-page,
  .sobre-metricas,
  .sobre-diferenciais,
  .sobre-ceo {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sobre-copy,
  .sobre-diferenciais-copy,
  .sobre-ceo-copy {
    padding: 22px;
  }

  .sobre-copy h1,
  .sobre-diferenciais-copy h2,
  .sobre-ceo-copy h2 {
    font-size: 44px;
  }

  .sobre-metricas {
    grid-template-columns: 1fr;
  }

  .sobre-mosaico {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .sobre-copy h1,
  .sobre-diferenciais-copy h2,
  .sobre-ceo-copy h2 {
    font-size: 34px;
  }

  .sobre-tag {
    font-size: 20px;
  }

  .sobre-hero-acoes .btn {
    width: 100%;
  }

  .sobre-card h2 {
    font-size: 34px;
  }

  .sobre-ceo-photo {
    min-height: 400px;
  }

  .sobre-pilar img {
    height: 220px;
  }

  .sobre-pilar-etapa {
    top: 14px;
    left: 14px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .sobre-pilar-copy h3 {
    font-size: 38px;
  }

  .sobre-lista-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* LIVE PAGE REFEITA */
.live-page {
  max-width: 1340px;
}

.live-player-destaque {
  padding: 34px 28px 30px;
  background:
    radial-gradient(circle at top center, rgba(215, 208, 0, 0.10), transparent 28%),
    linear-gradient(180deg, #181818 0%, #101010 100%);
}

.live-player-destaque .player-header {
  justify-content: center;
  margin-bottom: 18px;
}

.live-admin-panel {
  padding: 28px 28px 0;
  background: #151515;
}

.live-admin-visibility {
  padding-bottom: 28px;
}

.live-admin-link[data-visible="false"] {
  background: #171717;
  color: #d7d000;
}

.live-players-list {
  display: grid;
  gap: 0;
}

.live-offline-state {
  margin: 0 28px;
  padding: 42px 24px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(215, 208, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
  border-top: 3px solid #d7d000;
  border-bottom: 1px solid #2d2d2d;
}

.live-offline-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1.4px;
  color: #d7d000;
}

.live-offline-state h2 {
  margin: 0 0 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 62px;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: #ffffff;
}

.live-offline-state p {
  margin: 0;
  font-size: 20px;
  color: #d6d6d6;
}

.player-wrapper-grande {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px;
  background: #0f0f0f;
  border: 3px solid #d7d000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.player-wrapper-grande::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(215, 208, 0, 0.45);
  pointer-events: none;
}

.player-wrapper-grande iframe {
  position: relative;
  z-index: 1;
}

.live-player-message {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-height: 420px;
  place-content: center;
  padding: 32px;
  text-align: center;
  color: #ffffff;
}

.live-player-message strong {
  font-size: 28px;
  letter-spacing: 1px;
}

.live-player-message p {
  margin: 0;
  font-size: 18px;
  color: #d6d6d6;
}

.live-player-message a {
  color: #d7d000;
  font-weight: 700;
  text-decoration: none;
}

.live-player-message a:hover {
  text-decoration: underline;
}

.live-resumo {
  max-width: 1120px;
  margin: 22px auto 0;
  display: grid;
  gap: 20px;
}

.live-resumo-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1.2px;
  color: #d7d000;
}

.live-resumo .player-info {
  padding: 0;
  text-align: center;
}

.live-resumo .player-info h2 {
  font-size: 58px;
  margin-bottom: 10px;
}

.live-resumo .player-info p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  color: #d6d6d6;
}

.live-player-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.live-info-card {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: #121212;
  border: 1px solid #2f2f2f;
  border-top: 3px solid #d7d000;
  text-align: center;
}

.live-info-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: #cfcfcf;
}

.live-info-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
}

.live-info-value.red {
  color: #ff4a4a;
}

.ultimas-lives {
  padding: 34px 28px 42px;
}

.ultimas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-live-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: #101010;
  border: 2px solid #d7d000;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mini-live-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(215, 208, 0, 0.3);
  pointer-events: none;
  z-index: 2;
}

.mini-live-card:hover {
  transform: translateY(-4px);
  border-color: #f0e800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.thumb-bg {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
  border-bottom: 2px solid rgba(215, 208, 0, 0.7);
}

.thumb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-tag {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 10px;
  background: #d7d000;
  border: 1px solid #d7d000;
  color: #111111;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  z-index: 3;
}

.mini-live-content {
  padding: 16px 18px 18px;
}

.mini-live-content h3 {
  margin-bottom: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

.mini-live-content p {
  color: #dadada;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .player-wrapper-grande,
  .live-resumo {
    max-width: 100%;
  }

  .ultimas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .live-admin-panel,
  .live-player-destaque,
  .live-offline-state,
  .ultimas-lives {
    padding-left: 14px;
    padding-right: 14px;
  }

  .live-offline-state {
    margin: 0;
  }

  .live-resumo .player-info h2 {
    font-size: 40px;
  }

  .live-resumo .player-info p {
    font-size: 16px;
  }

  .live-player-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .live-player-destaque .player-header {
    gap: 8px;
  }

  .player-live-badge,
  .player-live-time,
  .player-viewers {
    font-size: 18px;
    padding: 6px 10px;
  }

  .live-resumo .player-info h2 {
    font-size: 32px;
  }

  .live-offline-state h2 {
    font-size: 40px;
  }

  .live-offline-state p {
    font-size: 16px;
  }

  .ultimas-grid {
    grid-template-columns: 1fr;
  }

  .mini-live-content h3 {
    font-size: 26px;
  }
}

/* PAINEL LIVE */
.admin-gate {
  padding: 34px 24px 24px;
  background:
    radial-gradient(circle at top left, rgba(215, 208, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #171717 0%, #101010 100%);
  border-bottom: 2px solid #d7d000;
}

.admin-gate-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  background: #101010;
  border: 1px solid #2d2d2d;
  border-left: 4px solid #d7d000;
}

.admin-gate-card h1 {
  margin-bottom: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
  color: #ffffff;
}

.admin-gate-card p {
  margin-bottom: 18px;
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.6;
}

.admin-login-form {
  display: grid;
  gap: 16px;
}

.secret-admin-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.secret-admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(6px);
}

.secret-admin-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 520px);
  margin: 10vh auto 0;
  padding: 26px;
  background: #101010;
  border: 1px solid #2d2d2d;
  border-top: 4px solid #d7d000;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.secret-admin-card h2 {
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
  color: #ffffff;
}

.secret-admin-card p {
  margin-bottom: 16px;
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.6;
}

.secret-admin-form {
  display: grid;
  gap: 16px;
}

.secret-admin-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid #3a3a3a;
  background: #171717;
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.secret-admin-close:hover {
  color: #d7d000;
  border-color: #d7d000;
  transform: translateY(-1px);
}

.live-admin-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}

.live-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  cursor: pointer;
  color: #111111;
  background: #d7d000;
  border: 2px solid #d7d000;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.live-admin-link:hover {
  background: #f0e800;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(215, 208, 0, 0.18);
}

.painel-page {
  padding-bottom: 38px;
}

.painel-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px 24px;
  background:
    radial-gradient(circle at top left, rgba(215, 208, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #191919 0%, #111111 100%);
  border-bottom: 2px solid #d7d000;
}

.painel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1.3px;
  color: #d7d000;
}

.painel-hero h1,
.painel-card-head h2,
.painel-live-item-head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
}

.painel-hero h1 {
  font-size: 62px;
  line-height: 0.95;
}

.painel-hero p,
.painel-card-head p,
.painel-feedback {
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.6;
}

.painel-form {
  display: grid;
  gap: 22px;
  padding: 24px;
  background: #121212;
}

.painel-tabs {
  display: flex;
  gap: 12px;
  padding: 0 24px 0;
  background: #121212;
}

.painel-tab {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid #343434;
  background: #171717;
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.painel-tab.ativo,
.painel-tab:hover {
  border-color: #d7d000;
  background: #1f1f1f;
  color: #d7d000;
}

.painel-card,
.painel-live-item {
  background: #101010;
  border: 1px solid #2d2d2d;
}

.painel-card {
  padding: 22px;
}

.painel-card-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.painel-card-head h2 {
  font-size: 38px;
  line-height: 1;
}

.painel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.painel-grid-main {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.painel-field {
  display: grid;
  gap: 8px;
}

.painel-field-full {
  grid-column: 1 / -1;
}

.painel-field span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #ffffff;
}

.painel-field input,
.painel-field select,
.painel-field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 14px;
  background: #171717;
  border: 1px solid #343434;
  color: #ffffff;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.painel-field input:focus,
.painel-field select:focus,
.painel-field textarea:focus {
  border-color: #d7d000;
  box-shadow: 0 0 0 3px rgba(215, 208, 0, 0.14);
}

.painel-field textarea {
  resize: vertical;
}

.painel-lives-list {
  display: grid;
  gap: 16px;
}

.painel-live-item {
  padding: 18px;
  border-left: 4px solid #d7d000;
}

.painel-live-item-head {
  margin-bottom: 14px;
}

.painel-live-item-head h3 {
  font-size: 30px;
  line-height: 1;
}

.painel-live-item-head p {
  margin-top: 6px;
}

.painel-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.painel-feedback {
  min-height: 26px;
}

.painel-feedback.success {
  color: #d7d000;
}

.painel-feedback.error {
  color: #ff6b6b;
}

@media (max-width: 1100px) {
  .painel-hero,
  .painel-grid-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .admin-gate,
  .painel-hero,
  .painel-form {
    padding-left: 14px;
    padding-right: 14px;
  }

  .admin-gate-card {
    padding: 22px;
  }

  .painel-card {
    padding: 18px;
  }

  .admin-gate-card h1,
  .painel-hero h1 {
    font-size: 42px;
  }

  .painel-grid {
    grid-template-columns: 1fr;
  }

  .painel-tabs {
    padding-left: 14px;
    padding-right: 14px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .live-admin-link,
  .painel-tab,
  .painel-actions .btn {
    width: 100%;
  }

  .secret-admin-card {
    margin-top: 8vh;
    padding: 22px 18px;
  }

  .secret-admin-card h2,
  .admin-gate-card h1,
  .painel-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 1100px) {
  .calendar-hero,
  .calendar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .calendar-hero,
  .calendar-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .calendar-hero-copy,
  .calendar-month-card,
  .calendar-card-body {
    padding: 22px;
  }

  .calendar-hero-copy h1 {
    font-size: 54px;
  }

  .calendar-month-card strong {
    font-size: 42px;
  }

  .calendar-month-stats {
    grid-template-columns: 1fr;
  }

  .calendar-card {
    grid-template-columns: 1fr;
  }

  .calendar-card-date {
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid #2d2d2d;
  }
}

@media (max-width: 600px) {
  .calendar-hero-copy h1 {
    font-size: 42px;
  }

  .calendar-card-body h2 {
    font-size: 32px;
  }
}
