:root {
    --bg-color: #0d0d0d;
    --box-bg: #1a1a1a;
    --primary: #1c4e33; /* Verde do Logo */
    --accent: #d4af37; /* Dourado do Logo */
    --text: #ffffff;
    --text-muted: #aaaaaa;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Header */
.site-header { padding: 20px 0; background: rgba(0,0,0,0.8); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; }
.social-header a { color: var(--text); font-size: 24px; margin-left: 15px; transition: color 0.3s; }
.social-header a:hover { color: var(--accent); }

/* Hero Player */
.hero-player {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1c4e3340 0%, var(--bg-color) 70%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.player-box {
    background: var(--box-bg);
    max-width: 450px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    text-align: center;
    border: 1px solid #333;
}

.album-art { position: relative; margin-bottom: 25px; }
.album-art img { width: 100%; border-radius: 15px; aspect-ratio: 1/1; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.live-badge {
    position: absolute; top: 15px; left: 15px;
    background: #e74c3c; color: #fff; padding: 5px 12px;
    border-radius: 20px; font-size: 12px; font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

.track-info h2 { font-size: 24px; font-weight: 800; margin-bottom: 5px; color: var(--accent); }
.track-info h4 { font-size: 14px; font-weight: 400; color: var(--text-muted); text-transform: uppercase; }
.slogan { font-size: 12px; margin-top: 10px; font-style: italic; color: var(--text-muted); }

/* Controls */
.player-controls { margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.play-btn {
    background: var(--primary); color: #fff; border: none;
    width: 70px; height: 70px; border-radius: 50%;
    font-size: 24px; cursor: pointer; transition: all 0.3s ease;
    display: flex; justify-content: center; align-items: center;
}
.play-btn:hover { background: var(--accent); transform: scale(1.05); }

.volume-control { display: flex; align-items: center; gap: 10px; width: 80%; color: var(--text-muted); }
.volume-control input { width: 100%; accent-color: var(--accent); }

/* Info Grid (History & Schedule) */
.radio-info { padding: 60px 0; background: #111; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media(max-width: 768px) { .info-grid { grid-template-columns: 1fr; } }

.info-card { background: var(--box-bg); padding: 30px; border-radius: 15px; }
.info-card h3 { margin-bottom: 20px; color: var(--accent); display: flex; align-items: center; gap: 10px; }

ul.history-list, ul.schedule-list { list-style: none; }
ul.history-list li, ul.schedule-list li {
    padding: 15px 0; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center;
}
ul.history-list li:last-child, ul.schedule-list li:last-child { border-bottom: none; }
ul.history-list span { font-weight: 600; }
ul.history-list small { color: var(--text-muted); }

/* Footer */
.site-footer { text-align: center; padding: 40px 0; background: var(--bg-color); border-top: 1px solid #222; }
.site-footer p { color: var(--text-muted); margin-top: 10px; font-size: 14px; }
.site-footer .copy { font-size: 12px; opacity: 0.5; margin-top: 20px; }
