/* =========================================================
   TV QUATI — Portal esportivo regional
   Mostarda · Preto profundo · Layout premium
   ========================================================= */

/* =========================================================
   Stat cards — botão de editar inline (admin only)
   ========================================================= */
.stat-card { position: relative; }
.stat-edit-btn {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(232, 172, 25, 0.35);
    background: rgba(255, 255, 255, 0.92);
    color: #92400e;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .18s, background .15s, transform .12s, border-color .15s;
    padding: 0;
    z-index: 2;
}
.stat-card:hover .stat-edit-btn { opacity: 1; }
.stat-edit-btn:hover { background: #e8ac19; color: #0b0b14; border-color: #e8ac19; transform: translateY(-1px); }
.stat-edit-btn:active { transform: translateY(0); }
.stat-edit-btn .material-symbols-rounded { font-size: 16px; }

/* =========================================================
   Espaços publicitários (ad slots) — slideshow + admin overlay
   ========================================================= */
.ad-space {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    min-height: 140px;
    max-height: 260px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(232,172,25,0.08) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    margin: 24px 0;
}
.ad-space--wide { aspect-ratio: 21 / 5; min-height: 110px; max-height: 200px; margin-top: 28px; }
.ad-space-track {
    position: absolute; inset: 0;
    display: flex;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
    will-change: transform;
}
.ad-space-slide {
    flex: 0 0 100%; min-width: 100%; height: 100%;
    background: center / cover no-repeat;
    cursor: pointer;
    position: relative;
}
.ad-space-slide a {
    position: absolute; inset: 0; display: block;
}
/* Empty state — "Anuncie aqui" */
.ad-space-empty {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #0c1024 0%, #1a1f3a 50%, #0c1024 100%);
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    cursor: pointer;
    transition: background .3s;
    font-family: var(--font-body, 'Inter', system-ui, sans-serif);
}
.ad-space-empty:hover { background: linear-gradient(135deg, #0c1024 0%, #2a2f5a 50%, #0c1024 100%); }
.ad-space-empty .material-symbols-rounded { font-size: 36px; color: #e8ac19; margin-bottom: 4px; }
.ad-space-empty strong { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; color: #fff; }
.ad-space-empty span:last-child { font-size: 13px; color: rgba(255,255,255,0.65); }
/* Quando tem imagens, esconde o empty state */
.ad-space.has-images .ad-space-empty { display: none; }

/* Admin overlay (botões em cima do espaço) */
.ad-space-admin {
    position: absolute; top: 10px; right: 10px;
    display: flex; gap: 6px;
    z-index: 3;
    opacity: 0;
    transition: opacity .2s;
}
.ad-space:hover .ad-space-admin { opacity: 1; }
.ad-space-btn {
    width: 34px; height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(11,11,20,0.78);
    color: #fff;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .15s, transform .12s, border-color .15s;
    padding: 0;
    backdrop-filter: blur(6px);
}
.ad-space-btn:hover { background: rgba(232,172,25,0.92); color: #0b0b14; border-color: #e8ac19; }
.ad-space-btn:active { transform: translateY(1px); }
.ad-space-btn .material-symbols-rounded { font-size: 18px; }
.ad-space-btn--danger:hover { background: rgba(220,38,38,0.92); color: #fff; border-color: #dc2626; }

/* Dots (paginação do slideshow) */
.ad-space-dots {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px;
    z-index: 2;
}
.ad-space-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background .2s, transform .15s;
    border: none; padding: 0;
}
.ad-space-dot.active { background: #e8ac19; transform: scale(1.3); }
.ad-space-dot:hover { background: rgba(255,255,255,0.7); }
.ad-space-dots:has(> :nth-child(1):last-child) { display: none; } /* esconde se só tem 1 imagem */

/* Controles administrativos — só visíveis quando JS adiciona body.lp-can-manage
   (usuário logado é admin ou autor da LP, via funcoes.php?cp_action=auth). */
.lp-admin-only { display: none !important; }
body.lp-can-manage .lp-admin-only { display: revert !important; }
/* Containers de toolbar/admin que precisam ser flex: o `revert` acima quebraria
   o `display: flex` da regra do componente — restauramos explicitamente aqui. */
body.lp-can-manage .live-player-toolbar.lp-admin-only,
body.lp-can-manage .schedule-toolbar.lp-admin-only { display: flex !important; }
body.lp-can-manage .schedule-row-actions.lp-admin-only { display: flex !important; }

   :root {
    --mustard: #e8ac19;
    --mustard-top: #fce566;
    --mustard-mid: #e8ac19;
    --mustard-bottom: #b88912;
    --mustard-deep: #8a670e;
    --mustard-dim: rgba(232, 172, 25, 0.15);
    --mustard-glow: rgba(232, 172, 25, 0.45);
    --gradient-mustard: linear-gradient(
      180deg,
      #fff2a8 0%,
      #fce566 12%,
      #f0be2e 38%,
      #e8ac19 62%,
      #c49314 88%,
      #a07810 100%
    );
    --gradient-mustard-hover: linear-gradient(
      180deg,
      #fff8c4 0%,
      #fde878 14%,
      #f2c736 40%,
      #ebb020 65%,
      #ce9618 100%
    );
    --gradient-accent-text: linear-gradient(105deg, #fff6c2 0%, #f0c030 35%, #e8ac19 65%, #d49914 100%);
    --black: #0f0f0f;
    --black-elev: #161616;
    --gray-light: #f3f3f3;
    --gray-muted: #e8e8e8;
    --gray-mid: #6b6b6b;
    --gray-dark: #2a2a2a;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-soft: #5c5c5c;
    --text-on-dark: #f5f5f5;
    --text-on-dark-soft: #b0b0b0;
    --border: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 0 1px rgba(232, 172, 25, 0.25), 0 12px 40px rgba(232, 172, 25, 0.12);
    --font-display: "Bebas Neue", "Impact", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --container: 1200px;
    --header-h: 72px;
    --transition: 0.25s ease;
    --mustard-shadow: #5c4408;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  }
  
  body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
  }
  
  img {
    max-width: 100%;
    display: block;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
  }
  
  ::selection {
    background: var(--mustard);
    color: var(--black);
  }
  
  /* Material Symbols Rounded (Google Fonts) */
  .material-symbols-rounded {
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 1.25em;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    font-variation-settings:
      "FILL" 0,
      "wght" 500,
      "GRAD" 0,
      "opsz" 24;
  }
  
  .btn .material-symbols-rounded {
    font-size: 1.35em;
  }
  
  .btn-sm .material-symbols-rounded {
    font-size: 1.25em;
  }
  
  .btn-lg .material-symbols-rounded,
  .btn-xl .material-symbols-rounded {
    font-size: 1.4em;
  }
  
  .btn-table .material-symbols-rounded {
    font-size: 1.15em;
  }
  
  .feature-icon .material-symbols-rounded {
    font-size: 28px;
  }
  
  .carousel-btn .material-symbols-rounded {
    font-size: 28px;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gradient-mustard);
    color: #1a1205;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 250, 220, 0.55);
    border-bottom-color: var(--mustard-deep);
    box-shadow:
      0 4px 0 var(--mustard-shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: top var(--transition);
  }
  
  .skip-link:focus {
    top: 16px;
  }
  
  .is-hidden {
    display: none !important;
  }
  
  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* ----- Header ----- */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--black);
    border-bottom: 3px solid var(--mustard);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    transition: box-shadow var(--transition), background var(--transition);
  }
  
  .site-header.scrolled {
    background: rgba(15, 15, 15, 0.96);
    backdrop-filter: blur(12px);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
  }
  
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    z-index: 1002;
  }
  
  .logo-img {
    height: 48px;
    width: auto;
    max-width: min(52px, 22vw);
    object-fit: contain;
    flex-shrink: 0;
    display: block;
  }
  
  .logo-text {
    font-family: var(--font-display);
    font-size: 1.65rem;
    letter-spacing: 0.06em;
    line-height: 1;
  }
  
  .logo-text strong {
    font-weight: 400;
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 1002;
    color: var(--white);
  }
  
  .nav-toggle-icon {
    font-size: 28px;
    line-height: 1;
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-list a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-on-dark-soft);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
  }
  
  .nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--gradient-mustard);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    transition: width var(--transition);
  }
  
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--white);
  }
  
  .nav-list a:hover::after,
  .nav-list a:focus-visible::after {
    width: 100%;
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* Buttons — gradiente amarelo + aparência física (3D) */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    border-style: solid;
    border-width: 1px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition:
      transform 0.14s ease,
      box-shadow 0.2s ease,
      background 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease,
      filter 0.2s ease;
  }
  
  .btn-sm {
    padding: 10px 16px;
    font-size: 12px;
    border-radius: var(--radius-sm);
  }
  
  .btn-lg {
    padding: 16px 28px;
    font-size: 13px;
  }
  
  .btn-xl {
    padding: 18px 32px;
    font-size: 14px;
  }
  
  .btn-block {
    width: 100%;
  }
  
  .btn-primary {
    background: var(--gradient-mustard);
    color: #1a1205;
    border-color: rgba(255, 248, 210, 0.55);
    border-bottom-color: var(--mustard-deep);
    border-right-color: #9a7012;
    box-shadow:
      0 5px 0 var(--mustard-shadow),
      0 10px 28px rgba(0, 0, 0, 0.35),
      0 6px 20px rgba(232, 172, 25, 0.35),
      inset 0 2px 0 rgba(255, 255, 255, 0.55),
      inset 0 -3px 0 rgba(0, 0, 0, 0.12);
  }
  
  .btn-primary:hover,
  .btn-primary:focus-visible {
    transform: translateY(-2px);
    background: var(--gradient-mustard-hover);
    box-shadow:
      0 7px 0 var(--mustard-shadow),
      0 14px 36px rgba(0, 0, 0, 0.38),
      0 8px 28px rgba(232, 172, 25, 0.45),
      inset 0 2px 0 rgba(255, 255, 255, 0.65),
      inset 0 -3px 0 rgba(0, 0, 0, 0.1);
  }
  
  .btn-primary:active {
    transform: translateY(3px);
    box-shadow:
      0 2px 0 var(--mustard-shadow),
      inset 0 4px 8px rgba(0, 0, 0, 0.22);
  }
  
  .btn-primary:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
  }
  
  .btn-outline {
    color: #5c4208;
    border-width: 2px;
    border-color: #d49914;
    border-top-color: #fce566;
    border-left-color: #e8c040;
    background: linear-gradient(180deg, #fffdf5 0%, #fff3c9 28%, #ffe08a 72%, #f0c94a 100%);
    box-shadow:
      0 4px 0 #8a670e,
      0 6px 16px rgba(0, 0, 0, 0.12),
      inset 0 2px 0 rgba(255, 255, 255, 0.85),
      inset 0 -2px 0 rgba(180, 130, 20, 0.25);
  }
  
  .btn-outline:hover,
  .btn-outline:focus-visible {
    background: linear-gradient(180deg, #ffffff 0%, #fff6d4 35%, #ffe566 100%);
    transform: translateY(-2px);
    box-shadow:
      0 6px 0 #8a670e,
      0 10px 22px rgba(0, 0, 0, 0.14),
      inset 0 2px 0 rgba(255, 255, 255, 0.95),
      inset 0 -2px 0 rgba(180, 130, 20, 0.2);
  }
  
  .btn-outline:active {
    transform: translateY(2px);
    box-shadow:
      0 2px 0 #8a670e,
      inset 0 3px 6px rgba(0, 0, 0, 0.12);
  }
  
  .btn-ghost {
    color: #fff8dc;
    border-width: 2px;
    border-color: rgba(232, 172, 25, 0.45);
    border-top-color: rgba(252, 229, 102, 0.65);
    background: linear-gradient(180deg, rgba(55, 55, 55, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
    box-shadow:
      0 5px 0 #050505,
      0 8px 24px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -2px 0 rgba(0, 0, 0, 0.35);
  }
  
  .btn-ghost:hover,
  .btn-ghost:focus-visible {
    border-color: #f0c030;
    color: #fff2a8;
    background: linear-gradient(180deg, rgba(75, 62, 28, 0.55) 0%, rgba(22, 20, 12, 0.95) 100%);
    box-shadow:
      0 5px 0 #050505,
      0 0 0 1px rgba(232, 172, 25, 0.35),
      0 10px 28px rgba(232, 172, 25, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
  }
  
  .btn-ghost:active {
    transform: translateY(2px);
    box-shadow:
      0 2px 0 #050505,
      inset 0 3px 8px rgba(0, 0, 0, 0.35);
  }
  
  .btn-ghost-light {
    border-width: 2px;
    border-color: rgba(252, 229, 102, 0.55);
    border-bottom-color: rgba(180, 130, 20, 0.85);
    color: #fffef8;
    background: linear-gradient(180deg, rgba(40, 38, 30, 0.92) 0%, rgba(8, 8, 6, 0.94) 100%);
    box-shadow:
      0 6px 0 rgba(0, 0, 0, 0.55),
      0 12px 32px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 224, 130, 0.2),
      inset 0 -2px 0 rgba(0, 0, 0, 0.4);
  }
  
  .btn-ghost-light:hover {
    background: linear-gradient(180deg, rgba(90, 72, 24, 0.65) 0%, rgba(12, 10, 6, 0.95) 100%);
    border-top-color: #fce566;
    transform: translateY(-2px);
    box-shadow:
      0 8px 0 rgba(0, 0, 0, 0.45),
      0 0 28px rgba(232, 172, 25, 0.22),
      inset 0 1px 0 rgba(255, 240, 180, 0.35);
  }
  
  .btn-ghost-light:active {
    transform: translateY(3px);
    box-shadow:
      0 3px 0 rgba(0, 0, 0, 0.45),
      inset 0 4px 10px rgba(0, 0, 0, 0.35);
  }
  
  .btn-table {
    padding: 8px 16px;
    font-size: 11px;
    border-radius: var(--radius-sm);
    background: var(--gradient-mustard);
    color: #1a1205;
    border-color: rgba(255, 248, 210, 0.5);
    border-bottom-color: var(--mustard-deep);
    box-shadow:
      0 3px 0 var(--mustard-shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  
  .btn-table:hover {
    transform: translateY(-1px);
    box-shadow:
      0 5px 0 var(--mustard-shadow),
      0 6px 16px rgba(232, 172, 25, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }
  
  .btn-table:active {
    transform: translateY(2px);
    box-shadow:
      0 1px 0 var(--mustard-shadow),
      inset 0 2px 4px rgba(0, 0, 0, 0.15);
  }
  
  .btn-table--ghost {
    background: linear-gradient(180deg, #fafafa 0%, #ececec 100%);
    border: 1px solid #c8c8c8;
    border-bottom-color: #9a9a9a;
    color: var(--text);
    box-shadow:
      0 3px 0 #b0b0b0,
      inset 0 1px 0 #fff;
  }
  
  .btn-table--ghost:hover {
    transform: translateY(-1px);
  }
  
  .btn-table--ghost:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #b0b0b0;
  }
  
  .section--light .btn-table--ghost {
    border-color: #ccc;
  }
  
  .btn-youtube {
    background: #ff0000;
    color: var(--white);
  }
  
  .btn-youtube:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
  }
  
  .btn-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: var(--white);
  }
  
  .btn-instagram:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
  }
  
  /* ----- Hero ----- */
  .hero {
    position: relative;
    min-height: min(92vh, 900px);
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--black) url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1920&q=80") center / cover no-repeat;
    transform: scale(1.02);
  }
  
  .hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    filter: grayscale(1);
  }
  
  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Cobre o hero em 16:9 (letterbox crop) */
    width: max(100vw, 177.78vh);
    height: max(56.25vw, 100vh);
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
  }
  
  /* file:// — iframe YouTube no hero evita erros de origem opaca no Chrome */
  html.is-file-protocol .hero-video-wrap {
    display: none;
  }
  
  .hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      118deg,
      rgba(15, 15, 15, 0.94) 0%,
      rgba(15, 15, 15, 0.78) 38%,
      rgba(15, 15, 15, 0.42) 52%,
      rgba(15, 15, 15, 0.88) 100%
    );
  }
  
  .hero-mustard-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
      ellipse 120% 85% at 94% 6%,
      rgba(232, 172, 25, 0.42) 0%,
      rgba(232, 172, 25, 0.22) 28%,
      rgba(232, 172, 25, 0.08) 52%,
      transparent 72%
    );
  }
  
  .hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.06;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  }
  
  /* Indicador estilo câmera / transmissão ao vivo */
  .hero-rec-badge {
    position: absolute;
    top: calc(var(--header-h) + 18px);
    right: max(16px, env(safe-area-inset-right));
    z-index: 15;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 16px;
    background: rgba(8, 8, 8, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    pointer-events: none;
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(229, 57, 53, 0.35);
  }
  
  .hero-rec-dot {
    flex-shrink: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff8a80, #c62828 55%, #8b0000);
    box-shadow:
      0 0 0 0 rgba(229, 57, 53, 0.65),
      inset 0 -2px 4px rgba(0, 0, 0, 0.35);
    animation: hero-rec-pulse 1.15s ease-in-out infinite;
  }
  
  .hero-rec-text {
    animation: hero-rec-flicker 2.4s ease-in-out infinite;
  }
  
  @keyframes hero-rec-pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
      box-shadow:
        0 0 0 0 rgba(229, 57, 53, 0.55),
        inset 0 -2px 4px rgba(0, 0, 0, 0.35);
    }
  
    50% {
      opacity: 0.92;
      transform: scale(1.08);
      box-shadow:
        0 0 0 10px rgba(229, 57, 53, 0),
        inset 0 -2px 4px rgba(0, 0, 0, 0.35);
    }
  }
  
  @keyframes hero-rec-flicker {
    0%,
    45%,
    55%,
    100% {
      opacity: 1;
    }
  
    48%,
    52% {
      opacity: 0.72;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .hero-rec-dot {
      animation: none;
      box-shadow: 0 0 8px rgba(229, 57, 53, 0.5);
    }
  
    .hero-rec-text {
      animation: none;
    }
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.95fr);
    grid-template-rows: auto auto;
    column-gap: clamp(28px, 4vw, 56px);
    row-gap: 0;
  }
  
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    padding-bottom: 0;
  }
  
  .hero-visual {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 0;
  }
  
  .hero-mascot-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
  
  @keyframes hero-broadcast-wave {
    0% {
      transform: translate(-50%, -50%) scale(0.76);
      opacity: 0.92;
    }
    35% {
      opacity: 0.55;
    }
    65% {
      opacity: 0.18;
    }
    100% {
      transform: translate(-50%, -50%) scale(1.48);
      opacity: 0;
    }
  }
  
  .hero-mascot-ring {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
    border-style: solid;
    animation: hero-broadcast-wave var(--ring-dur, 2.35s) cubic-bezier(0.18, 0.72, 0.32, 1) infinite;
    animation-delay: var(--ring-delay, 0s);
  }
  
  /* Ondas escalonadas: mais anéis = sinal contínuo tipo transmissão ao vivo */
  .hero-mascot-ring--w1 {
    width: min(56%, 240px);
    border-width: 3px;
    border-color: rgba(232, 172, 25, 0.72);
    box-shadow:
      0 0 20px rgba(232, 172, 25, 0.35),
      0 0 56px rgba(232, 172, 25, 0.28),
      inset 0 0 28px rgba(232, 172, 25, 0.12);
    --ring-dur: 2.05s;
    --ring-delay: 0s;
  }
  
  .hero-mascot-ring--w2 {
    width: min(68%, 300px);
    border-width: 2px;
    border-color: rgba(232, 172, 25, 0.58);
    box-shadow: 0 0 48px rgba(232, 172, 25, 0.22), 0 0 88px rgba(232, 172, 25, 0.12);
    --ring-dur: 2.35s;
    --ring-delay: 0.32s;
  }
  
  .hero-mascot-ring--w3 {
    width: min(80%, 360px);
    border-width: 2px;
    border-color: rgba(232, 172, 25, 0.48);
    box-shadow: 0 0 52px rgba(232, 172, 25, 0.18), 0 0 100px rgba(232, 172, 25, 0.08);
    --ring-dur: 2.65s;
    --ring-delay: 0.64s;
  }
  
  .hero-mascot-ring--w4 {
    width: min(92%, 420px);
    border-width: 2px;
    border-color: rgba(232, 172, 25, 0.38);
    box-shadow: 0 0 56px rgba(232, 172, 25, 0.14);
    --ring-dur: 2.95s;
    --ring-delay: 0.96s;
  }
  
  .hero-mascot-ring--w5 {
    width: min(100%, 500px);
    border-width: 2px;
    border-color: rgba(232, 172, 25, 0.34);
    box-shadow: 0 0 72px rgba(232, 172, 25, 0.16), 0 0 140px rgba(232, 172, 25, 0.08);
    --ring-dur: 3.25s;
    --ring-delay: 1.28s;
  }
  
  .hero-mascot {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 90px rgba(232, 172, 25, 0.2));
  }
  
  .hero-mascot-frame::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 10%;
    right: 10%;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.42) 0%, transparent 78%);
    z-index: 0;
    pointer-events: none;
  }
  
  .hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 16px;
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6.5vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 20px;
    max-width: 18ch;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
  }
  
  /* Destaque tipo marcador — degradê mostarda */
  .hero-title-mark {
    display: inline;
    padding: 0.06em 0.2em 0.03em;
    margin: 0 -0.03em;
    border-radius: 0.06em;
    color: #160f04;
    text-shadow: none;
    background: linear-gradient(
      118deg,
      #fff9e0 0%,
      #fce566 22%,
      #f0be2e 48%,
      #e8ac19 72%,
      #c49314 100%
    );
    box-shadow:
      0 3px 0 rgba(92, 68, 8, 0.35),
      inset 0 2px 0 rgba(255, 255, 255, 0.55),
      inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  
  .hero-lead {
    font-size: 1.125rem;
    color: var(--text-on-dark-soft);
    max-width: 520px;
    margin: 0 0 32px;
  }
  
  .hero-lead strong {
    color: var(--white);
  }
  
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
  }
  
  .hero-cards {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 100%;
    margin-top: 0;
    padding-top: clamp(24px, 3.5vw, 36px);
    border-top: 3px solid var(--mustard);
  }

  /* Faixa que envolve o espaço publicitário abaixo das colunas do hero —
     ocupa toda a largura do container. Sem borda/padding/margin: o ad-space
     fica encaixado direto sob as colunas. */
  .hero-ad-band {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }
  .hero-ad-band .ad-space { margin: 0; }
  
  .live-card {
    background: rgba(22, 22, 22, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  
  .live-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 172, 25, 0.35);
    box-shadow: var(--shadow-glow);
  }
  
  .live-card--pulse {
    position: relative;
  }
  
  .live-card--pulse::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(232, 172, 25, 0.4);
    animation: pulse-ring 2.5s ease-out infinite;
  }
  
  @keyframes pulse-ring {
    0% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(1.03);
    }
  }
  
  .live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e53935;
    margin-right: 8px;
    vertical-align: middle;
    animation: blink 1.2s step-end infinite;
  }
  
  @keyframes blink {
    50% {
      opacity: 0.35;
    }
  }
  
  .live-card-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .live-card-label--muted {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--text-on-dark-soft);
  }
  
  .live-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 6px;
    line-height: 1.1;
  }
  
  .live-card-stat {
    margin: 0;
  }
  
  .live-card-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    letter-spacing: 0.04em;
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .live-card-meta {
    font-size: 13px;
    color: var(--text-on-dark-soft);
    margin: 0;
  }
  
  /* ----- Sections ----- */
  .section,
  .hero {
    scroll-margin-top: calc(var(--header-h) + 16px);
  }
  
  .section {
    position: relative;
    padding: 96px 0;
  }
  
  .section--light {
    background: var(--white);
  }
  
  .section--muted {
    background: var(--gray-light);
  }
  
  .section--dark {
    background: var(--black);
    color: var(--text-on-dark);
  }
  
  .section-head {
    max-width: 720px;
    margin-bottom: 48px;
  }
  
  .section-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 12px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #1a1205;
    background: var(--gradient-mustard);
    border: 1px solid rgba(255, 248, 210, 0.55);
    border-bottom-color: var(--mustard-deep);
    box-shadow:
      0 3px 0 var(--mustard-shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
  
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0 0 16px;
    color: var(--text);
  }
  
  .section-title--on-dark {
    color: var(--white);
  }
  
  .section-desc {
    font-size: 1.05rem;
    color: var(--text-soft);
    margin: 0;
  }
  
  .section--dark .section-desc {
    color: var(--text-on-dark-soft);
  }
  
  /* ----- Transmissão ao vivo (YouTube) ----- */
  .section--live-player {
    padding: 40px 0 96px;
  }
  
  .live-player-wrap {
    max-width: min(100%, 1040px);
    margin: 0 auto;
  }
  
  .live-player-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
  }
  
  .live-player-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(165deg, #141414 0%, #050505 100%);
    border: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  }
  
  .live-youtube-iframe {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .live-player-wrap:not(.is-live-active) .live-youtube-iframe {
    display: none !important;
  }
  
  .live-player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(20px, 5vw, 48px);
    background: radial-gradient(ellipse 90% 80% at 50% 40%, rgba(232, 172, 25, 0.14) 0%, rgba(10, 10, 10, 0.94) 52%, #050505 100%);
  }
  
  .live-player-wrap.is-live-active .live-player-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  
  .live-player-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 440px;
  }
  
  .live-overlay-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mustard);
    margin: 0 0 14px;
  }
  
  .live-overlay-league {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4vw, 2rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 14px;
    line-height: 1.12;
  }
  
  .live-overlay-shields {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3.5vw, 28px);
    margin: 0 0 14px;
  }
  
  .live-overlay-shields .shield {
    width: clamp(40px, 9vw, 52px);
    height: clamp(46px, 10.5vw, 60px);
    border-radius: 6px 6px 16px 16px;
  }
  
  .live-overlay-vs {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    color: var(--mustard);
    line-height: 1;
    opacity: 0.95;
  }
  
  .live-overlay-match {
    font-size: clamp(1rem, 2.8vw, 1.28rem);
    font-weight: 700;
    color: #f0f0f0;
    margin: 0 0 8px;
  }
  
  .live-overlay-meta {
    font-size: 15px;
    color: var(--text-on-dark-soft);
    margin: 0 0 20px;
  }
  
  .live-overlay-hint {
    font-size: 14px;
    color: var(--text-on-dark-soft);
    line-height: 1.55;
    margin: 0 0 22px;
  }
  
  .live-url-dialog .live-url-help {
    margin: 0 0 18px;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
  }
  
  .live-url-edit-btn-inline {
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  
    .live-card--pulse::before,
    .live-dot {
      animation: none;
    }
  
    .hero-mascot-ring {
      animation: none !important;
      animation-delay: 0s !important;
      opacity: 0.4;
      transform: translate(-50%, -50%) scale(1);
    }
  
    .hero-video-wrap {
      display: none;
    }
  
    .btn:hover,
    .btn:focus-visible {
      transform: none;
    }
  
    .btn:active {
      transform: translateY(1px);
    }
  }
  
  /* ----- Próximas transmissões (tabela) ----- */
  .schedule-table-wrap {
    border-radius: var(--radius-lg);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--gray-muted);
    box-shadow: var(--shadow-sm);
  }
  
  .schedule-table {
    width: 100%;
    min-width: 1040px;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--white);
  }
  
  .schedule-table thead {
    background: var(--black);
    color: var(--white);
  }
  
  .schedule-table th {
    text-align: left;
    padding: 16px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 3px solid var(--mustard);
  }
  
  .schedule-table td {
    padding: 18px;
    border-bottom: 1px solid var(--gray-muted);
    vertical-align: middle;
  }
  
  .schedule-action-cell {
    white-space: nowrap;
    text-align: right;
  }
  
  .schedule-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px 20px;
    margin-bottom: 20px;
  }
  
  .schedule-row-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  /* Cidade + ícone de info com tooltip do endereço (em tabela e replay cards) */
  .schedule-city-cell { white-space: nowrap; }
  .schedule-city-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 4px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--mustard, #e8ac19);
    cursor: help;
    vertical-align: middle;
    position: relative;
    transition: background .15s, color .15s;
  }
  .schedule-city-info:hover,
  .schedule-city-info:focus-visible { background: rgba(232, 172, 25, 0.16); color: #b88912; outline: none; }
  .schedule-city-info .material-symbols-rounded { font-size: 16px; }
  .schedule-city-info::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #0b0b14;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    white-space: normal;
    width: max-content;
    max-width: 260px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s, transform .18s;
    z-index: 50;
  }
  .schedule-city-info::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #0b0b14;
    opacity: 0;
    transition: opacity .18s;
    pointer-events: none;
    z-index: 50;
  }
  .schedule-city-info:hover::after,
  .schedule-city-info:focus-visible::after,
  .schedule-city-info:hover::before,
  .schedule-city-info:focus-visible::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  /* Replay sem URL — aparência desativada (mas visível para sinalizar status) */
  .btn.is-disabled { opacity: .55; pointer-events: none; cursor: not-allowed; }
  
  .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-muted);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition:
      border-color var(--transition),
      background var(--transition),
      color var(--transition),
      transform 0.14s ease;
  }
  
  .btn-icon:hover,
  .btn-icon:focus-visible {
    border-color: var(--mustard);
    color: var(--mustard-deep);
    outline: none;
  }
  
  .btn-icon:focus-visible {
    box-shadow: 0 0 0 2px rgba(232, 172, 25, 0.35);
  }
  
  .btn-icon .material-symbols-rounded {
    font-size: 22px;
  }
  
  .schedule-btn-delete:hover,
  .schedule-btn-delete:focus-visible {
    border-color: rgba(198, 40, 40, 0.45);
    color: #c62828;
  }
  
  .schedule-empty {
    padding: 28px 18px !important;
    text-align: center;
    color: var(--text-soft);
    font-size: 15px;
  }
  
  /* ================================================================
     Dialog "Nova transmissão" — padronizado com o modal de gerenciamento (.tvq-mgmt)
     Paleta: mostarda #e8ac19 + #0b0b14, tipografia Inter, mesmos radius/sombras
     ================================================================ */
  .schedule-dialog {
    box-sizing: border-box;
    width: 100%;
    max-width: min(680px, calc(100vw - 24px));
    max-height: 90vh;
    margin: auto;
    padding: 0;
    border: 1px solid #f1f3f5;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,.32);
    color: #0b0b14;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow: hidden;
    overscroll-behavior: contain;
  }
  /* IMPORTANTE: display:flex SÓ quando o <dialog> está aberto.
     Sem o seletor [open], o dialog renderiza inline na página. */
  .schedule-dialog[open] {
    display: flex;
    flex-direction: column;
  }
  .schedule-dialog::backdrop {
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(2px);
  }
  .schedule-form {
    box-sizing: border-box;
    padding: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .schedule-dialog[open] .schedule-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  /* Header do dialog — ícone + título + subtítulo (padrão tvq-mgmt-header) */
  .schedule-dialog-title {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid #f1f3f5;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0b0b14;
    text-transform: none;
    letter-spacing: -0.01em;
  }
  .schedule-dialog-title::before {
    content: 'sports_soccer';
    font-family: 'Material Symbols Rounded';
    font-size: 26px;
    font-weight: 400;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fce566 0%, #e8ac19 100%);
    color: #0b0b14;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(232,172,25,.28);
  }
  /* Ícone específico do dialog "URL da transmissão" — link em vez de bola */
  .live-url-dialog .schedule-dialog-title::before { content: 'link'; }
  /* Ícone do dialog "Editar estatística" */
  .stat-edit-dialog .schedule-dialog-title::before { content: 'edit'; }

  /* Body scrollável (form grid) */
  .schedule-form-grid {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 22px 24px;
    margin: 0;
    min-width: 0;
  }
  .schedule-form-grid::-webkit-scrollbar { width: 8px; }
  .schedule-form-grid::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }
  .schedule-form-grid::-webkit-scrollbar-thumb:hover { background: #d1d5db; }

  .schedule-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }
  .schedule-field--wide { grid-column: 1 / -1; }
  .schedule-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b7280;
  }
  .schedule-field input,
  .schedule-field select {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font: inherit;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 9px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #0b0b14;
    transition: border-color .15s, box-shadow .15s;
  }
  .schedule-field input::placeholder { color: #9ca3af; }
  .schedule-field input:focus,
  .schedule-field select:focus,
  .schedule-field input:focus-visible,
  .schedule-field select:focus-visible {
    outline: none;
    border-color: #e8ac19;
    box-shadow: 0 0 0 3px rgba(232,172,25,.18);
  }

  /* Footer com botões — fixo (não rola) */
  .schedule-form-actions {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: #fafbfc;
    border-top: 1px solid #f1f3f5;
    min-width: 0;
  }
  /* Botões — sobrescreve completamente o .btn da LP */
  .schedule-form-actions button,
  .schedule-form-actions .btn,
  .schedule-form-actions .btn-primary,
  .schedule-form-actions .btn-ghost,
  .schedule-form-actions .btn-secondary,
  .schedule-form-actions .btn-sm {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 10px 18px !important;
    border-radius: 9px !important;
    border: 1px solid transparent !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    transition: all .15s !important;
    white-space: nowrap !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    min-height: 38px !important;
    text-shadow: none !important;
  }
  .schedule-form-actions .btn-primary {
    background: linear-gradient(135deg, #e8ac19 0%, #c98a07 100%) !important;
    color: #0b0b14 !important;
    box-shadow: 0 2px 8px rgba(232,172,25,.32) !important;
  }
  .schedule-form-actions .btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232,172,25,.4) !important;
  }
  .schedule-form-actions .btn-ghost,
  .schedule-form-actions .btn-secondary {
    background: transparent !important;
    color: #6b7280 !important;
    border-color: #e5e7eb !important;
  }
  .schedule-form-actions .btn-ghost:hover,
  .schedule-form-actions .btn-secondary:hover {
    background: #f3f4f6 !important;
    color: #374151 !important;
    border-color: #d1d5db !important;
  }

  /* Esconde o seletor de cor do escudo no dialog (form fica mais limpo) */
  .schedule-field:has(.shield-picker) { display: none !important; }

  /* === Body do dialog quando NÃO usa .schedule-form-grid (ex.: live-url-dialog) ===
     Aplica padding e espaçamento consistente entre header e footer */
  .schedule-form > .live-url-help {
    flex: 1;
    margin: 0;
    padding: 20px 24px 6px;
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.55;
    overflow-y: auto;
  }
  .schedule-form > .schedule-field,
  .schedule-form > .schedule-field--wide {
    padding: 4px 24px 18px;
    margin: 0;
  }
  .live-url-dialog .schedule-form { padding: 0; }
  .live-url-dialog .schedule-dialog-title { padding-bottom: 16px; }
  
  /* Escolha de cor do escudo no modal (ponto + número) */
  .shield-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
  }
  
  .shield-picker-option {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 52px;
    padding: 10px 8px 8px;
    border: 2px solid var(--gray-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: var(--white);
    transition:
      border-color var(--transition),
      box-shadow var(--transition),
      transform 0.12s ease;
    user-select: none;
  }
  
  .shield-picker-option:hover {
    border-color: rgba(232, 172, 25, 0.55);
  }
  
  .shield-picker-option:has(input:checked) {
    border-color: var(--mustard);
    box-shadow: 0 0 0 2px rgba(232, 172, 25, 0.28);
  }
  
  .shield-picker-option:has(input:focus-visible) {
    outline: 2px solid var(--mustard);
    outline-offset: 2px;
  }
  
  .shield-picker-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
  }
  
  .shield-picker-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow:
      inset 0 -3px 0 rgba(0, 0, 0, 0.2),
      inset 0 2px 0 rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.12);
  }
  
  .shield-picker-dot--a {
    background: linear-gradient(160deg, #1e3a5f, #0d1f33);
  }
  
  .shield-picker-dot--b {
    background: linear-gradient(160deg, #2d6a4f, #1b4332);
  }
  
  .shield-picker-dot--c {
    background: linear-gradient(160deg, #005f73, #0a9396);
  }
  
  .shield-picker-dot--d {
    background: linear-gradient(160deg, #9d0208, #6a040f);
  }
  
  .shield-picker-dot--e {
    background: linear-gradient(160deg, #5a189a, #3c096c);
  }
  
  .shield-picker-dot--f {
    background: linear-gradient(160deg, #bc6c25, #606c38);
  }
  
  .shield-picker-dot--g {
    background: linear-gradient(160deg, #264653, #1d3557);
  }
  
  .shield-picker-dot--h {
    background: linear-gradient(160deg, #0077b6, #023e8a);
  }
  
  .shield-picker-dot--i {
    background: linear-gradient(160deg, #6d597a, #355070);
  }
  
  .shield-picker-dot--j {
    background: linear-gradient(160deg, #e63946, #9d0208);
  }
  
  .shield-picker-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--text-soft);
  }
  
  @media (max-width: 440px) {
    .schedule-dialog {
      max-width: calc(100vw - 16px);
    }
  
    .schedule-form-grid {
      grid-template-columns: 1fr;
    }
  
    .schedule-form-actions {
      flex-direction: column-reverse;
      align-items: stretch;
    }
  
    .schedule-form-actions .btn {
      justify-content: center;
    }
  }
  
  .schedule-table tbody tr {
    transition: background var(--transition);
  }
  
  .schedule-table tbody tr:hover {
    background: rgba(232, 172, 25, 0.06);
  }
  
  .schedule-match {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 600;
  }
  
  .team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .vs {
    font-family: var(--font-display);
    color: var(--gray-mid);
    font-size: 1.1rem;
  }
  
  .shield {
    width: 28px;
    height: 32px;
    border-radius: 4px 4px 10px 10px;
    flex-shrink: 0;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15);
  }

  /* Brasão a partir de imagem (cadastrado no modal "Gerenciar times") —
     mostra a logo recortada no formato do escudo. Mantém a moldura/sombra. */
  .shield--img {
    background: #fff center / contain no-repeat;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
  
  .shield--a {
    background: linear-gradient(160deg, #1e3a5f, #0d1f33);
  }
  
  .shield--b {
    background: linear-gradient(160deg, #2d6a4f, #1b4332);
  }
  
  .shield--c {
    background: linear-gradient(160deg, #005f73, #0a9396);
  }
  
  .shield--d {
    background: linear-gradient(160deg, #9d0208, #6a040f);
  }
  
  .shield--e {
    background: linear-gradient(160deg, #5a189a, #3c096c);
  }
  
  .shield--f {
    background: linear-gradient(160deg, #bc6c25, #606c38);
  }
  
  .shield--g {
    background: linear-gradient(160deg, #264653, #1d3557);
  }
  
  .shield--h {
    background: linear-gradient(160deg, #0077b6, #023e8a);
  }
  
  .shield--i {
    background: linear-gradient(160deg, #6d597a, #355070);
  }
  
  .shield--j {
    background: linear-gradient(160deg, #e63946, #9d0208);
  }
  
  .badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
  }
  
  .badge--live {
    background: rgba(229, 57, 53, 0.15);
    color: #c62828;
    border: 1px solid rgba(229, 57, 53, 0.4);
  }
  
  .badge--soon {
    background: var(--gray-light);
    color: var(--gray-mid);
    border: 1px solid var(--gray-muted);
  }
  
  .badge--archive {
    background: rgba(232, 172, 25, 0.1);
    color: #6b4e0a;
    border: 1px solid rgba(232, 172, 25, 0.32);
  }
  
  .schedule-sport-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1a1205;
    background: var(--gradient-mustard);
    border: 1px solid rgba(255, 248, 210, 0.65);
    border-bottom-color: var(--mustard-deep);
    border-radius: var(--radius-sm);
    box-shadow:
      0 3px 0 var(--mustard-shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }
  
  .schedule-sport-badge--table {
    padding: 5px 10px;
    font-size: 10px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    box-shadow:
      0 2px 0 var(--mustard-shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  
  /* ----- Últimos jogos (grid replay) ----- */
  .schedule-replay {
    margin-top: clamp(48px, 8vw, 72px);
    padding-top: clamp(40px, 6vw, 56px);
    border-top: 1px solid var(--gray-muted);
  }
  
  .schedule-replay-head {
    margin-bottom: clamp(22px, 4vw, 32px);
    max-width: 720px;
  }
  
  .schedule-replay-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .schedule-replay-title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3.2vw, 2rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--text);
  }
  
  .schedule-replay-desc {
    margin: 0;
    font-size: 1.02rem;
    color: var(--text-soft);
  }
  
  .replay-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    align-items: stretch;
  }
  
  .replay-grid-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px 20px;
    text-align: center;
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--text-soft);
    background: var(--gray-light);
    border: 1px dashed var(--gray-muted);
    border-radius: var(--radius-lg);
  }
  
  .replay-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    background: var(--white);
    border: 1px solid var(--gray-muted);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .replay-card > .btn {
    margin-top: auto;
  }
  
  .replay-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  
  .replay-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 700;
  }
  
  .replay-card-date {
    font-variant-numeric: tabular-nums;
  }
  
  .replay-card-sport {
    margin: 0 0 12px;
  }
  
  .replay-card-league {
    font-family: var(--font-display);
    font-size: 1.28rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: var(--text);
  }
  
  .replay-card-match {
    margin-bottom: 8px;
  }
  
  .replay-card-meta {
    color: var(--text-soft);
    font-size: 14px;
    margin: 0 0 16px;
  }
  
  @media (max-width: 1000px) and (min-width: 601px) {
    .replay-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 600px) {
    .replay-grid {
      grid-template-columns: 1fr;
      max-width: 440px;
      margin: 0 auto;
    }
  }
  
  /* ----- About ----- */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
  }
  
  .about-text {
    color: var(--text-soft);
    margin: 0 0 16px;
  }
  
  .about-bullets {
    margin: 24px 0 0;
    padding-left: 20px;
    color: var(--text-soft);
  }
  
  .about-bullets li {
    margin-bottom: 8px;
  }
  
  .about-figure {
    margin: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
  }
  
  .about-figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .about-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.85));
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
  }
  
  .stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .stat-card {
    background: var(--gray-light);
    border: 1px solid var(--gray-muted);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  
  .stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.75rem;
    letter-spacing: 0.04em;
    line-height: 1;
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .stat-label {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
  }
  
  /* ----- Features ----- */
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .feature-card {
    background: var(--white);
    border: 1px solid var(--gray-muted);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  
  .feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 172, 25, 0.35);
    box-shadow: var(--shadow-glow);
  }
  
  .feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    background: var(--black);
    color: var(--mustard);
    margin-bottom: 18px;
  }
  
  .feature-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--text);
  }
  
  .feature-text {
    margin: 0;
    font-size: 15px;
    color: var(--text-soft);
  }
  
  /* ----- Carousel ads ----- */
  .carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: stretch;
  }
  
  .carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-muted);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }
  
  .carousel-track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .carousel-slide {
    flex-shrink: 0;
    padding: 0;
  }
  
  .carousel-slide.is-active .ad-slide {
    opacity: 1;
  }
  
  .carousel-btn {
    width: 48px;
    align-self: center;
    height: 48px;
    border-radius: 50%;
    background: var(--black);
    color: var(--mustard);
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  }
  
  .carousel-btn:hover,
  .carousel-btn:focus-visible {
    transform: scale(1.06);
    box-shadow: var(--shadow-glow);
  }
  
  .carousel-dots {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-muted);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
  }
  
  .carousel-dot[aria-selected="true"] {
    background: var(--gradient-mustard);
    box-shadow:
      0 2px 0 var(--mustard-shadow),
      inset 0 1px 1px rgba(255, 255, 255, 0.55),
      inset 0 -1px 1px rgba(0, 0, 0, 0.2);
    transform: scale(1.22);
  }
  
  .ad-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
    min-height: 360px;
    opacity: 0.96;
  }
  
  .ad-mock {
    border-radius: var(--radius-lg);
    background: var(--gray-light);
    border: 1px solid var(--gray-muted);
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: grid;
    place-items: center;
  }
  
  .ad-mock--tv {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(160deg, #141414 0%, #0a0a0a 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }
  
  .ad-mock-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    background: #c62828;
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 6px 10px;
    border-radius: 4px;
  }
  
  /* Mock transmissão: vídeo + banner em L (faixa inferior + coluna direita) */
  .ad-mock-tv-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #050505;
  }
  
  .ad-mock-tv-screen {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 75% 65% at 45% 42%, rgba(55, 55, 55, 0.35) 0%, transparent 58%),
      radial-gradient(ellipse at center, #232323 0%, #0d0d0d 55%, #060606 100%);
  }
  
  .ad-mock-tv-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background: repeating-linear-gradient(
      180deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.45) 2px,
      rgba(0, 0, 0, 0.45) 3px
    );
    pointer-events: none;
  }
  
  .ad-mock-tv-sponsor-chip {
    position: absolute;
    top: 10%;
    right: clamp(52px, 19%, 92px);
    z-index: 2;
    font-size: clamp(8px, 1.4vw, 10px);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1205;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(252, 229, 102, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  }
  
  .ad-mock-l-vertical {
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 20%;
    width: clamp(44px, 17%, 76px);
    z-index: 2;
    background: var(--gradient-mustard);
    border-left: 1px solid rgba(255, 250, 220, 0.45);
    box-shadow:
      inset 3px 0 0 rgba(255, 255, 255, 0.35),
      -6px 0 18px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ad-mock-l-vertical-text {
    display: block;
    transform: rotate(-90deg);
    font-family: var(--font-display);
    font-size: clamp(0.55rem, 1.6vw, 0.72rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1a1205;
    white-space: nowrap;
  }
  
  .ad-mock-l-horizontal {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20%;
    min-height: 38px;
    z-index: 3;
    background: var(--gradient-mustard);
    border-top: 1px solid rgba(255, 250, 220, 0.5);
    box-shadow:
      inset 0 3px 0 rgba(255, 255, 255, 0.42),
      0 -6px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    padding-right: clamp(48px, 18%, 84px);
  }
  
  .ad-mock-l-horizontal-text {
    font-family: var(--font-display);
    font-size: clamp(0.58rem, 1.8vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1205;
    text-align: center;
    line-height: 1.25;
  }
  
  /* Logo patrocinador: cantos + vinheta inferior tipo transmissão */
  .ad-mock--logo {
    display: block;
    padding: 14px;
    width: 100%;
    max-width: min(100%, 360px);
    margin: 0 auto;
    background: linear-gradient(165deg, #1a1a1a 0%, #0c0c0c 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }
  
  .ad-mock-logo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #050505;
  }
  
  .ad-mock-logo-screen {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 55% at 50% 45%, rgba(80, 80, 80, 0.25) 0%, transparent 55%),
      linear-gradient(180deg, #1e1e1e 0%, #0a0a0a 100%);
  }
  
  .ad-mock-logo-patch {
    position: absolute;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(9px, 2vw, 11px);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #1a1205;
    padding: 5px 8px;
    border-radius: 4px;
    background: var(--gradient-mustard);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  }
  
  .ad-mock-logo-patch--tl {
    top: 10%;
    left: 8%;
  }
  
  .ad-mock-logo-patch--tr {
    top: 10%;
    right: 8%;
  }
  
  .ad-mock-logo-lowerthird {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.95) 0%, rgba(25, 25, 25, 0.88) 100%);
    border-top: 2px solid var(--mustard-mid);
  }
  
  .ad-mock-logo-lowerthird-mark {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--gradient-mustard);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  
  .ad-mock-logo-lowerthird-text {
    font-family: var(--font-display);
    font-size: clamp(0.62rem, 1.9vw, 0.82rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
  }
  
  /* Vinheta: abertura tipo spot */
  .ad-mock--vinheta {
    display: block;
    padding: 0;
    background: #080808;
    min-height: 260px;
  }
  
  .ad-mock-vinheta-rays {
    position: absolute;
    inset: 0;
    background: conic-gradient(
      from 210deg at 50% 55%,
      transparent 0deg,
      rgba(232, 172, 25, 0.06) 40deg,
      transparent 55deg,
      rgba(232, 172, 25, 0.05) 100deg,
      transparent 130deg,
      rgba(252, 229, 102, 0.07) 200deg,
      transparent 260deg
    );
    animation: ad-vinheta-spin 14s linear infinite;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .ad-mock-vinheta-rays {
      animation: none;
    }
  }
  
  @keyframes ad-vinheta-spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  .ad-mock-vinheta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 260px;
    padding: 28px 20px;
  }
  
  .ad-mock-vinheta-brand {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3.5vw, 1.45rem);
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.88);
  }
  
  .ad-mock-vinheta-line {
    width: min(120px, 40%);
    height: 3px;
    border-radius: 2px;
    background: var(--gradient-mustard);
    box-shadow: 0 0 20px var(--mustard-glow);
  }
  
  .ad-mock-vinheta-offer {
    font-size: clamp(0.75rem, 2.2vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mustard-top);
  }
  
  .ad-mock-vinheta-play {
    margin-top: 8px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    color: #1a1205;
    background: var(--gradient-mustard);
    border: 2px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 28px rgba(232, 172, 25, 0.35);
  }
  
  .ad-mock-vinheta-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    padding: 5px 9px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.45);
  }
  
  /* Patrocínio master */
  .ad-mock--master {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    min-height: 260px;
    background: radial-gradient(ellipse 85% 70% at 50% 20%, rgba(232, 172, 25, 0.22) 0%, transparent 55%),
      linear-gradient(165deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid rgba(232, 172, 25, 0.25);
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
  }
  
  .ad-mock-master-halo {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px solid rgba(232, 172, 25, 0.15);
    pointer-events: none;
  }
  
  .ad-mock-master-star {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    line-height: 1;
    color: var(--mustard-top);
    text-shadow: 0 0 24px var(--mustard-glow);
    margin-bottom: 12px;
  }
  
  .ad-mock-master-stack {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 280px;
  }
  
  .ad-mock-master-kicker {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
  }
  
  .ad-mock-master-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    letter-spacing: 0.14em;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--white);
  }
  
  .ad-mock-master-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
  }
  
  /* Uniformes — camiseta em SVG (frente) */
  .ad-mock--uniformes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px 16px 26px;
    min-height: 280px;
    background:
      radial-gradient(ellipse 90% 55% at 50% 18%, rgba(232, 172, 25, 0.14) 0%, transparent 58%),
      linear-gradient(175deg, #ececec 0%, #d8d8d8 100%);
  }
  
  .ad-mock-kit-svg-wrap {
    width: min(100%, 220px);
    display: flex;
    justify-content: center;
  }
  
  .ad-mock-jersey-svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
  }
  
  .ad-mock-kit-caption {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
  }
  
  /* Postagem patrocinada — mock feed em “telefone” */
  .ad-mock--social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    min-height: 300px;
    background:
      radial-gradient(ellipse 80% 60% at 50% 20%, rgba(232, 172, 25, 0.12) 0%, transparent 55%),
      linear-gradient(155deg, #1c1c1c 0%, #0a0a0a 100%);
    overflow: hidden;
  }
  
  .ad-mock-social-device {
    width: min(100%, 220px);
    padding: 10px 9px 14px;
    border-radius: 28px;
    background: linear-gradient(145deg, #2e2e2e 0%, #121212 100%);
    box-shadow:
      0 24px 48px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .ad-mock-social-device::before {
    content: '';
    display: block;
    width: 36%;
    height: 5px;
    margin: 0 auto 10px;
    border-radius: 4px;
    background: #0f0f0f;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
  }
  
  .ad-mock-social-screen {
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
  }
  
  .ad-mock-social-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--gray-muted);
  }
  
  .ad-mock-social-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #1a1205;
    background: var(--gradient-mustard);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(232, 172, 25, 0.35);
  }
  
  .ad-mock-social-headlines {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .ad-mock-social-handle {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
  }
  
  .ad-mock-social-sponsored {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
  }
  
  .ad-mock-social-menu {
    font-size: 18px;
    line-height: 1;
    color: var(--gray-mid);
    padding: 4px;
  }
  
  .ad-mock-social-visual {
    position: relative;
    min-height: 138px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 6px;
    background:
      linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(20, 20, 20, 0.15) 50%, rgba(0, 0, 0, 0.35) 100%),
      radial-gradient(ellipse 90% 75% at 45% 35%, rgba(232, 172, 25, 0.28) 0%, transparent 58%),
      radial-gradient(ellipse 70% 55% at 70% 60%, rgba(60, 120, 80, 0.15) 0%, transparent 50%),
      linear-gradient(180deg, #2a2a2a 0%, #121212 100%);
  }
  
  .ad-mock-social-visual-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--white);
    background: #c62828;
    padding: 4px 8px;
    border-radius: 4px;
  }
  
  .ad-mock-social-visual-chip {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  }
  
  .ad-mock-social-visual-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.82);
  }
  
  .ad-mock-social-bottom {
    padding: 10px 12px 12px;
  }
  
  .ad-mock-social-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
  }
  
  .ad-mock-social-icon {
    font-size: 20px;
    color: var(--text);
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  }
  
  .ad-mock-social-icon--end {
    margin-left: auto;
  }
  
  .ad-mock-social-like-line {
    margin: 0 0 6px;
    font-size: 12px;
    color: var(--text);
    line-height: 1.35;
  }
  
  .ad-mock-social-like-line strong {
    font-weight: 700;
  }
  
  .ad-mock-social-snippet {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: var(--text-soft);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .ad-mock--site {
    display: block;
    padding: 14px;
    width: 100%;
    max-width: min(100%, 340px);
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .ad-mock-site-chrome {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-muted);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }
  
  .ad-mock-site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: var(--black);
    color: var(--white);
  }
  
  .ad-mock-site-logo {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.12em;
    color: var(--mustard);
  }
  
  .ad-mock-site-nav {
    display: flex;
    gap: 6px;
  }
  
  .ad-mock-site-nav span {
    width: 22px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.28);
  }
  
  .ad-mock-site-leader {
    padding: 8px 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: #4a3b08;
    background: linear-gradient(180deg, #fff8dc 0%, #fce566 45%, #e8ac19 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  
  .ad-mock-site-body {
    display: grid;
    grid-template-columns: 1fr minmax(72px, 28%);
    gap: 10px;
    padding: 12px;
    min-height: 168px;
    align-items: stretch;
  }
  
  .ad-mock-site-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 10px 10px 8px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-muted);
  }
  
  .ad-mock-site-line {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gray-muted), rgba(232, 172, 25, 0.25));
  }
  
  .ad-mock-site-line--mid {
    width: 92%;
  }
  
  .ad-mock-site-line--short {
    width: 58%;
  }
  
  .ad-mock-site-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 6px;
    background: var(--gradient-mustard);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 248, 210, 0.55);
    border-bottom-color: var(--mustard-deep);
    text-align: center;
    box-shadow:
      0 3px 0 var(--mustard-shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  
  .ad-mock-site-aside-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #1a1205;
  }
  
  .ad-mock-site-aside-sub {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(26, 18, 5, 0.75);
  }
  
  .ad-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 16px;
  }
  
  .ad-benefits {
    margin: 0 0 16px;
    padding-left: 18px;
    color: var(--text-soft);
  }
  
  .ad-benefits li {
    margin-bottom: 6px;
  }
  
  .ad-reach {
    font-size: 14px;
    color: var(--text-soft);
    margin: 0 0 20px;
  }
  
  /* ----- Partner ----- */
  .section--partner {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .partner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
  
  .partner-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-on-dark-soft);
    margin: 0 0 32px;
    max-width: 52ch;
  }
  
  .partner-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .partner-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 3vw, 32px);
  }
  
  .partner-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    min-height: min(560px, 64vh);
  }
  
  .partner-mascot {
    position: relative;
    margin: 0;
    width: 100%;
    max-width: min(100%, 480px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  
  .partner-mascot img {
    width: 100%;
    height: auto;
    max-height: min(620px, 68vh);
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.55));
  }
  
  /* ----- Gallery ----- */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 14px;
  }
  
  .gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-item--tall {
    grid-row: span 2;
    grid-column: 4;
  }
  
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.85), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-item:hover img {
    transform: scale(1.06);
  }
  
  .gallery-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mustard);
  }
  
  /* ----- Brands marquee ----- */
  .section--brands {
    padding: 56px 0 48px;
    background: var(--white);
    border-top: 1px solid var(--gray-muted);
    border-bottom: 1px solid var(--gray-muted);
  }
  
  .brands-eyebrow {
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin: 0 0 28px;
  }
  
  .marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  }
  
  .marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee 36s linear infinite;
  }
  
  .marquee:hover .marquee-inner {
    animation-play-state: paused;
  }
  
  .marquee-track {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 8px 12px;
    flex-shrink: 0;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .marquee-inner {
      animation: none;
      flex-wrap: wrap;
      width: 100%;
      justify-content: center;
      gap: 12px;
    }
  
    .marquee-track {
      flex-wrap: wrap;
      justify-content: center;
      padding: 8px;
    }
  
    .marquee-track[aria-hidden="true"] {
      display: none;
    }
  }
  
  .brand-pill {
    flex-shrink: 0;
    padding: 12px 28px;
    background: var(--gray-light);
    border: 1px solid var(--gray-muted);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-soft);
    white-space: nowrap;
  }
  
  /* ----- Social — só links das redes configuradas em Config. Gerais ----- */
  .social-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 8px;
  }
  .social-link-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--gray-muted);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
  }
  .social-link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--social-tint, linear-gradient(135deg, rgba(232,172,25,0.16), rgba(232,172,25,0)));
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
  }
  .social-link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--social-color, var(--mustard));
  }
  .social-link-card:hover::before { opacity: 1; }
  .social-link-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--social-color, #0b0b14);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
  }
  .social-link-icon .material-symbols-rounded { font-size: 26px; }
  .social-link-body { position: relative; z-index: 1; min-width: 0; }
  .social-link-platform {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin: 0 0 2px;
  }
  .social-link-handle {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
  }
  .social-links-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 36px 16px;
    color: var(--text-soft);
    border: 1px dashed var(--gray-muted);
    border-radius: var(--radius-lg);
    background: var(--white);
    font-size: 14px;
  }

  /* Pílulas de patrocinador com suporte a logo (modal Parceiros) */
  .brand-pill.brand-pill--logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
  }
  .brand-pill-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff center / contain no-repeat;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
  }
  .brand-pill.brand-pill--link { text-decoration: none; }
  .brand-pill.brand-pill--link:hover { background: var(--mustard); color: #1a1205; border-color: var(--mustard); }
  
  /* ----- CTA ----- */
  .section--cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
  }
  
  .cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }
  
  .cta-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.92), rgba(15, 15, 15, 0.55));
  }
  
  .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 20px;
    line-height: 1.05;
  }
  
  .cta-text {
    font-size: 1.15rem;
    color: var(--text-on-dark-soft);
    margin: 0 0 32px;
  }
  
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
  
  /* ----- Footer ----- */
  .site-footer {
    background: var(--black);
    color: var(--text-on-dark-soft);
    padding-top: 64px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 48px;
  }
  
  .logo-text--footer {
    font-size: 1.85rem;
    color: var(--white);
  }
  
  .footer-tagline {
    margin: 10px 0 0;
    font-size: 14px;
  }
  
  .footer-heading {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 14px;
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
  
  .footer-list li {
    margin-bottom: 10px;
  }
  
  .footer-list a:hover {
    color: var(--white);
  }
  
  .footer-list--cities li {
    position: relative;
    padding-left: 14px;
  }
  
  .footer-list--cities li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mustard);
  }
  
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
  }
  
  .footer-bottom-inner {
    text-align: center;
    font-size: 13px;
  }
  
  /* ----- Mobile nav ----- */
  @media (max-width: 1024px) {
    .nav-toggle {
      display: flex;
    }
  
    .site-nav {
      position: fixed;
      top: 0;
      right: 0;
      width: min(100%, 360px);
      height: 100vh;
      background: var(--black-elev);
      flex-direction: column;
      align-items: stretch;
      padding: calc(var(--header-h) + 24px) 24px 32px;
      gap: 24px;
      transform: translateX(100%);
      transition: transform var(--transition);
      border-left: 1px solid var(--border);
      z-index: 1001;
      overflow-y: auto;
    }
  
    body.nav-open {
      overflow: hidden;
    }
  
    body.nav-open .site-nav {
      transform: translateX(0);
    }
  
    .nav-list {
      flex-direction: column;
      gap: 0;
    }
  
    .nav-list a {
      display: block;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
  
    .nav-actions {
      flex-direction: column;
      align-items: stretch;
    }
  
    .hero-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      row-gap: 0;
      text-align: center;
    }
  
    .hero-copy {
      grid-column: 1;
      grid-row: auto;
    }
  
    .hero-visual {
      grid-column: 1;
      grid-row: auto;
      align-self: center;
    }
  
    .hero-cards {
      grid-column: 1;
      grid-row: auto;
    }

    .hero-ad-band {
      grid-column: 1;
      grid-row: auto;
    }

    .hero-copy {
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      padding-bottom: 0;
    }
  
    .hero-title {
      max-width: none;
      margin-left: auto;
      margin-right: auto;
    }
  
    .hero-lead {
      margin-left: auto;
      margin-right: auto;
    }
  
    .hero-ctas {
      justify-content: center;
    }
  
    .hero-visual {
      min-height: 0;
      max-width: 400px;
      margin: 0 auto;
    }
  
    .hero-mascot-frame {
      max-width: 380px;
    }
  
    .hero-mascot {
      max-height: min(440px, 56vh);
      width: auto;
      margin-left: auto;
      margin-right: auto;
    }
  
    .hero-cards {
      grid-template-columns: 1fr;
      text-align: left;
    }
  
    .live-card {
      text-align: left;
    }
  
    .about-grid {
      grid-template-columns: 1fr;
    }
  
    .stat-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .feature-grid {
      grid-template-columns: 1fr;
    }
  
    .ad-slide {
      grid-template-columns: 1fr;
      padding: 28px 22px;
      min-height: auto;
    }
  
    .carousel {
      grid-template-columns: 1fr;
    }
  
    .carousel-btn {
      display: none;
    }
  
    .partner-grid {
      grid-template-columns: 1fr;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: none;
    }
  
    .gallery-item--tall {
      grid-row: span 1;
      grid-column: span 2;
      min-height: 220px;
    }
  
    .social-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .container {
      padding: 0 18px;
    }
  
    .section {
      padding: 72px 0;
    }
  
    .stat-grid {
      grid-template-columns: 1fr;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .gallery-item--tall {
      grid-column: 1;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }
  