/**
 * Template Radio - Estilos Principais
 * Design exclusivo para radiodifusoras
 */

:root {
    --radio-primary: #ff6b35;
    --radio-secondary: #004e89;
    --radio-accent: #ffd23f;
    --radio-dark: #1a1a1a;
    --radio-light: #ffffff;
    --radio-gray: #6c757d;
    --radio-border: #dee2e6;
    --radio-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd23f 100%);
    --radio-gradient-dark: linear-gradient(135deg, #004e89 0%, #0066cc 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    background-attachment: fixed;
    color: #1a1a1a;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 78, 137, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===== PLAYER DE RÁDIO ===== */
.radio-player-container {
    background: var(--radio-gradient);
    color: white;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    border-bottom: 3px solid var(--radio-accent);
    position: relative;
    overflow: hidden;
}

.radio-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.1) 2px,
            rgba(255,255,255,0.1) 4px
        );
    opacity: 0.3;
    pointer-events: none;
}

.radio-player-container::after {
    content: '📻';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    opacity: 0.2;
    pointer-events: none;
}

/* Ondas de Rádio Animadas */
.radio-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.wave {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: waveAnimation 3s infinite;
}

.wave1 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave2 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.wave3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

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

/* Frequência da Rádio */
.radio-frequency {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    margin: 8px 0;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.radio-frequency i {
    color: var(--radio-accent);
    animation: signalPulse 2s infinite;
}

.frequency-value {
    font-weight: 900;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

@keyframes signalPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Visualizador de Áudio */
.audio-visualizer {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    padding: 0 15px;
}

.audio-visualizer .bar {
    width: 4px;
    background: var(--radio-accent);
    border-radius: 2px;
    animation: audioWave 1.5s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(255, 210, 63, 0.6);
}

.audio-visualizer .bar1 { height: 20%; animation-delay: 0s; }
.audio-visualizer .bar2 { height: 40%; animation-delay: 0.1s; }
.audio-visualizer .bar3 { height: 60%; animation-delay: 0.2s; }
.audio-visualizer .bar4 { height: 80%; animation-delay: 0.3s; }
.audio-visualizer .bar5 { height: 100%; animation-delay: 0.4s; }
.audio-visualizer .bar6 { height: 70%; animation-delay: 0.5s; }
.audio-visualizer .bar7 { height: 50%; animation-delay: 0.6s; }

@keyframes audioWave {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

.radio-player-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.radio-player-info {
    flex: 1;
    min-width: 200px;
}

.radio-player-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.radio-player-title i {
    color: var(--radio-accent);
    font-size: 28px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 8px rgba(255, 210, 63, 0.8));
}

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

.radio-player-status {
    font-size: 14px;
    font-weight: 700;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.radio-player-status .status-indicator {
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.8);
}

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

.radio-player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-player-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid white;
    background: rgba(255,255,255,0.25);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.radio-player-btn:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.radio-player-btn.play {
    width: 70px;
    height: 70px;
    background: var(--radio-accent);
    border: 4px solid white;
    font-size: 28px;
    color: var(--radio-dark);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.radio-player-btn.play:hover {
    background: #ffc107;
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.radio-player-volume {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.radio-player-volume input[type="range"] {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.radio-player-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.radio-player-volume input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* ===== BARRA DE FREQUÊNCIA ===== */
.radio-frequency-bar {
    background: var(--radio-gradient-dark);
    color: white;
    padding: 8px 0;
    border-bottom: 2px solid var(--radio-accent);
    position: relative;
    overflow: hidden;
}

.radio-frequency-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.05) 50px,
        rgba(255, 255, 255, 0.05) 52px
    );
    pointer-events: none;
}

.frequency-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.frequency-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.frequency-display i {
    color: var(--radio-accent);
    font-size: 18px;
    animation: signalPulse 2s infinite;
}

.frequency-text {
    font-weight: 900;
    font-size: 16px;
    color: var(--radio-accent);
    text-shadow: 0 0 10px rgba(255, 210, 63, 0.5);
}

.frequency-separator {
    opacity: 0.5;
    margin: 0 5px;
}

.frequency-location {
    opacity: 0.9;
}

.radio-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: rgba(255, 210, 63, 0.2);
    border: 2px solid var(--radio-accent);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: badgePulse 3s infinite;
}

.radio-badge i {
    color: var(--radio-accent);
    animation: rotate 2s linear infinite;
}

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

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 210, 63, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 210, 63, 0.6); }
}

