:root {
    --primary-blue: #003399;
    --dark-blue: #001a4d;
    --light-gray: #f4f7f6;
    --white: #ffffff;
    --text-dark: #333333;
    --text-muted: #666666;
    --accent-turismo: #0066cc;
    --accent-saude: #ff4d4d;
    --accent-eventos: #9966ff;
    --accent-cidade: #003399;
    --accent-clima: #2eb872;
    --accent-esportes: #ff9933;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* Header */
.new-header {
    background: var(--dark-blue);
    padding: 10px 0;
    color: var(--white);
}

.new-header .navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0 10px;
}

.new-header .social-icons a {
    color: var(--white);
    margin-left: 15px;
    font-size: 18px;
}

/* Live Player */
.live-player-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0;
}

.iframe-player {
    background: transparent;
    filter: brightness(1.2);
}

.live-player-bar .play-btn {
    font-size: 40px;
    margin-right: 20px;
}

.live-player-bar .song-info h6 {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.live-player-bar .song-info p {
    margin: 0;
    font-weight: bold;
}

/* Hero Section */
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.main-hero-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.side-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 153px;
}

/* Category Buttons */
.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.2s;
}

.category-btn:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.bg-cidade { background-color: var(--accent-cidade); }
.bg-turismo { background-color: var(--accent-turismo); }
.bg-saude { background-color: var(--accent-saude); }
.bg-eventos { background-color: var(--accent-eventos); }

/* News Cards */
.news-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    border-radius: 15px 15px 0 0;
    height: 200px;
    object-fit: cover;
}

.news-card .card-body {
    padding: 20px;
}

.news-card .badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

/* Sidebar Blocks */
.sidebar-block {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.live-now-box {
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

/* Footer */
.new-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.new-footer h5 {
    font-weight: bold;
    margin-bottom: 25px;
}

.new-footer ul {
    list-style: none;
    padding: 0;
}

.new-footer ul li {
    margin-bottom: 10px;
}

.new-footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

/* Mobile Specific */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .main-hero-card {
        height: 350px;
    }
    
    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 10px;
        color: var(--text-muted);
        text-decoration: none;
    }
    
    .bottom-nav-item.active {
        color: var(--primary-blue);
    }
    
    .bottom-nav-item i {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    body {
        padding-bottom: 70px;
    }
}
