:root {
    --bg-dark: #0f1117;
    --card-bg: #1a1d26;
    --primary: #ff0055;
    --primary-hover: #ff2a73;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Inter, sans-serif; /* Define Poppins para todo o site */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    padding-bottom: 100px; /* Espaço livre para o player não cobrir o conteúdo */
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: var(--card-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; }
.logo span { color: var(--primary); }

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav a:hover, .nav a.active { color: var(--primary); }

/* Conteúdo */
.main-content {
    padding: 2rem 3rem;
    transition: opacity 0.2s ease-in-out;
}

/* Player Fixo no Rodapé (Glassmorphism) */
.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(26, 29, 38, 0.85);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 1000;
}

.track-info { display: flex; align-items: center; gap: 1rem; }
.track-cover {
    width: 50px;
    height: 50px;
    background-color: #2a2e3d;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
}

.track-details { display: flex; flex-direction: column; }
.track-details span { font-size: 0.85rem; color: var(--text-muted); }

.btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s transform;
}

.btn-play:hover { transform: scale(1.08); background-color: var(--primary-hover); }

.player-volume { display: flex; align-items: center; gap: 0.5rem; }
.player-volume input { accent-color: var(--primary); cursor: pointer; }

/* Layout da Home */
.home-container { display: flex; flex-direction: column; gap: 2.5rem; }

