/**
 * CSS Principal - Rádio Web
 * Design Moderno e Profissional
 */

/* =============================================
   VARIÁVEIS CSS
   ============================================= */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f5576c;
    --accent-hover: #e03050;
    --text-light: #ffffff;
    --text-dark: #1a1a2e;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a2e;
    --bg-card: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --player-height: 64px;
    --header-height: 110px;
}

/* =============================================
   RESET E BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
    padding-top: var(--player-height);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* =============================================
   PLAYER DE ÁUDIO FIXO
   ============================================= */
.audio-player {
    background: linear-gradient(90deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    color: var(--text-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    height: var(--player-height);
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--accent-color);
}

.audio-player .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.player-album-art {
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.player-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #aaa;
    display: inline-block;
    transition: background 0.3s;
}

.player-status-dot.playing {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse 1.5s infinite;
}

.player-live-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    background: var(--dark-gradient);
    color: var(--text-light);
    padding: 0;
    position: sticky;
    top: var(--player-height);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.header-top {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    font-size: 13px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-info {
    display: flex;
    gap: 25px;
}

.header-top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.header-top-social {
    display: flex;
    gap: 15px;
}

.header-top-social a {
    color: var(--text-light);
    font-size: 16px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-top-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.header-main {
    padding: 12px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navegação */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-light);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-login {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* =============================================
   DESTAQUES — carrossel (meia largura) + painel gospel
   ============================================= */
.featured-showcase {
    padding: 40px 0 48px;
    background: linear-gradient(165deg, #141428 0%, #1a1a38 42%, #12122a 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.featured-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 20% -10%, rgba(102, 126, 234, 0.15), transparent),
                radial-gradient(ellipse 55% 40% at 90% 100%, rgba(201, 162, 39, 0.08), transparent);
    pointer-events: none;
}

.featured-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.featured-slider-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.featured-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.featured-slider-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #e8cf6a;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.featured-slider-count {
    color: rgba(255, 255, 255, 0.5);
}

.featured-slider-viewport {
    position: relative;
    aspect-ratio: 16 / 10;
    min-height: 220px;
}

.featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.featured-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.featured-slide-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.featured-slide-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1e1e3f;
}

.featured-slide--theme-1 .featured-slide-media {
    background-image: linear-gradient(135deg, #2d1f4e 0%, #1a3d5c 50%, #243b6b 100%);
}

.featured-slide--theme-2 .featured-slide-media {
    background-image: linear-gradient(135deg, #1f2d50 0%, #2e1f3d 48%, #1a3f4a 100%);
}

.featured-slide--theme-3 .featured-slide-media {
    background-image: linear-gradient(145deg, #3d2f1f 0%, #2a2848 55%, #1c2f45 100%);
}

.featured-slide-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 22, 0.92) 0%, transparent 62%);
    pointer-events: none;
}

.featured-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px 18px;
    z-index: 2;
}

.featured-slide-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.9);
    color: #16162a;
    margin-bottom: 8px;
}

.featured-slide-caption h2 {
    font-size: clamp(17px, 2.8vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 6px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.featured-slide-caption p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-slide-cta {
    font-size: 12px;
    font-weight: 600;
    color: #e8cf6a;
}

.featured-slide-link:hover .featured-slide-cta {
    text-decoration: underline;
}

.featured-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.featured-nav:hover {
    background: rgba(102, 126, 234, 0.45);
}

.featured-nav-prev { left: 10px; }
.featured-nav-next { right: 10px; }

.featured-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
}

.featured-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.featured-dot.is-active {
    background: #e8cf6a;
    transform: scale(1.2);
}

.featured-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid rgba(201, 162, 39, 0.75);
}

.featured-panel-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e8cf6a;
    font-weight: 600;
    margin-bottom: 10px;
}

.featured-panel-title {
    font-size: clamp(1.35rem, 2.8vw, 1.65rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #fff;
}

.featured-panel-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 18px;
}

.featured-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.btn-panel-primary,
.btn-panel-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
}

.btn-panel-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    box-shadow: 0 6px 22px rgba(102, 126, 234, 0.4);
}