/* ===== HEADER ===== */
.radio-header {
    background: var(--radio-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 999;
    border-bottom: 4px solid var(--radio-primary);
}

.radio-header-top {
    background: var(--radio-gradient-dark);
    color: white;
    padding: 12px 0;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.radio-header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.radio-header-top-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.radio-logo {
    max-height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

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

.radio-header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.radio-header-nav a {
    color: var(--radio-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.radio-header-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--radio-primary);
    transition: width 0.3s ease;
}

.radio-header-nav a:hover {
    color: var(--radio-primary);
    background: rgba(255, 107, 53, 0.1);
}

.radio-header-nav a:hover::before {
    width: 80%;
}

/* ===== PROGRAMAÇÃO ===== */
.radio-programacao {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 0;
    margin: 40px 0;
    border-top: 4px solid var(--radio-primary);
    border-bottom: 4px solid var(--radio-primary);
    position: relative;
}

.radio-programacao::before {
    content: '🎵';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    opacity: 0.05;
    pointer-events: none;
}

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

.radio-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
}

.radio-section-icon {
    width: 60px;
    height: 60px;
    background: var(--radio-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: iconPulse 3s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6); }
}

.radio-section-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--radio-gradient);
    border-radius: 25px;
    color: white;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.radio-programacao-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--radio-secondary);
    margin: 0;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.radio-programacao-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--radio-gradient);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.radio-programacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.radio-programacao-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 6px solid var(--radio-primary);
    position: relative;
    overflow: hidden;
}

.programa-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #ef4444;
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.5);
    animation: livePulse 2s infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(239, 68, 68, 0.5); }
    50% { box-shadow: 0 2px 20px rgba(239, 68, 68, 0.8); }
}

.radio-programacao-item::before {
    content: '▶';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--radio-primary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.radio-programacao-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-left-width: 8px;
}

.radio-programacao-item:hover::before {
    opacity: 0.6;
    transform: translateY(-50%) scale(1.2);
}

.radio-programacao-item.active {
    border-left-color: var(--radio-accent);
    background: var(--radio-gradient);
    color: white;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
}

.radio-programacao-item.active::before {
    color: white;
    opacity: 0.8;
}