/* Hero Banner (No Ar Agora) */
.hero-no-ar {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.15), rgba(26, 29, 38, 0.9));
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 85, 0.2);
    color: var(--primary);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.dot-live {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: blink 1.5s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-content { display: flex; align-items: center; gap: 2rem; margin-top: 1.5rem; }
.locutor-avatar img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); }
.show-time { color: var(--text-muted); font-size: 0.9rem; }
.show-title { font-size: 2rem; margin: 0.2rem 0; color: #fff; }
.btn-whatsapp {
    display: inline-block;
    margin-top: 1rem;
    background-color: #25d366;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-whatsapp:hover { opacity: 0.9; transform: translateY(-2px); }

/* Grid de Conteúdo (Notícias + Mural) */
.home-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .home-grid { grid-template-columns: 1fr; }
    .hero-content { flex-direction: column; text-align: center; }
}

.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.link-ver-mais { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 0.9rem; }

/* Cards de Notícias */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.card-noticia {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}
.card-noticia:hover { transform: translateY(-5px); }
.card-thumb { position: relative; height: 140px; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}
.card-body { padding: 1rem; }
.card-date { font-size: 0.75rem; color: var(--text-muted); }
.card-body h3 { font-size: 1rem; margin: 0.4rem 0; color: #fff; }
.card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* Mural de Recados */
.section-mural { background: var(--card-bg); padding: 1.5rem; border-radius: 12px; height: fit-content; }
.form-mural { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.form-mural input, .form-mural textarea {
    background: #12141d;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.7rem;
    border-radius: 6px;
    font-size: 0.85rem;
}
.btn-enviar-mural {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.mural-feed { display: flex; flex-direction: column; gap: 1rem; max-height: 400px; overflow-y: auto; }
.mural-card { background: #12141d; padding: 0.8rem; border-radius: 8px; border-left: 3px solid var(--primary); }
.mural-header { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 0.4rem; }
.mural-header small { color: var(--text-muted); }
.mural-text { font-size: 0.85rem; color: #e1e1e1; font-style: italic; }
.mural-time { font-size: 0.7rem; color: var(--text-muted); display: block; margin-top: 0.4rem; text-align: right; }

/* Oculta o Honeypot de forma totalmente imperceptível ao usuário */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: -9999px;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Container do Equalizador */
.visualizer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

#audio-visualizer {
    width: 200px;
    height: 40px;
    border-radius: 4px;
}

/* Em telas pequenas (celulares), oculta o equalizador para economizar espaço */
@media (max-width: 768px) {
    .visualizer-container {
        display: none;
    }
}

/* Página de Programação */
.programacao-container { display: flex; flex-direction: column; gap: 2rem; }

.page-title h1 { font-size: 2rem; color: #fff; margin-bottom: 0.3rem; }
.page-title p { color: var(--text-muted); font-size: 0.95rem; }

/* Abas de Dias da Semana */
.dias-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.tab-btn:hover { color: #fff; border-color: var(--primary); }

.tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.badge-hoje {
    background: rgba(255, 255, 255, 0.25);
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Grupos e Cards da Grade */
.day-group { display: none; }
.day-group.active { display: block; }

.schedule-grid { display: flex; flex-direction: column; gap: 1rem; }

.schedule-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    transition: transform 0.2s, border-color 0.2s;
}

.schedule-card:hover { transform: translateX(5px); }

/* Destaque quando o programa está no ar */
.schedule-card.now-live {
    border: 1px solid var(--primary);
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.1), var(--card-bg));
}

.schedule-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.time-range { color: var(--primary); font-weight: 700; font-size: 0.9rem; }

.live-pill {
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.schedule-body { display: flex; gap: 1.2rem; align-items: center; }

.schedule-thumb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.schedule-info h3 { font-size: 1.1rem; color: #fff; margin-bottom: 0.2rem; }
.host-name { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.description { font-size: 0.85rem; color: #b3b3b3; line-height: 1.4; }

.empty-schedule {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 12px;
    color: var(--text-muted);
}

/* Página de Podcasts */
.podcasts-container { display: flex; flex-direction: column; gap: 2rem; }

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
}

.podcast-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
}

.podcast-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 85, 0.3);
}

.podcast-thumb {
    position: relative;
    height: 180px;
    width: 100%;
}

.podcast-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-duracao {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.podcast-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.podcast-program {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.podcast-title {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.podcast-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.podcast-desc {
    font-size: 0.85rem;
    color: #b3b3b3;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Botão de Ouvir Episódio */
.btn-play-podcast {
    background: rgba(255, 0, 85, 0.15);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    text-align: center;
}

.btn-play-podcast:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}

.empty-podcasts {
    text-align: center;
    padding: 4rem;
    background: var(--card-bg);
    border-radius: 12px;
    color: var(--text-muted);
}

/* Promoções */
.promocoes-container { display: flex; flex-direction: column; gap: 2rem; }

.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.promo-thumb { position: relative; height: 200px; }
.promo-thumb img { width: 100%; height: 100%; object-fit: cover; }

.badge-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}
.status-on { background: rgba(37, 211, 102, 0.9); color: #fff; }
.status-off { background: rgba(0, 0, 0, 0.8); color: #9ca3af; }

.promo-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.promo-date { font-size: 0.8rem; color: var(--primary); font-weight: 700; margin-bottom: 0.5rem; }
.promo-title { font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; }
.promo-desc { font-size: 0.85rem; color: #b3b3b3; line-height: 1.4; margin-bottom: 1rem; flex-grow: 1; }

.promo-regulamento { margin-bottom: 1.2rem; font-size: 0.8rem; color: var(--text-muted); }
.promo-regulamento summary { cursor: pointer; color: #fff; font-weight: 600; }
.promo-regulamento p { margin-top: 0.5rem; padding: 0.5rem; background: #12141d; border-radius: 6px; }

.btn-participar {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}
.btn-participar:hover { background: var(--primary-hover); }
.btn-participar.disabled { background: #2a2e3d; color: var(--text-muted); cursor: not-allowed; }

/* Modal Overlay & Card */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex; justify-content: center; align-items: center;
    z-index: 2000;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 90%; max-width: 450px;
    position: relative;
}

.modal-close {
    position: absolute; top: 15px; right: 15px;
    background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer;
}

.modal-header h3 { font-size: 1.3rem; color: #fff; }
.modal-promo-name { color: var(--primary); font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; }

.form-promo { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; color: var(--text-muted); }
.form-group input {
    background: #12141d; border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 0.75rem; border-radius: 8px; font-size: 0.9rem;
}

.btn-enviar-inscricao {
    background: #25d366; color: white; border: none;
    padding: 0.85rem; border-radius: 8px; font-weight: 700;
    cursor: pointer; margin-top: 0.5rem; transition: 0.3s;
}
.btn-enviar-inscricao:hover { opacity: 0.9; }

/* Página de Álbuns */
.albuns-container { display: flex; flex-direction: column; gap: 2rem; }

.albuns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.album-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
}

.album-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 85, 0.3);
}

.album-thumb { position: relative; height: 210px; width: 100%; }
.album-thumb img { width: 100%; height: 100%; object-fit: cover; }

.badge-qtd-fotos {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.album-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }

.album-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.album-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    flex-grow: 1;
}

.btn-ver-galeria {
    background: rgba(255, 0, 85, 0.15);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-ver-galeria:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}

/* Lightbox (Modal Fullscreen) */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: flex; justify-content: center; align-items: center;
    z-index: 3000;
}

.lightbox-close {
    position: absolute; top: 20px; right: 25px;
    background: rgba(255,255,255,0.1); border: none; color: #fff;
    font-size: 1.5rem; width: 45px; height: 45px; border-radius: 50%;
    cursor: pointer; transition: 0.3s; z-index: 3001;
}
.lightbox-close:hover { background: var(--primary); }

.lightbox-content {
    display: flex; align-items: center; justify-content: space-between;
    width: 95%; max-width: 1100px; height: 85vh; gap: 1rem;
}

.lightbox-stage {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    flex-grow: 1; height: 100%; position: relative;
}

#lightbox-img {
    max-width: 100%; max-height: 75vh;
    object-fit: contain; border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.lightbox-info { text-align: center; margin-top: 1rem; }
.lightbox-counter { color: var(--primary); font-size: 0.85rem; font-weight: 700; }
.lightbox-caption { color: #e1e1e1; font-size: 0.95rem; margin-top: 0.3rem; }

.lightbox-prev, .lightbox-next {
    background: rgba(255, 255, 255, 0.1); color: #fff; border: none;
    font-size: 1.5rem; width: 50px; height: 50px; border-radius: 50%;
    cursor: pointer; transition: 0.3s; flex-shrink: 0;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); }

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next { position: absolute; bottom: 10px; }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }
}

/* Página de Notícias */
.noticias-container { display: flex; flex-direction: column; gap: 2rem; }

.page-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Form de Busca */
.search-box {
    display: flex;
    gap: 0.5rem;
    background: var(--card-bg);
    padding: 0.4rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-box input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
    width: 260px;
    outline: none;
}

.search-box button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover { background: var(--primary-hover); }

/* Grid de Notícias */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.noticia-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
}

.noticia-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 85, 0.3);
}

.noticia-thumb { position: relative; height: 190px; }
.noticia-thumb img { width: 100%; height: 100%; object-fit: cover; }

.noticia-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }

.noticia-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.noticia-title { font-size: 1.15rem; color: #fff; margin-bottom: 0.6rem; line-height: 1.3; }
.noticia-summary { font-size: 0.85rem; color: #b3b3b3; line-height: 1.4; margin-bottom: 1.5rem; flex-grow: 1; }

.btn-ler-noticia {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    padding: 0;
    transition: 0.2s;
}

.btn-ler-noticia:hover { color: #fff; transform: translateX(3px); }

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.page-link {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.page-link:hover, .page-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Modal Notícia Completa */
.modal-noticia-content {
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
}

.noticia-modal-header { margin-bottom: 1rem; }
.noticia-modal-header h2 { font-size: 1.6rem; color: #fff; margin: 0.5rem 0; }

.noticia-modal-img { height: 280px; width: 100%; border-radius: 10px; overflow: hidden; margin-bottom: 1.2rem; }
.noticia-modal-img img { width: 100%; height: 100%; object-fit: cover; }

.noticia-modal-text {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-line;
}

.empty-news {
    text-align: center;
    padding: 4rem;
    background: var(--card-bg);
    border-radius: 12px;
    color: var(--text-muted);
}

/* Página de Contato */
.contato-container { display: flex; flex-direction: column; gap: 2rem; }

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .contato-grid { grid-template-columns: 1fr; }
}

/* Coluna de Informações */
.contato-info-side { display: flex; flex-direction: column; gap: 1.5rem; }

.info-cards-list { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, border-color 0.3s;
}

.info-card:hover { transform: translateX(5px); border-color: rgba(255, 0, 85, 0.3); }

.card-zap { border-left: 4px solid #25d366; }

.info-icon { font-size: 1.8rem; }
.info-text strong { display: block; color: #fff; font-size: 1rem; }
.info-text span { font-size: 0.85rem; color: var(--text-muted); }

/* Caixa de Redes Sociais */
.social-box {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-box h3 { font-size: 1rem; color: #fff; margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.social-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.social-btn:hover { opacity: 0.85; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.facebook { background: #1877f2; }
.social-btn.youtube { background: #ff0000; }

/* Form Card */
.form-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

.form-card h2 { font-size: 1.5rem; color: #fff; margin-bottom: 0.3rem; }
.form-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.form-contato { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-group-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

.form-group input, .form-group select, .form-group textarea {
    background: #12141d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
}

.btn-enviar-contato {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-enviar-contato:hover { background: var(--primary-hover); }

.badge-origem {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
}

.exclusive-tag {
    background: rgba(255, 0, 85, 0.9);
    color: #fff;
}

.rss-tag {
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(4px);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.btn-ler-noticia.link-externo {
    display: inline-block;
    text-decoration: none;
    color: #38bdf8;
}
.btn-ler-noticia.link-externo:hover { color: #fff; }

/* Página de Locutores */
.locutores-container, .top-ouvintes-container { display: flex; flex-direction: column; gap: 2rem; }

.locutores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.locutor-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.locutor-card:hover { transform: translateY(-5px); border-color: rgba(255, 0, 85, 0.3); }

.locutor-avatar-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    margin-bottom: 1rem;
}

.locutor-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }

.locutor-info h2 { font-size: 1.3rem; color: #fff; margin-bottom: 0.3rem; }
.locutor-show { color: var(--primary); font-weight: 700; font-size: 0.85rem; display: block; }
.locutor-time { color: var(--text-muted); font-size: 0.8rem; display: block; margin-bottom: 0.8rem; }
.locutor-bio { font-size: 0.85rem; color: #b3b3b3; line-height: 1.4; margin-bottom: 1.2rem; }

.btn-insta-locutor {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}
.btn-insta-locutor:hover { background: #e1306c; }

/* Página de Top Ouvintes (Pódio) */
.podium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.ouvinte-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Destaques do Pódio */
.ouvinte-card.rank-gold {
    border: 1px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), var(--card-bg));
}
.ouvinte-card.rank-silver {
    border: 1px solid #c0c0c0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.08), var(--card-bg));
}
.ouvinte-card.rank-bronze {
    border: 1px solid #cd7f32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.08), var(--card-bg));
}

.rank-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.rank-gold .rank-badge { background: #ffd700; color: #000; }
.rank-silver .rank-badge { background: #c0c0c0; color: #000; }
.rank-bronze .rank-badge { background: #cd7f32; color: #fff; }

.ouvinte-photo-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.ouvinte-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

.ouvinte-body h2 { font-size: 1.25rem; color: #fff; margin-bottom: 0.2rem; }
.ouvinte-city { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 0.8rem; }

.ouvinte-prize {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.ouvinte-song { font-size: 0.8rem; color: var(--primary); margin-bottom: 0.8rem; }

.ouvinte-quote {
    font-size: 0.85rem;
    color: #b3b3b3;
    font-style: italic;
    line-height: 1.4;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.8rem;
}

.empty-state {
    text-align: center;
    padding: 4rem;
    background: var(--card-bg);
    border-radius: 12px;
    color: var(--text-muted);
}