.btn-panel-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.btn-panel-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.btn-panel-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.featured-panel-list {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.featured-panel-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.featured-panel-list i {
    color: #e8cf6a;
    width: 18px;
    text-align: center;
}

.featured-panel-quote {
    margin: 0;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius);
    border-right: 2px solid rgba(201, 162, 39, 0.5);
}

.featured-panel-quote p {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin-bottom: 6px;
}

.featured-panel-quote cite {
    font-size: 12px;
    color: rgba(232, 207, 106, 0.85);
    font-style: normal;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--secondary-gradient);
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 147, 251, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}



/* =============================================
   PLAYER - ESTILOS COMPARTILHADOS
   ============================================= */
.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-info-text h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-info-text p {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-play {
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-play:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
}

.btn-play.playing {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
}

.player-volume input[type="range"] {
    width: 90px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

/* =============================================
   LAYOUT PRINCIPAL
   ============================================= */
.main-content {
    padding: 30px 0;
}

.main-content .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
}

/* =============================================
   SEÇÕES
   ============================================= */
.section {
    margin-bottom: 35px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-link {
    color: var(--accent-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-link:hover {
    gap: 10px;
}

/* =============================================
   CHAT
   ============================================= */
.chat-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-body {
    padding: 20px;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.chat-welcome {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-gray);
}

.chat-welcome i {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.chat-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
}

.chat-footer button {
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
}

.chat-footer button:hover {
    background: var(--accent-hover);
}

/* =============================================
   CÂMERA AO VIVO
   ============================================= */
.live-camera {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.live-camera-header {
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    color: var(--text-light);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-badge {
    background: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-camera-body {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.live-camera-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================
   CARDS (Notícias, Podcasts, Vídeos)
   ============================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.card-content {
    padding: 18px;
}

.card-category {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.4;
    transition: var(--transition);
}

.card-title:hover {
    color: var(--primary-color);
}

.card-excerpt {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-gray);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget-header {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget-body {
    padding: 20px;
}

/* Top Músicas */
.top-music-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-music-item:last-child {
    border-bottom: none;
}

.top-music-rank {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.top-music-info {
    flex: 1;
}

.top-music-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.top-music-info p {
    font-size: 12px;
    color: var(--text-gray);
}

.top-music-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    object-fit: cover;
}

/* Aplicativos */
.apps-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.app-item:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

.app-item i {
    font-size: 24px;
}

/* Locutor no Ar */
.announcer-card {
    text-align: center;
}

.announcer-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.announcer-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.announcer-program {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

/* Visitantes */
.visitors-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.visitor-stat {
    text-align: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.visitor-stat-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
}

.visitor-stat-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 5px;
}

/* Enquete */
.poll-option {
    margin-bottom: 15px;
}

.poll-option input[type="radio"] {
    margin-right: 10px;
}

.poll-option label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.poll-bar {
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}

.poll-bar-fill {
    height: 100%;
    background: var(--accent-color);
    transition: width 0.5s ease;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark-gradient);
    color: var(--text-light);
    padding: 50px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 35px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 15px;
    border-color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* =============================================
   MODAL DO PLAYER DE RÁDIO
   ============================================= */
.radio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.radio-modal.active {
    display: flex;
}

.radio-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.radio-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.radio-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.radio-player-container {
    text-align: center;
}

.radio-album-art {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4);
    animation: rotateAlbum 20s linear infinite;
    animation-play-state: paused;
}

.radio-album-art.playing {
    animation-play-state: running;
}

.radio-album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes rotateAlbum {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.radio-song-info h2 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.radio-song-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 25px;
}

.audio-visualizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-bottom: 25px;
}

.audio-visualizer .bar {
    width: 6px;
    background: linear-gradient(to top, #e94560, #f39c12);
    border-radius: 3px;
    animation: equalize 0.8s ease-in-out infinite;
}

.audio-visualizer .bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.audio-visualizer .bar:nth-child(2) { height: 30px; animation-delay: 0.1s; }
.audio-visualizer .bar:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.audio-visualizer .bar:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.audio-visualizer .bar:nth-child(5) { height: 20px; animation-delay: 0.4s; }
.audio-visualizer .bar:nth-child(6) { height: 30px; animation-delay: 0.5s; }
.audio-visualizer .bar:nth-child(7) { height: 25px; animation-delay: 0.6s; }
.audio-visualizer .bar:nth-child(8) { height: 35px; animation-delay: 0.7s; }
.audio-visualizer .bar:nth-child(9) { height: 20px; animation-delay: 0.8s; }
.audio-visualizer .bar:nth-child(10) { height: 30px; animation-delay: 0.9s; }
.audio-visualizer .bar:nth-child(11) { height: 25px; animation-delay: 1s; }
.audio-visualizer .bar:nth-child(12) { height: 35px; animation-delay: 1.1s; }
.audio-visualizer .bar:nth-child(13) { height: 20px; animation-delay: 1.2s; }
.audio-visualizer .bar:nth-child(14) { height: 30px; animation-delay: 1.3s; }
.audio-visualizer .bar:nth-child(15) { height: 25px; animation-delay: 1.4s; }

.audio-visualizer.paused .bar {
    animation-play-state: paused;
    height: 10px !important;
}

@keyframes equalize {
    0%, 100% { height: 10px; }
    50% { height: 35px; }
}

.radio-player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.btn-play-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e94560, #f39c12);
    border: none;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.btn-play-large:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.5);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.volume-control i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.volume-control input {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
}

.volume-control input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #e94560;
    border-radius: 50%;
    cursor: pointer;
}

.volume-control input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #e94560;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.radio-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

.status-dot.offline {
    background: #ef4444;
    animation: none;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 1200px) {
    .main-content .container {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 992px) {
    .featured-showcase-grid {
        grid-template-columns: 1fr;
    }

    .featured-panel {
        order: 2;
    }

    .featured-slider-wrap {
        order: 1;
    }

    .featured-slider-viewport {
        aspect-ratio: 16 / 10;
        min-height: 260px;
    }
    
    .main-content .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    
    .footer .container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        display: none;
    }
    
    .header-main {
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark-gradient);
        flex-direction: column;
        padding: 80px 25px 30px;
        transition: var(--transition);
        z-index: 9999;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 14px 18px;
        width: 100%;
        border-left: 3px solid transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(102, 126, 234, 0.2);
        border-left-color: #667eea;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .featured-showcase {
        padding: 32px 0 40px;
    }

    .featured-slide-caption h2 {
        font-size: 17px;
    }

    .featured-nav {
        width: 34px;
        height: 34px;
    }
    
    .audio-player .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .player-info {
        justify-content: center;
    }
    
    .player-controls {
        justify-content: center;
    }
    
    .player-volume {
        display: none;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    
    .card-image {
        height: 150px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .sidebar-widget-header {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .sidebar-widget-body {
        padding: 15px;
    }
    
    .footer {
        padding: 35px 0 20px;
    }
    
    .footer .container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 22px;
    }
    
    .featured-showcase {
        padding: 28px 0 34px;
    }

    .featured-panel-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-panel-outline,
    .btn-panel-primary {
        justify-content: center;
    }

    .featured-slider-viewport {
        min-height: 200px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .card-content {
        padding: 14px;
    }
    
    .card-title {
        font-size: 15px;
    }
    
    .card-excerpt {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .card-meta {
        font-size: 11px;
        padding-top: 10px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .audio-player {
        position: relative;
        top: auto;
    }
    
    .player-info img {
        width: 45px;
        height: 45px;
    }
    
    .player-controls .btn-play {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .visitors-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .visitor-stat {
        padding: 10px;
    }
    
    .visitor-stat-number {
        font-size: 20px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .featured-slide-caption h2 {
        font-size: 17px;
    }

    .logo {
        font-size: 18px;
    }

    .btn-login {
        padding: 6px 14px;
        font-size: 12px;
    }

    .header-top-info {
        display: none;
    }

    /* Modal responsivo */
    .radio-modal-content {
        padding: 25px;
        width: 95%;
    }

    .radio-album-art {
        width: 200px;
        height: 200px;
    }

    .album-glow {
        width: 220px;
        height: 220px;
    }

    .radio-song-info h2 {
        font-size: 20px;
    }

    .radio-song-info p {
        font-size: 14px;
    }

    .radio-player-controls {
        gap: 20px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .btn-play-large {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .audio-visualizer .bar {
        width: 4px;
    }
}
