       :root {
           --bg: #060606;
           --panel: #101010;
           --panel-soft: #161616;
           --text: #f5f5f5;
           --muted: #bdbdbd;
           --line: rgba(255, 255, 255, 0.08);
           --brand: #ef1d26;
           --brand-2: #149bff;
           --wa: #1db954;
           --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
       }

       .modal-overlay {
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background-color: rgba(0, 0, 0, 0.6);
           opacity: 0;
           pointer-events: none;
           transition: opacity 0.3s ease;
           z-index: 9999;
       }

       .modal-overlay.active {
           opacity: 1;
           pointer-events: auto;
       }

       .modal-box {
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%) scale(0.8);
           background-color: #ffffff;
           padding: 5px;
           border-radius: 10px;
           max-width: 600px;
           width: 100%;
           box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
           transition: transform 0.3s ease;
       }

       .modal-overlay.active .modal-box {
           transform: translate(-50%, -50%) scale(1);
       }

       .close-btn {
           position: absolute;
           display: flex;
           align-items: center;
           top: 15px;
           right: 15px;
           background: none;
           border: none;
           font-size: 45px;
           /* line-height: 1; */
           cursor: pointer;
           color: #FFF;
           transition: color 0.2s;
           background-color: red;
           border-radius: 50%;
           height: 40px;
           width: 40px;
       }

       .close-btn:hover {
           color: #d9534f;
       }

       .modal-box h2 {
           margin-top: 0;
           color: #333;
       }

       .modal-box p {
           color: #555;
           line-height: 1.6;
       }

       * {
           box-sizing: border-box;
       }

       html {
           scroll-behavior: smooth;
       }

       body {
           margin: 0;
           font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
           background:
               radial-gradient(circle at top center, rgba(20, 155, 255, 0.16), transparent 28%),
               linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
           color: var(--text);
       }

       a {
           color: inherit;
           text-decoration: none;
       }

       img {
           max-width: 100%;
           display: block;
       }

       .container {
           width: min(1180px, calc(100% - 32px));
           margin: 0 auto;
       }

       .header {
           position: sticky;
           top: 0;
           z-index: 20;
           backdrop-filter: blur(18px);
           background: rgba(5, 5, 5, 0.92);
           border-bottom: 1px solid var(--line);
       }

       .header-inner {
           min-height: 74px;
           display: flex;
           align-items: center;
           justify-content: space-between;
           gap: 24px;
       }

       .brand {
           display: inline-flex;
           flex-direction: column;
           line-height: 0.92;
           font-weight: 800;
           letter-spacing: 0.04em;
           text-transform: uppercase;
       }

       .brand strong {
           font-size: 2rem;
       }

       .brand span {
           font-size: 1rem;
           color: var(--muted);
           align-self: flex-end;
       }

       .nav {
           display: flex;
           align-items: center;
           gap: 26px;
           font-size: 0.98rem;
       }

       .nav-group {
           position: relative;
       }

       .nav>a,
       .nav-group>a {
           position: relative;
           color: #f2f2f2;
           text-decoration: none;
           font-family: Arial, sans-serif;
           padding: 5px 0;
           display: flex;
           align-items: center;
           font-size: 1.3rem;
           gap: 6px;
       }

       .nav>a::after,
       .nav-group>a::after {
           content: "";
           position: absolute;
           left: 0;
           bottom: -8px;
           width: 100%;
           height: 2px;
           background: linear-gradient(90deg, var(--brand), var(--brand-2));
           transform: scaleX(0);
           transform-origin: left;
           transition: transform 0.25s ease;
       }
       .nav>a:hover::after,
       .nav>a:focus-visible::after,
       .nav-group :hover>a::after {
           transform: scaleX(1);
       }
       .arrow-down {
           font-size: 10px;
           transition: transform 0.3s ease;
           color: #a6a6a6;
       }

       .submenu {
           position: absolute;
           top: 100%;
           left: 0;
           background-color: #121212;
           border: 1px solid #262626;
           border-radius: 4px;
           /* min-width: 220px; */
           padding: 8px 0;
           margin-top: 10px;
           box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
           z-index: 1000;
           opacity: 0;
           visibility: hidden;
           transform: translateY(10px);
           transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
       }

       .submenu a {
           color: #a6a6a6;
           text-decoration: none;
           font-size: 14px;
           padding: 10px 20px;
           display: block;
           transition: background-color 0.2s ease, color 0.2s ease;
       }

       .submenu a:hover {
           background-color: #1a1a1a;
           color: #ffffff;
       }

       .nav-group:hover .submenu {
           opacity: 1;
           visibility: visible;
           transform: translateY(0);
       }

       .nav-group:hover .arrow-down {
           transform: rotate(180deg);
           color: #ffffff;
       }

       .header-actions {
           display: flex;
           align-items: center;
           gap: 12px;
       }

       .badge {
           width: 34px;
           height: 34px;
           border-radius: 10px;
           display: grid;
           place-items: center;
           font-size: 0.72rem;
           font-weight: 800;
           border: 1px solid var(--line);
           box-shadow: var(--shadow);
       }

       .badge--brand {
           background: linear-gradient(135deg, #35030c, #ee1c25);
       }

       .badge--wa {
           background: var(--wa);
       }

       .hero {
           padding: 36px 0 28px;
       }

       .player-shell {
           width: min(940px, 100%);
           margin: 0 auto;
           background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
           border: 1px solid var(--line);
           border-radius: 24px;
           padding: 18px;
           box-shadow: var(--shadow);
       }

       .player-frame {
           position: relative;
           width: 100%;
           aspect-ratio: 16 / 9;
           overflow: hidden;
           border-radius: 18px;
           background: #000;
       }

       .player-loading {
           position: absolute;
           inset: 0;
           z-index: 1;
           display: flex;
           align-items: center;
           justify-content: center;
           padding: 24px;
           background:
               radial-gradient(circle at center, rgba(239, 29, 38, 0.16), transparent 45%),
               rgba(0, 0, 0, 0.82);
           color: #f5f5f5;
           font-size: 1rem;
           text-align: center;
           transition: opacity 0.25s ease;
       }

       .player-frame:not(.is-loading) .player-loading {
           opacity: 0;
           pointer-events: none;
       }

       .player-frame iframe,
       .player-frame video {
           position: absolute;
           inset: 0;
           width: 100%;
           height: 100%;
           border: 0;
           display: block;
           z-index: 0;
       }

       .player-frame video {
           background: #000;
           object-fit: contain;
           object-position: center top;
       }

       .hero-copy {
           text-align: center;
           padding: 24px 0 8px;
       }

       .hero-copy h1 {
           margin: 0 0 10px;
           font-size: clamp(2rem, 4vw, 3rem);
           letter-spacing: 0.02em;
       }

       .hero-copy p {
           max-width: 740px;
           margin: 0 auto;
           color: var(--muted);
           font-size: 1rem;
           line-height: 1.7;
       }

       .cta-row {
           display: flex;
           justify-content: center;
           padding-top: 24px;
       }

       .cta {
           display: inline-flex;
           align-items: center;
           justify-content: center;
           min-width: 176px;
           padding: 14px 28px;
           border-radius: 999px;
           font-weight: 700;
           letter-spacing: 0.08em;
           text-transform: uppercase;
           background: linear-gradient(135deg, #ff2f2f, #d50f1d);
           box-shadow: 0 14px 30px rgba(213, 15, 29, 0.32);
       }

       .section {
           padding: 38px 0;
       }

       .section-title {
           margin: 0 0 22px;
           text-align: center;
           font-size: clamp(1.8rem, 3vw, 2.4rem);
       }

       .program-strip {
           display: grid;
           grid-template-columns: repeat(8, minmax(140px, 1fr));
           gap: 0;
           overflow: hidden;
           border-radius: 26px;
           border: 1px solid var(--line);
           background: #0d0d0d;
           box-shadow: var(--shadow);
       }

       .program-card {
           min-height: 148px;
           padding: 18px 16px;
           display: flex;
           align-items: flex-end;
           position: relative;
           isolation: isolate;
           overflow: hidden;
       }

       .program-card::before,
       .program-card::after {
           content: "";
           position: absolute;
           inset: 0;
           z-index: -2;
       }

       .program-card::before {
           background:
               linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 42%),
               linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.36)),
               var(--card-bg);
       }

       .program-card::after {
           z-index: -1;
           background:
               radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.35), transparent 18%),
               repeating-linear-gradient(90deg,
                   rgba(255, 255, 255, 0.08) 0,
                   rgba(255, 255, 255, 0.08) 2px,
                   transparent 2px,
                   transparent 8px);
           mix-blend-mode: screen;
           opacity: 0.4;
       }

       .program-card span {
           font-size: 1.35rem;
           line-height: 1;
           font-weight: 900;
           text-transform: uppercase;
           text-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
       }

       .team-grid {
           display: flex;
           grid-template-columns: repeat(9, minmax(0, 1fr));
           gap: 0;
           border-radius: 26px;
           overflow: hidden;
           border: 1px solid var(--line);
           box-shadow: var(--shadow);
           background: #0e0e0e;
       }

       .team-card {
           min-height: 210px;
           position: relative;
           display: flex;
           align-items: flex-end;
           /* padding: 16px; */
           isolation: isolate;
           overflow: hidden;
       }

       .team-card::before {
           content: "";
           position: absolute;
           inset: 0;
           z-index: -2;
       }

       .team-card::after {
           content: "";
           position: absolute;
           inset: 0;
           z-index: -1;
       }

       .team-card strong {
           font-size: 1rem;
           letter-spacing: 0.08em;
           text-transform: uppercase;
       }

       .footer {
           padding: 28px 0 40px;
           color: #9e9e9e;
           text-align: center;
           font-size: 0.92rem;
       }

       @media (max-width: 1100px) {
           .program-strip {
               grid-template-columns: repeat(4, minmax(0, 1fr));
           }

           .team-grid {
               grid-template-columns: repeat(3, minmax(0, 1fr));
           }
       }

       @media (max-width: 860px) {
           .header-inner {
               flex-wrap: wrap;
               justify-content: center;
               padding: 14px 0;
           }

           .nav {
               order: 3;
               width: 100%;
               justify-content: center;
               flex-wrap: wrap;
               gap: 18px;
           }
       }

       @media (max-width: 720px) {
           .container {
               width: min(100% - 20px, 100%);
           }

           .hero {
               padding-top: 20px;
           }

           .player-shell {
               width: 100%;
               border-radius: 18px;
               padding: 10px;
           }

           .hero-copy p {
               font-size: 0.95rem;
           }

           .program-strip {
               grid-template-columns: repeat(2, minmax(0, 1fr));
           }

           .team-grid {
               grid-template-columns: repeat(2, minmax(0, 1fr));
           }

           .team-card {
               min-height: 180px;
           }
       }

       @media (max-width: 460px) {
           .brand strong {
               font-size: 1.55rem;
           }

           .player-shell {
               padding: 8px;
               border-radius: 14px;
           }

           .player-frame {
               border-radius: 12px;
           }

           .program-strip,
           .team-grid {
               grid-template-columns: 1fr;
           }

           .section {
               padding: 26px 0;
           }
       }

       .footer-tcm {
           background-color: rgba(5, 5, 5, 0.92);
           backdrop-filter: blur(18px);
           color: #a6a6a6;
           padding: 40px 20px 30px 20px;
           text-align: center;
       }

       /* Linhas de Links */
       .footer-links-row {
           display: flex;
           justify-content: center;
           gap: 40px;
           margin-bottom: 20px;
           flex-wrap: wrap;
       }

       .footer-links-row.single {
           margin-bottom: 30px;
       }

       .footer-link {
           color: #a6a6a6;
           text-decoration: none;
           font-size: 14px;
           transition: color 0.3s ease;
       }

       .footer-link:hover {
           color: #ffffff;
       }

       .footer-socials {
           display: flex;
           justify-content: center;
           gap: 20px;
           margin-bottom: 30px;
       }

       .social-icon {
           color: #a6a6a6;
           font-size: 20px;
           transition: transform 0.3s ease, color 0.3s ease;
       }

       .social-icon:hover {
           color: #ffffff;
           transform: translateY(-3px);
       }

       .footer-copyright {
           font-size: 13px;
           color: #737373;
           border-top: 1px solid #1a1a1a;
           padding-top: 20px;
       }

       .privacy-container {
           max-width: 800px;
           margin: 40px auto;
           padding: 20px;
           font-family: Arial, sans-serif;
           color: #e0e0e0;
           background-color: #121212;
           line-height: 1.6;
       }

       .privacy-container h1 {
           color: #ffffff;
           border-bottom: 2px solid #ff0043;
           /* Cor destaque opcional */
           padding-bottom: 10px;
           margin-bottom: 20px;
       }

       .privacy-container h2 {
           color: #ffffff;
           font-size: 1.4rem;
           margin-top: 30px;
           margin-bottom: 15px;
       }

       .privacy-container p {
           margin-bottom: 15px;
           color: #b3b3b3;
           text-align: justify;
       }

       .privacy-container ul {
           margin-bottom: 20px;
           padding-left: 20px;
           color: #b3b3b3;
       }

       .privacy-container li {
           margin-bottom: 8px;
       }

       .privacy-container a {
           color: #ff0043;
           text-decoration: none;
       }

       .privacy-container a:hover {
           text-decoration: underline;
       }

       .highlight-box {
           background-color: #1a1a1a;
           padding: 15px;
           border-left: 4px solid #ff0043;
           margin: 20px 0;
       }

       .lgp {
           width: 100%;
           max-width: 1200px;
           margin: 40px auto;
           padding: 0 20px;
       }

       .lgp iframe {
           width: 100%;
           height: 800px;
           min-height: 70vh;
           border: none;
           border-radius: 8px;
           background-color: #ffffff;
           display: block;
       }

       @media (max-width: 768px) {
           .lgp {
               margin: 20px auto;
               padding: 0 10px;
           }

           .lgp iframe {
               height: 950px;
           }
       }


       .programacao-container {
           max-width: 1200px;
           margin: 40px auto;
           padding: 0 20px;
           text-align: center;
       }

       .programacao-container h3 {
           color: #ffffff;
           font-size: 1.8rem;
           margin-bottom: 20px;
           font-family: Arial, sans-serif;
       }

       .img-programacao {
           width: 100%;
           max-width: 1000px;
           height: auto;
           border-radius: 8px;
           box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
           display: inline-block;
       }