.radio-programacao-item-time {
    font-size: 16px;
    color: var(--radio-primary);
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-programacao-item-time i {
    font-size: 14px;
}

.radio-programacao-item.active .radio-programacao-item-time {
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.radio-programacao-item-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--radio-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.radio-programacao-item.active .radio-programacao-item-name {
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.radio-programacao-item-host {
    font-size: 15px;
    color: var(--radio-gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-programacao-item-host i {
    color: var(--radio-primary);
    font-size: 14px;
}

.radio-programacao-item.active .radio-programacao-item-host {
    color: rgba(255,255,255,0.95);
}

/* ===== NOTÍCIAS ===== */
.radio-news-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
}

.radio-news-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--radio-secondary);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.radio-news-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--radio-gradient);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.radio-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.radio-news-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.radio-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.radio-news-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.radio-news-item-content {
    padding: 20px;
}

.radio-news-item-category {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: white;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.radio-news-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--radio-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.radio-news-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.radio-news-item-title a:hover {
    color: var(--radio-primary);
}

.radio-news-item-excerpt {
    font-size: 14px;
    color: var(--radio-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.radio-news-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--radio-gray);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .radio-player-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .radio-player-controls {
        justify-content: center;
        width: 100%;
    }
    
    .radio-header-main {
        flex-direction: column;
    }
    
    .radio-header-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .radio-programacao-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-news-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PLAYER STICKY MOBILE ===== */
.radio-player-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--radio-gradient);
    color: white;
    padding: 12px 15px;
    display: none;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid var(--radio-accent);
}

.radio-player-sticky.active {
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-player-sticky-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    background: var(--radio-accent);
    color: var(--radio-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.radio-player-sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.radio-player-sticky-info {
    flex: 1;
    min-width: 0;
}

.radio-player-sticky-title {
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* ===== SEÇÕES DE CONTEÚDO ===== */
.hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin: 30px 0;
    align-items: stretch;
}

.hero-main {
    height: 100%;
}

.slider-destaque {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hero-side-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 500px;
    min-height: 500px;
}

.manchete-destaque {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 40px 30px;
    margin: 25px 0 35px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.main-column {
    width: 100%;
}

.posts-section {
    width: 100%;
}

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

.main-content {
    padding: 20px 0;
}

/* ===== POSTS LATERAIS (SIDE POSTS) ===== */
.side-post {
    display: flex;
    flex-direction: row;
    gap: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 12px;
    width: 100%;
}

.side-post:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.destaque-cidade-image {
    flex: 0 0 140px;
    height: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.destaque-cidade-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.destaque-cidade-image img {
    width: 140px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.destaque-cidade-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destaque-cidade-image:hover::after {
    opacity: 1;
}

.destaque-cidade-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.post-titulo-lateral {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.side-post-title-link {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.side-post-title-link:hover {
    color: var(--radio-primary);
}

.post-data-lateral {
    margin-top: 8px;
    font-size: 11px;
    color: #999;
}

/* ===== BOTÃO CARREGAR MAIS ===== */
.load-more-container {
    margin: 40px 0;
    text-align: center;
}

#carregar-mais-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#carregar-mais-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

#loading-spinner {
    display: none;
    margin-top: 20px;
}

.loading-spinner-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

#fim-posts {
    display: none;
    margin-top: 20px;
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* ===== WIDGETS ===== */
.widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--radio-secondary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--radio-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.most-read-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.most-read-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.most-read-item:hover {
    background: #f8f9fa;
    border-left-color: var(--radio-primary);
    transform: translateX(5px);
}

.most-read-number {
    flex: 0 0 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--radio-gradient);
    color: white;
    border-radius: 50%;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.most-read-image {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.most-read-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.most-read-item:hover .most-read-image img {
    transform: scale(1.1);
}

.most-read-content {
    flex: 1;
    min-width: 0;
}

.most-read-category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.most-read-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.most-read-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.most-read-title a:hover {
    color: var(--radio-primary);
}

.most-read-date {
    font-size: 11px;
    color: #999;
}

/* ===== SLIDER ===== */
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
}

.slide-item:first-child {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.slide-item:not(:first-child) {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.slide-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    pointer-events: auto;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 35px;
    pointer-events: none;
}

.slide-category {
    display: inline-block;
    background: var(--radio-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.slide-title {
    color: white;
    font-size: 26px;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slide-excerpt {
    color: rgba(255,255,255,0.9);
    margin: 12px 0 0 0;
    font-size: 15px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.slide-meta {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-controls {
    position: absolute;
    z-index: 100;
    pointer-events: auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

.slider-btn i {
    color: #333;
    font-size: 18px;
    pointer-events: none;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
    pointer-events: auto;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slide-indicator.active {
    background: white;
}

/* Atualizar indicadores via JavaScript */
.slide-indicator[data-index="0"].active {
    background: white;
}

/* ===== MENSAGEM VAZIA ===== */
.empty-message {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.empty-message i {
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.no-posts-message {
    text-align: center;
    padding: 40px;
    color: #999;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 100%;
}

.sidebar-ad-top,
.sidebar-ad-middle,
.sidebar-ad-bottom {
    margin-bottom: 20px;
}

.sidebar-ad-middle {
    margin: 20px 0;
}

.sidebar-ad-bottom {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .radio-player-container {
        display: none;
    }
    
    .radio-player-sticky {
        display: flex;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }
    
    .hero-main,
    .slider-destaque {
        min-height: 300px;
        height: 300px;
    }
    
    .hero-side-posts {
        height: auto;
        min-height: auto;
    }
    
    .manchete-destaque {
        padding: 25px 20px;
        margin: 20px 0;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Publicidade Mobile Sticky */
    .ad-mobile-sticky-wrapper {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        background: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    /* Ajustar padding do body quando mobile sticky está visível */
    body.has-mobile-sticky {
        padding-bottom: 80px;
    }
}

/* Desktop - ocultar mobile sticky */
@media (min-width: 769px) {
    .ad-mobile-sticky-wrapper {
        display: none !important;
    }
}

