/* =========================================
   1. FONTE E VARIÁVEIS (UI/UX MODERNO)
   ========================================= */

:root {
    --fonte-principal: "Encode Sans", sans-serif;
    --roxo-escuro: #2b164d;
    --roxo-card: #1f0f3a;
    --laranja-vivo: #f06c35;
    --laranja-claro: #f78b56;
    --laranja-borda: #d15622;
    --branco: #ffffff;
    --cinza-claro: #f5f5f5;
    --vermelho-live: #ff2a2a;
    --roxo-vidro: rgba(43, 22, 77, 0.65); 
    --roxo-hover: rgba(43, 22, 77, 0.9);
    --sombra-vidro: 0 10px 30px rgba(0, 0, 0, 0.5);
    --brilho-laranja: 0 0 15px rgba(240, 108, 53, 0.4);
    --ease-suave: cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--fonte-principal); -webkit-tap-highlight-color: transparent; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body { background-color: #05020f; color: var(--branco); }

/* =========================================
   SISTEMA DE LUZES GLOBAIS (ACELERAÇÃO DE HARDWARE)
   ========================================= */
.fundo-luzes-global {
    position: fixed; opacity: 0.50; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -999; pointer-events: none; overflow: hidden; background-color: #0d061a;
}

.led-blob {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.65; mix-blend-mode: screen; 
    animation: swirl 25s infinite alternate ease-in-out;
    will-change: transform; /* ACELERAÇÃO PARA TIRAR LAG */
}

.luz-roxo-main { top: -10%; left: -10%; width: 50vw; height: 50vw; background: #3a0088; transform-origin: center right; animation-duration: 22s; }
.luz-laranja-main { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: var(--laranja-vivo, #f06c35); transform-origin: top left; animation-duration: 26s; animation-delay: -5s; }
.luz-laranja-sec { top: 30%; left: 50%; width: 40vw; height: 40vw; background: #ff8c00; transform-origin: bottom left; animation-duration: 30s; animation-delay: -12s; }
.luz-roxo-sec { bottom: 20%; left: -20%; width: 55vw; height: 55vw; background: #4a0f7a; transform-origin: center center; animation-duration: 35s; animation-delay: -18s; }

@keyframes swirl {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(20vw, -15vh) scale(1.2) rotate(90deg); }
    66% { transform: translate(-15vw, 20vh) scale(0.8) rotate(180deg); }
    100% { transform: translate(25vw, 10vh) scale(1.3) rotate(360deg); }
}

/* =========================================
   PÁGINA SOBRE NÓS E HISTÓRIA
   ========================================= */
.hero-interna { padding: 100px 5% 60px 5%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hero-interna h1 { font-size: 4rem; font-weight: 900; margin-bottom: 15px; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.hero-interna p { font-size: 1.3rem; max-width: 700px; margin: 0 auto; font-weight: medium; color: #ccc; }

.historia-section { padding: 100px 5%; max-width: 900px; margin: 0 auto; text-align: center; }
.historia-section h2 { color: var(--branco); font-size: 3rem; font-weight: 900; margin-bottom: 30px; }
.historia-section h2 span { color: var(--laranja-vivo); }
.historia-section p { font-size: 1.2rem; line-height: 1.8; color: #ccc; margin-bottom: 20px; font-weight: medium; }

#fundo-interativo { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1; pointer-events: none; opacity: 0.25; }
header, .hero, .cards-container, .programacao-section, .cobertura-section, .parceiros-section, .novidades-section, .webtv-section, footer, .historia-section, .hero-interna { position: relative; z-index: 10; background-color: transparent; }

/* =========================================
   3. TOP BAR E NAVEGAÇÃO
   ========================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-suave); will-change: transform, opacity; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; }

.top-bar { background-color: var(--laranja-vivo); color: var(--branco); padding: 12px 0; font-size: 0.95rem; display: flex; justify-content: center; align-items: center; gap: 40px; font-weight: medium; position: relative; z-index: 900; }
.top-bar img { width: 14px; filter: brightness(0) invert(1); }
.top-bar a { transition: transform 0.3s; color: var(--branco); text-decoration: none; }
.top-bar a:hover { transform: scale(1.05); }

header { background-color: rgba(43, 22, 77, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: sticky; top: 0; height: 90px; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; transition: all 0.4s ease; border-bottom: 1px solid rgba(255,255,255,0.05); z-index: 9999 !important; }
header.rolagem { height: 75px; box-shadow: 0 10px 30px rgba(0,0,0,0.6); background-color: rgba(43, 22, 77, 0.95); }

.logo-header { position: relative; z-index: 20000; }
.logo-header img { height: 180px; position: absolute; top: -85px; left: 0; filter: drop-shadow(0px 8px 12px rgba(0,0,0,0.5)); transition: all 0.4s ease; z-index: 20000; }
header.rolagem .logo-header img { height: 70px; top: -35px; }

nav { flex: 1; display: flex; justify-content: center; }
nav ul { display: flex; list-style: none; gap: 40px; }
nav a { color: var(--branco); text-decoration: none; font-weight: 900; text-transform: lowercase; font-size: 1.1rem; transition: 0.3s; opacity: 0.8; position: relative; padding-bottom: 5px; }
nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 3px; background-color: var(--laranja-vivo); transition: all 0.3s ease-in-out; border-radius: 2px; box-shadow: 0 0 8px rgba(240, 108, 53, 0.6); }
nav a:hover, nav a.active { color: var(--laranja-vivo); opacity: 1; text-shadow: 0 0 10px rgba(240, 108, 53, 0.4); }
nav a:hover::after, nav a.active::after { width: 100%; }

.btn-anuncie-header { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); background-color: var(--laranja-vivo); color: var(--branco); padding: 10px 30px; border-radius: 50px; text-decoration: none; font-weight: 900; display: flex; align-items: center; gap: 12px; font-size: 1.1rem; transition: all 0.3s ease; text-transform: lowercase; box-shadow: var(--brilho-laranja); border: none; }
.btn-anuncie-header:hover { transform: translateY(-50%) scale(1.05); background-color: var(--laranja-claro); }
.btn-anuncie-header img { width: 20px; filter: brightness(0) invert(1); }
.menu-toggle { display: none; }

/* =========================================
   4. HERO E CARTÕES
   ========================================= */
.hero { padding: 30px 5% 80px 5%; display: flex; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hero-content { max-width: 960px; width: 100%; display: flex; flex-direction: column; }
.hero-text { text-align: left; margin-bottom: 50px; }
.hero-title { font-size: 4rem; font-weight: 900; margin-bottom: 10px; color: var(--branco); text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 25px; color: #ccc; }

.btn-wpp-participe { background-color: var(--laranja-vivo); color: var(--branco); padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-size: 1.1rem; transition: 0.3s; box-shadow: var(--brilho-laranja); width: max-content; margin-top: 30px; }
.btn-wpp-participe:hover { transform: scale(1.05); background-color: var(--laranja-claro); }
.btn-wpp-participe img { width: 24px; filter: brightness(0) invert(1); }

.cards-container { display: flex; gap: 30px; justify-content: space-between; }
.card { background: var(--roxo-vidro); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 40px 20px; width: calc(33.333% - 20px); text-align: center; cursor: pointer; transition: all 0.4s ease; box-shadow: var(--sombra-vidro); }
.card:hover { transform: translateY(-15px); background: var(--roxo-hover); border-color: var(--laranja-vivo); box-shadow: 0 15px 30px rgba(0,0,0,0.6); }
.card-icon { width: 80px; margin-bottom: 20px; transition: 0.3s; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3)); }
.card:hover .card-icon { transform: scale(1.1); }
.card h3 { margin-bottom: 10px; font-weight: bold; color: var(--branco); }
.card p { font-size: 0.85rem; color: #ccc; line-height: 1.5; }

/* =========================================
   5. MAPA INTERATIVO E ONDAS (OTIMIZADAS SEM LAG)
   ========================================= */
.cobertura-section { padding: 80px 5% 120px 5%; text-align: center; color: var(--branco); }
.cobertura-header { margin-bottom: 50px; }
.cobertura-header h2 { font-size: 3rem; font-weight: 900; color: var(--branco); margin-bottom: 15px; }
.cobertura-header h2 span { color: var(--laranja-vivo); }
.cobertura-header p { font-size: 1.2rem; color: #ccc; font-weight: medium; max-width: 700px; margin: 0 auto; }

.mapa-interativo-container { position: relative; max-width: 700px; width: 100%; margin: 0 auto; }
.mapComponent { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }

.mapComponent polygon, .mapComponent path { fill: rgba(43, 22, 77, 0.8) !important; stroke: rgba(240, 108, 53, 0.4) !important; stroke-width: 1px !important; transition: all 0.3s ease !important; cursor: pointer; transform: none !important; }
.mapComponent polygon:hover, .mapComponent path:hover, .mapComponent path.poly-destaque { fill: var(--roxo-escuro) !important; stroke: var(--laranja-vivo) !important; transform: scale(1.02) !important; transform-origin: center; z-index: 2; }
.mapComponent polygon.jucas { fill: var(--laranja-vivo) !important; stroke: var(--branco) !important; transform: scale(1.02) !important; transform-origin: center; z-index: 2; filter: drop-shadow(0 0 10px var(--laranja-vivo)); }

.cidade-alcancada { position: absolute; transform: translate(-50%, -50%); z-index: 15; cursor: pointer; display: flex; flex-direction: column; align-items: center; width: 90px; }
.cidade-ponto { display: none !important; }
.cidade-nome { fill: #ccc; font-size: 9pt; font-family: var(--fonte-principal); text-anchor: middle; font-weight: Medium; pointer-events: none !important; transition: 0.3s; }
.cidade-alcancada:hover .cidade-nome { color: var(--laranja-vivo); transform: scale(1.2); font-weight: bold; text-shadow: 0 0 10px rgba(240, 108, 53, 0.5); }

.torre-jucas { position: absolute; transform: translate(-50%, -50%); z-index: 25; display: flex; justify-content: center; align-items: center; cursor: pointer; width: 60px; height: 60px; }
.icone-antena { position: absolute; width: 32px; height: 32px; color: var(--branco); z-index: 27; filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8)); transition: 0.3s ease; transform: translate(-50%, -50%); margin-top: -8px; }
.torre-jucas:hover .icone-antena { color: var(--laranja-vivo); transform: translate(-50%, -50%) scale(1.2); filter: drop-shadow(0 0 12px rgba(240, 108, 53, 0.6))!important; }

.tooltip-torre { background-color: var(--laranja-vivo); color: var(--branco); font-size: 1rem; font-weight: 900; padding: 8px 15px; border-radius: 10px; position: absolute; bottom: 110%; white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.5); z-index: 50; }
.torre-jucas:hover .tooltip-torre { opacity: 1; visibility: visible; transform: translateY(-10px); }

/* --- FIM DAS LAGADAS DAS ONDAS DO MAPA --- */
.ondas-transmissao { position: absolute; transform: translate(0, -12px); pointer-events: none; z-index: 5; }
.onda { 
    position: absolute; top: 50%; left: 50%; width: 800px; height: 800px; margin-left: -400px; margin-top: -400px;
    border: 2px solid var(--laranja-vivo); border-radius: 50%; opacity: 0; 
    animation: irradiar-sinal-fm 5s linear infinite; box-shadow: inset 0 0 10px rgba(240, 108, 53, 0.2); 
    will-change: transform, opacity; /* ACELERAÇÃO DA GRÁFICA */
}
.onda1 { animation-delay: 0s; } .onda2 { animation-delay: 1.6s; } .onda3 { animation-delay: 3.2s; }
@keyframes irradiar-sinal-fm { 
    0% { transform: scale(0.01); opacity: 0.9; border-width: 4px; } 
    40% { opacity: 0.5; } 
    100% { transform: scale(1); opacity: 0; border-width: 0.5px; } 
}

/* =========================================
   6. CARROSSEL DE PROGRAMAÇÃO
   ========================================= */
.programacao-section { padding: 100px 1%; text-align: center; }
.titulo-secao { font-size: 3rem; font-weight: 900; color: var(--branco); margin-bottom: 30px; }
.titulo-secao span { color: var(--laranja-vivo); }

.dias-filtro { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.btn-dia { background: rgba(255,255,255,0.05); color: #ccc; border: 1px solid rgba(255,255,255,0.2); padding: 10px 25px; border-radius: 30px; font-weight: bold; font-size: 1rem; cursor: pointer; transition: 0.3s; backdrop-filter: blur(5px); }
.btn-dia:hover, .btn-dia.ativo { background: var(--laranja-vivo); color: var(--branco); border-color: transparent; box-shadow: var(--brilho-laranja); }

.carrossel-container-setas { position: relative; display: flex; align-items: center; max-width: 100%; width: 100%; margin: 0 auto; }
.seta-carrossel { background-color: var(--laranja-vivo); color: var(--branco); border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: flex; justify-content: center; align-items: center; position: absolute; z-index: 20; box-shadow: 0 5px 15px rgba(0,0,0,0.5); transition: 0.3s; }
.seta-carrossel:hover { transform: scale(1.15); background-color: var(--laranja-claro); }
.seta-esq { left: 5px; } .seta-dir { right: 5px; }

.programas-carrossel { flex: 1; display: flex; gap: 25px; overflow-x: auto; padding: 40px 10px 60px 10px; cursor: grab; scrollbar-width: none; scroll-behavior: smooth; }
.programas-carrossel::-webkit-scrollbar { display: none; }

.programa-card { flex: 0 0 320px; background: var(--roxo-vidro); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; display: flex; flex-direction: column; overflow: hidden; text-align: center; box-shadow: var(--sombra-vidro); transition: 0.4s; cursor: pointer; position: relative; user-select: none; }
.programa-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.6); border-color: var(--laranja-vivo); }
.programa-card.no-ar { border: 2px solid var(--laranja-vivo); box-shadow: var(--brilho-laranja); transform: scale(1.05); z-index: 2; margin: 0 15px; }
.programa-card.no-ar:hover { transform: scale(1.08) translateY(-10px); }

.badge-aovivo { position: absolute; top: 15px; left: 15px; background: var(--vermelho-live); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 900; z-index: 10; animation: piscar 1.5s infinite; }
@keyframes piscar { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.programa-imagem { height: 280px; background: radial-gradient(circle at bottom, rgba(240,108,53,0.3) 0%, transparent 70%); position: relative; display: flex; justify-content: center; }
.programa-imagem img { height: 95%; width: auto; position: absolute; bottom: 0; transition: 0.5s; pointer-events: none; }
.programa-card:hover .programa-imagem img { transform: scale(1.08); filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }

.programa-info { padding: 0 20px 30px 20px; color: var(--branco); position: relative; }
.programa-horario { background-color: var(--laranja-vivo); color: var(--branco); padding: 6px 22px; border-radius: 30px; font-weight: 900; font-size: 1rem; display: inline-block; transform: translateY(-50%); border: 2px solid rgba(43,22,77,0.8); }
.programa-info h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 5px; margin-top: -10px; }
.programa-info p { font-size: 0.95rem; opacity: 0.8; font-weight: bold; }

/* =========================================
   7. POPUPS E MODAIS CENTRADAS
   ========================================= */
.modal-overlay-bg, .modal-overlay {
    position: fixed !important; top: 0 !important; left: 0 !important; width: 100vw !important; height: 100vh !important; background: rgba(0,0,0,0.8) !important; z-index: 4000 !important; opacity: 0 !important; visibility: hidden !important; transition: 0.3s !important; display: flex !important; justify-content: center !important; align-items: center !important;
}
.modal-overlay-bg.ativo, .modal-overlay.aberto { opacity: 1 !important; visibility: visible !important; }

.modal-habitantes, .modal-content {
    position: fixed !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) scale(0.8) !important; background: var(--branco) !important; padding: 30px !important; border-radius: 20px !important; box-shadow: 0 20px 50px rgba(0,0,0,0.8) !important; z-index: 4001 !important; text-align: center; opacity: 0 !important; visibility: hidden !important; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; border: 4px solid var(--roxo-escuro) !important; width: 90% !important; max-width: 450px !important; box-sizing: border-box;
}
.modal-habitantes.ativo, .modal-overlay.aberto .modal-content { opacity: 1 !important; visibility: visible !important; transform: translate(-50%, -50%) scale(1) !important; }

.modal-habitantes h3 { color: var(--roxo-escuro) !important; font-size: 2rem; margin-bottom: 10px; font-weight: 900; }
.modal-habitantes p { color: var(--laranja-vivo) !important; font-size: 1.3rem; font-weight: bold; margin-bottom: 20px; }
.modal-habitantes p span { font-size: 2rem; font-weight: 900; }
.modal-habitantes .fechar { background: var(--roxo-escuro) !important; color: var(--branco) !important; border: none; padding: 10px 25px; border-radius: 20px; font-weight: bold; cursor: pointer; transition: 0.3s; margin-top: 15px; }
.modal-habitantes .fechar:hover { background: var(--laranja-vivo) !important; }

.fechar-modal {
    position: absolute !important; top: 15px !important; right: 20px !important; font-size: 2.2rem !important; color: #f06c35 !important; opacity: 1 !important; visibility: visible !important; display: block !important; z-index: 9999 !important; cursor: pointer !important; font-weight: bold !important; background: none !important; border: none !important; transition: 0.3s !important;
}
.fechar-modal:hover { transform: scale(1.2) rotate(90deg) !important; color: #1d002c !important; }

.modal-header { height: 260px; background: radial-gradient(circle at bottom, rgba(240,108,53,0.4) 0%, transparent 70%); display: flex; justify-content: center; align-items: flex-end; position: relative; border-radius: 15px 15px 0 0; }
.modal-header img { height: 95%; width: auto; position: absolute; bottom: 0; }
.modal-body { padding: 30px; text-align: center; color: var(--roxo-escuro); position: relative; border-top: 1px solid rgba(0,0,0,0.1); }
.modal-body .programa-horario { margin-top: -50px; border: 2px solid var(--branco); margin-bottom: 20px; display: inline-block; padding: 5px 15px; background: var(--laranja-vivo); color: var(--branco); border-radius: 20px; font-weight: bold; }
.modal-body h3 { font-size: 2rem; font-weight: 900; margin-bottom: 5px; }

/* =========================================
   8. WEB TV (YOUTUBE DINÂMICO)
   ========================================= */
.webtv-section { background-color: #21003b; padding: 100px 5%; color: var(--branco); border-top: 1px solid rgba(255,255,255,0.05); }
.webtv-container { max-width: 1200px; margin: 0 auto; }
.webtv-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; gap: 30px; }
.webtv-tag { display: inline-flex; align-items: center; background: rgba(255, 255, 255, 0.05); padding: 6px 18px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; letter-spacing: 1px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.1); }
.webtv-tag .webtv-dot { width: 8px; height: 8px; background: var(--vermelho-live); border-radius: 50%; margin-right: 10px; box-shadow: 0 0 8px var(--vermelho-live); }
.webtv-title-area h2 { font-size: 3rem; font-weight: 900; line-height: 1.1; }
.webtv-title-area h2 span { color: var(--laranja-vivo); }
.webtv-desc { max-width: 400px; color: #aaaaaa; font-size: 1rem; line-height: 1.5; }
.webtv-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; }
.webtv-video-wrapper { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.webtv-video-container { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.webtv-video-container iframe { width: 100%; height: 100%; }
.webtv-live-badge { position: absolute; top: 20px; left: 20px; background: var(--vermelho-live); color: white; font-weight: bold; font-size: 0.8rem; padding: 5px 12px; border-radius: 5px; display: flex; align-items: center; gap: 8px; z-index: 10; }
.webtv-live-badge .webtv-dot { width: 6px; height: 6px; background: white; border-radius: 50%; }
.webtv-video-footer { padding: 20px; display: flex; justify-content: space-between; align-items: center; background: rgba(0,0,0,0.4); }
.webtv-channel-info { display: flex; align-items: center; gap: 15px; }
.webtv-avatar { width: 45px; height: 45px; background: var(--vermelho-live); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 1.2rem; }
.webtv-channel-text strong { display: block; font-size: 1rem; margin-bottom: 3px; }
.webtv-channel-text span { font-size: 0.8rem; color: #888; }
.webtv-btn-youtube { background: #ff0000; color: white; text-decoration: none; padding: 10px 20px; border-radius: 8px; font-weight: bold; font-size: 0.85rem; transition: 0.3s; }
.webtv-btn-youtube:hover { background: #cc0000; transform: scale(1.05); }
.webtv-sidebar { display: flex; flex-direction: column; gap: 20px; }
.webtv-schedule { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; padding: 30px 25px; flex: 1; }
.webtv-schedule h3 { font-size: 0.85rem; color: var(--laranja-vivo); letter-spacing: 1.5px; margin-bottom: 25px; font-weight: 900; text-transform: uppercase; }
.webtv-schedule-item { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: 0.3s; }
.webtv-schedule-item:hover { transform: translateX(10px); }
.webtv-schedule-item:last-child { border-bottom: none; padding-bottom: 0; }
.webtv-item-info { flex: 1; }
.webtv-arrow { color: #555; font-size: 1.5rem; font-weight: normal; }

.webtv-thumb-box { width: 85px; height: 48px; border-radius: 8px; background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.5); position: relative; }
.webtv-thumb-box::after { content: ''; position: absolute; top: -4px; right: -4px; width: 10px; height: 10px; background: var(--vermelho-live); border-radius: 50%; border: 2px solid var(--roxo-escuro); }
.webtv-item-info h4 { font-size: 0.9rem !important; margin-bottom: 3px; color: var(--branco); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; }
.webtv-item-info p { font-size: 0.75rem; color: #888; }

.webtv-subscribe { background: #ff0000; border-radius: 15px; padding: 20px; display: flex; justify-content: space-between; align-items: center; text-decoration: none; color: white; transition: 0.3s; box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2); }
.webtv-subscribe:hover { background: #cc0000; transform: translateY(-5px); }
.webtv-sub-content { display: flex; align-items: center; gap: 15px; }
.webtv-yt-icon { width: 35px; height: 35px; background: white; color: #ff0000; border-radius: 8px; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; }
.webtv-sub-content strong { display: block; font-size: 1.1rem; margin-bottom: 3px; }
.webtv-sub-content span { font-size: 0.8rem; opacity: 0.9; }
.webtv-arrow-right { font-size: 1.2rem; }

/* =========================================
   9. ANUNCIANTES E RODAPÉ
   ========================================= */
.parceiros-section { padding: 80px 2%; text-align: center; color: var(--branco); }
.badge-parceiros { background-color: var(--laranja-vivo); display: inline-block; padding: 10px 50px; font-size: 2.5rem; font-weight: 900; transform: skew(-10deg); margin-bottom: 60px; box-shadow: var(--brilho-laranja); }
.badge-parceiros span { display: inline-block; transform: skew(10deg); }
.carrossel-parceiros-wrapper { overflow-x: auto; width: 100%; max-width: 1600px; margin: 0 auto 40px auto; padding: 30px 0; -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); cursor: grab; scrollbar-width: none; }
.carrossel-parceiros-wrapper::-webkit-scrollbar { display: none; }
.carrossel-parceiros { display: inline-flex; gap: 20px; align-items: center; }
.circulo-parceiro { width: 200px; height: 200px; background: #ffffff; border-radius: 50%; display: flex; justify-content: center; align-items: center; transition: 0.3s; border: 3px solid transparent; cursor: pointer; flex-shrink: 0; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.circulo-parceiro:hover { transform: scale(1.1); border-color: var(--laranja-vivo); box-shadow: 0 0 25px rgba(240, 108, 53, 0.6); background: #ffffff; }
.circulo-parceiro img { width: 70%; height: 70%; object-fit: contain; pointer-events: none; }

.novidades-section { padding: 80px 5%; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.novidades-section h2 { font-size: 3rem; margin-bottom: 15px; color: var(--branco); font-weight: 900; }
.novidades-section p { color: var(--laranja-vivo); font-weight: bold; font-size: 1.1rem; }

.btn-saiba-mais { background-color: var(--laranja-vivo) !important; color: var(--branco) !important; padding: 12px 40px !important; border-radius: 30px !important; text-decoration: none !important; font-weight: bold !important; display: inline-block !important; transition: transform 0.3s !important; }
.btn-saiba-mais:hover { transform: scale(1.1) !important; }

footer { background: rgba(43, 22, 77, 0.8); backdrop-filter: blur(20px); color: var(--branco); padding: 60px 5% 140px 5%; border-top: 5px solid var(--laranja-vivo); position: relative; z-index: 10; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-logo img { width: 200px; transition: 0.3s; filter: drop-shadow(0 0 10px rgba(0,0,0,0.5)); }
.footer-logo img:hover { transform: scale(1.05); }
.footer-links { display: flex; gap: 60px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 15px; font-weight: bold; }
.footer-col p, .footer-col a { color: #ccc; text-decoration: none; font-size: 0.9rem; display: block; margin-bottom: 8px; transition: 0.3s; }
.footer-col a:hover { color: var(--laranja-vivo); padding-left: 5px; }
.social-icons { display: flex; gap: 15px; margin-top: 10px; }
.social-icons img { width: 22px; height: 22px; transition: 0.3s; filter: invert(1); }
.social-icons a:hover img { transform: translateY(-5px) scale(1.2); filter: invert(47%) sepia(82%) saturate(2138%) hue-rotate(344deg) brightness(98%) contrast(92%) !important; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; }
.footer-bottom a:hover { color: var(--laranja-vivo); }
.destaque-rodape { color: var(--laranja-vivo); font-weight: bold; }

#btnTopo { position: fixed; bottom: 120px; right: 30px; width: 55px; height: 55px; background: var(--laranja-vivo); color: white; border-radius: 50%; border: none; cursor: pointer; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 9998; font-size: 24px; box-shadow: var(--brilho-laranja); }
#btnTopo.mostrar { opacity: 1; visibility: visible; }
#btnTopo:hover { transform: scale(1.1); background-color: var(--laranja-claro); }

/* =========================================
   10. RESPONSIVIDADE
   ========================================= */

@media (max-width: 1024px) {
    header { padding: 0 3%; }
    .logo-header img { height: 110px; top: -45px; }
    header.rolagem .logo-header img { height: 60px; top: -25px; }
    
    .menu-toggle { display: block !important; cursor: pointer; order: 3; width: 30px; height: 22px; position: relative; z-index: 1001; }
    .menu-toggle .bar { display: block; width: 100%; height: 3px; margin: 5px 0; transition: 0.3s; background-color: var(--branco); border-radius: 2px; }
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    nav { position: fixed !important; top: 0; left: -100%; width: 280px; height: 100vh; background: rgba(43, 22, 77, 0.98); backdrop-filter: blur(20px); transition: 0.4s; display: flex; justify-content: center; align-items: center; z-index: 999; border-right: 1px solid rgba(255,255,255,0.1); }
    nav.active { left: 0 !important; box-shadow: 10px 0 30px rgba(0,0,0,0.8); }
    nav ul { flex-direction: column; gap: 30px; width: 100%; text-align: center; }
    nav a { font-size: 1.3rem; }

    .btn-anuncie-header { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); padding: 8px 15px; font-size: 0.9rem; z-index: 990; }
    header.rolagem .btn-anuncie-header { transform: translateY(-50%); }
    
    .webtv-grid { grid-template-columns: 1fr; }
    .webtv-header { flex-direction: column; align-items: flex-start; gap: 15px; }
}

@media (max-width: 768px) {
    .top-bar { flex-direction: column; gap: 8px; text-align: center; padding: 12px 15px; font-size: 0.8rem; }
    header { height: 65px; padding: 0 15px; }
    header.rolagem { height: 55px; }
    .logo-header img { height: 80px; top: -25px; }
    header.rolagem .logo-header img { height: 55px; top: -15px; }
    .btn-anuncie-header { 
        position: absolute; left: 50% !important; right: auto !important; top: 50%; 
        transform: translate(-50%, -50%) !important; padding: 6px 12px; font-size: 0.85rem; 
    }
    .menu-toggle { display: block; cursor: pointer; order: 3; width: 25px; height: 20px; position: relative; z-index: 1001; }
    .menu-toggle .bar { display: block; width: 100%; height: 2px; margin: 5px 0; transition: 0.3s; background-color: var(--branco); border-radius: 2px; }
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    nav { position: fixed; top: 0; left: -100%; width: 250px; height: 100vh; background: rgba(43, 22, 77, 0.98); backdrop-filter: blur(20px); transition: 0.4s; display: flex; justify-content: center; align-items: center; z-index: 999; }
    nav.active { left: 0; box-shadow: 10px 0 30px rgba(0,0,0,0.8); }
    nav ul { flex-direction: column; gap: 20px; width: 100%; text-align: center; }
    nav a { font-size: 1.2rem; }

    .hero, .cobertura-section, .programacao-section, .webtv-section, .parceiros-section, .novidades-section, .historia-section, .hero-interna {
        padding-top: 40px !important; padding-bottom: 40px !important;
    }

    .hero-title { font-size: 1.8rem !important; }
    .hero-subtitle { font-size: 0.95rem !important; margin-bottom: 15px !important; }
    .titulo-secao, .cobertura-header h2, .historia-section h2, .webtv-title-area h2, .hero-interna h1 { font-size: 1.6rem !important; }
    .cobertura-header p, .historia-section p, .hero-interna p { font-size: 0.85rem !important; }
    .btn-wpp-participe, .btn-saiba-mais { padding: 10px 20px !important; font-size: 0.85rem !important; margin-top: 15px !important; }
    
    .cards-container { gap: 10px !important; flex-direction: column; }
    .card { width: 100% !important; padding: 20px 15px !important; border-radius: 12px !important; }
    .card-icon { width: 45px !important; margin-bottom: 10px !important; }
    .card h3 { font-size: 1rem !important; margin-bottom: 5px !important; }
    .card p { font-size: 0.8rem !important; line-height: 1.3 !important; }

    .programa-card { flex: 0 0 180px !important; border-radius: 12px !important; margin: 0 5px !important; }
    .programa-imagem { height: 160px !important; }
    .programa-horario { font-size: 0.8rem !important; padding: 4px 12px !important; }
    .programa-info { padding: 0 10px 20px 10px !important; }
    .programa-info h3 { font-size: 1.1rem !important; margin-top: 0 !important; }
    .programa-info p { font-size: 0.75rem !important; }

    .cidade-nome { font-size: 5pt !important; }
    .icone-antena { width: 20px !important; height: 20px !important; }
    .tooltip-torre { font-size: 0.8rem !important; padding: 5px 10px !important; }

    .webtv-title-area h2 { font-size: 1.8rem !important; }
    .webtv-video-footer { padding: 10px 15px !important; flex-direction: column; gap: 10px; }
    .webtv-avatar { width: 35px !important; height: 35px !important; font-size: 1rem !important; }
    .webtv-channel-text strong { font-size: 0.9rem !important; }
    .webtv-schedule { padding: 20px 15px !important; border-radius: 12px !important; }
    .webtv-thumb-box { width: 70px !important; height: 40px !important; }
    .webtv-item-info h4 { font-size: 0.8rem !important; }
    .webtv-btn-youtube { width: 100%; text-align: center; padding: 8px !important; font-size: 0.8rem !important; }
    
    .badge-parceiros { font-size: 1.2rem !important; padding: 8px 20px !important; border-radius: 8px !important; transform: none !important; }
    .badge-parceiros span { transform: none !important; }
    .circulo-parceiro { width: 100px !important; height: 100px !important; }
    
    footer { padding: 40px 15px 140px 15px !important; }
    .footer-content { flex-direction: column; align-items: center; gap: 25px !important; text-align: center; border-bottom: none; }
    .footer-logo img { width: 140px !important; }
    .footer-links { flex-direction: column; gap: 20px !important; }
    .footer-col h4 { font-size: 1rem !important; margin-bottom: 10px !important; }
    .footer-col p, .footer-col a { font-size: 0.8rem !important; margin-bottom: 5px !important; }
    .footer-bottom { flex-direction: column; gap: 10px !important; text-align: center; font-size: 0.75rem !important; }
    
    .modal-habitantes, .modal-content { padding: 20px !important; border-width: 3px !important; width: 90% !important; max-width: 320px !important; }
    .modal-habitantes h3 { font-size: 1.4rem !important; }
    .modal-habitantes p { font-size: 1rem !important; margin-bottom: 15px !important; }
    .modal-habitantes p span { font-size: 1.3rem !important; }
    
    #btnTopo { bottom: 100px; right: 15px; width: 40px; height: 40px; font-size: 18px; }
    .social-icons { justify-content: center !important; margin-top: 15px !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.5rem !important; }
    .titulo-secao, .cobertura-header h2, .historia-section h2, .webtv-title-area h2, .hero-interna h1 { font-size: 1.3rem !important; }
    .programa-card { flex: 0 0 150px !important; }
    .programa-imagem { height: 130px !important; }
    .circulo-parceiro { width: 80px !important; height: 80px !important; }
    .cidade-nome { font-size: 4pt !important; }
}

/* =========================================
   SECÇÃO: ROLANDO AGORA (UX/UI PREMIUM NEON)
   ========================================= */
.now-playing-section { background: linear-gradient(135deg, #1f0f3a 0%, #2b164d 100%); padding: 100px 5%; display: flex; align-items: center; justify-content: center; gap: 100px; overflow: hidden; position: relative; border-bottom: 5px solid var(--laranja-vivo); box-shadow: inset 0 -20px 50px rgba(0,0,0,0.3); }
.np-image-container { position: relative; width: 360px; height: 360px; border-radius: 50%; display: flex; justify-content: center; align-items: center; z-index: 2; animation: float-3d 6s ease-in-out infinite; }
@keyframes float-3d { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }
.np-image-container::before { content: ''; position: absolute; width: 115%; height: 115%; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.3); box-shadow: 0 0 20px rgba(255, 255, 255, 0.05), inset 0 0 15px rgba(255, 255, 255, 0.05); z-index: 2; }
.np-progress-ring { position: absolute; width: 115%; height: 115%; border-radius: 50%; z-index: 3; -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 8px), black calc(100% - 7px)); mask: radial-gradient(closest-side, transparent calc(100% - 8px), black calc(100% - 7px)); filter: drop-shadow(0 0 6px #b700ff) drop-shadow(0 0 15px rgba(183, 0, 255, 0.6)); will-change: transform, opacity; }
.np-progress-ring::before, .np-progress-ring::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; background: radial-gradient(circle at 50% 4px, var(--cor-barra, #ffb62f) 4px, transparent 4.5px); }
.np-progress-ring::before { transform: rotate(0deg); }
.np-progress-ring::after { transform: rotate(var(--angulo, 0deg)); }
.np-concentric-circles { position: absolute; width: 100%; height: 100%; border-radius: 50%; background-color: rgba(183, 0, 255, 0.15); z-index: 1; animation: pulse-neon-waves 3s ease-in-out infinite; }
@keyframes pulse-neon-waves { 0%, 100% { box-shadow: 0 0 30px rgba(255, 0, 0, 0.6), 0 0 0 15px rgba(255, 0, 0, 0.4), 0 0 0 35px rgba(255, 0, 0, 0.1); } 50% { box-shadow: 0 0 70px rgb(255, 0, 0), 0 0 0 25px rgba(255, 0, 0, 0.6), 0 0 0 60px rgba(255, 0, 0, 0.25); } }
.np-image-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; position: relative; z-index: 5; background-color: var(--roxo-card); border: 3px solid rgba(255, 255, 255, 0.15); background-clip: padding-box; box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 0 10px rgba(255, 255, 255, 0.03); }

.np-info { max-width: 550px; color: var(--branco); z-index: 2; position: relative; }
.np-badge-container { margin-bottom: 20px; }
.np-badge { background: rgba(255, 42, 42, 0.15); color: #ff3366; border: 1px solid rgba(255, 42, 42, 0.3); font-weight: 900; font-size: 0.85rem; padding: 8px 18px; border-radius: 50px; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px; position: relative; overflow: hidden; animation: pulse-badge 2s infinite alternate; }
.np-badge::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent); animation: shine-badge 3s infinite; z-index: 1; }
.np-badge span, .np-badge { z-index: 2; }
@keyframes shine-badge { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
@keyframes pulse-badge { 0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 42, 42, 0.2); } 100% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(255, 42, 42, 0.5); } }
.live-dot { width: 8px; height: 8px; background-color: #ff3366; border-radius: 50%; display: inline-block; animation: blink-dot 1.5s infinite; box-shadow: 0 0 8px #ff3366; position: relative; z-index: 3; }
@keyframes blink-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
.np-info h1 { font-size: 4rem; font-weight: 900; margin-bottom: 15px; line-height: 1.1; background: linear-gradient(90deg, #ffffff, #ffd3c4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0px 10px 20px rgba(0,0,0,0.2); }
.np-info p { font-size: 1.15rem; opacity: 0.85; margin-bottom: 20px; line-height: 1.6; }
.np-horario { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: rgba(240, 108, 53, 0.1); border: 2px solid var(--laranja-vivo); color: var(--laranja-vivo); font-weight: 900; font-size: 1.1rem; padding: 10px 25px; border-radius: 50px; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1.5px; animation: pulse-horario 1.5s infinite alternate; }
.np-horario::before { content: '⏱'; font-size: 1.3rem; filter: drop-shadow(0 0 5px var(--laranja-vivo)); }
@keyframes pulse-horario { 0% { box-shadow: 0 0 10px rgba(240, 108, 53, 0.2), inset 0 0 5px rgba(240, 108, 53, 0.1); transform: scale(1); } 100% { box-shadow: 0 0 25px rgba(240, 108, 53, 0.8), inset 0 0 15px rgba(240, 108, 53, 0.4); transform: scale(1.05); background: rgba(240, 108, 53, 0.25); color: #ffffff; } }
.np-buttons { display: flex; gap: 20px; }
.btn-icon { font-size: 1.2rem; margin-right: 5px; }
.btn-np-ouvir { background: linear-gradient(135deg, var(--laranja-vivo), #d15622); color: var(--branco); font-weight: 900; padding: 15px 35px; border-radius: 50px; border: none; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 8px 20px rgba(240, 108, 53, 0.3); }
.btn-np-ouvir:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 15px 25px rgba(240, 108, 53, 0.5); }
.btn-np-compartilhar { background-color: rgba(255, 255, 255, 0.05); backdrop-filter: blur(5px); color: var(--branco); font-weight: 900; padding: 15px 35px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.2); cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.btn-np-compartilhar:hover { background-color: rgba(255, 255, 255, 0.15); border-color: var(--branco); transform: translateY(-5px); }

@media (max-width: 992px) { .now-playing-section { flex-direction: column; text-align: center; gap: 40px; padding: 60px 5%; } .np-buttons { justify-content: center; } }
@media (max-width: 768px) { .np-image-container { width: 250px; height: 250px; margin-bottom: 20px; } .np-info h1 { font-size: 2.8rem; } .np-buttons { flex-direction: column; gap: 15px; } .btn-np-ouvir, .btn-np-compartilhar { width: 100%; } }  

/* =========================================
   SECÇÃO SHOW DE PRÊMIOS
   ========================================= */
.premios-section { background: linear-gradient(135deg, #1f0f3a 0%, #2b164d 100%); padding: 80px 5%; overflow: hidden; border-top: 2px solid rgba(255, 255, 255, 0.05); }
.premios-header { text-align: center; color: var(--branco); margin-bottom: 50px; }
.premios-header h2 { font-size: 3rem; font-weight: 900; color: var(--laranja-vivo); margin-bottom: 10px; text-shadow: 0 5px 15px rgba(240, 108, 53, 0.3); }
.premios-header p { font-size: 1.2rem; opacity: 0.9; }
.premios-carousel { display: flex; gap: 25px; overflow-x: auto; padding: 20px 10px; scroll-behavior: smooth; scrollbar-width: none; }
.premios-carousel::-webkit-scrollbar { display: none; }
.premio-card { flex: 0 0 260px; height: 340px; border-radius: 20px; border: 3px solid var(--laranja-vivo); position: relative; cursor: pointer; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
.premio-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(240, 108, 53, 0.4); border-color: #ffffff; }
.premio-card img { width: 100%; height: 100%; object-fit: cover; }
.premio-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(31, 15, 58, 0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(3px); }
.premio-card:hover .premio-overlay { opacity: 1; }
.ver-detalhes { color: var(--branco); font-weight: 900; background: var(--laranja-vivo); padding: 12px 25px; border-radius: 30px; text-transform: uppercase; box-shadow: 0 5px 15px rgba(240, 108, 53, 0.5); }

.modal-premio-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px); /* Suporte para iPhones */
    transform: translateZ(0); /* Força a aceleração da GPU dedicada */
    will-change: opacity; /* Avisa ao navegador o que vai animar */
    z-index: 99999; align-items: center; justify-content: center; animation: fadeIn 0.3s ease; }
.modal-premio-content { background: var(--roxo-card, #1f0f3a); width: 90%; max-width: 800px; border-radius: 20px; position: relative; border: 2px solid var(--laranja-vivo, #f06c35); box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(240, 108, 53, 0.2); overflow: hidden; }
.modal-premio-body { display: flex; flex-wrap: wrap; }
.modal-premio-body img { flex: 1 1 300px; max-width: 350px; object-fit: cover; }
.modal-premio-info { flex: 1 1 300px; padding: 40px 30px; color: #fff; }
.badge-premio { background: var(--laranja-vivo, #f06c35); padding: 5px 15px; border-radius: 20px; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; display: inline-block; }

@media (max-width: 768px) {
    .premios-header h2 { font-size: 2.2rem; }
    .modal-premio-body { flex-direction: column; }
    .modal-premio-body img { width: 100%; max-width: 100%; height: 250px; }
}

@media (max-width: 768px) {
    .ondas-transmissao { transform: scale(0.5) !important; transform-origin: center center; }
}