/* ============================================
   NEWS.CSS - Seção de Notícias
   Central de Notícias Brasil
   ============================================ */

/* ====== BANNER PRINCIPAL ====== */
.banner-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 24px 0 24px;
}

.banner-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.banner-slider {
    position: relative;
    width: 100%;
}

.banner-slide {
    display: none;
    width: 100%;
}

.banner-slide.active {
    display: block;
}

.banner-slide a {
    display: block;
    width: 100%;
}

.banner-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.banner-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.banner-badge {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.banner-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.banner-dot {
    width: 28px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: var(--dourado);
    width: 40px;
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ====== CONTAINER PRINCIPAL ====== */
.news-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

/* ====== MANCHETE PRINCIPAL ====== */
.main-headline {
    background: var(--azul-primario);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.main-headline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05));
}

.headline-category {
    display: inline-block;
    background: var(--dourado);
    color: var(--azul-primario);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.main-headline h1 {
    font-size: 2.2rem;
    color: var(--branco);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.main-headline p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

/* ====== GRID DE NOTÍCIAS ====== */
.news-grid {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 24px;
    margin-bottom: 40px;
}

/* ====== COLUNAS LATERAIS ====== */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card-small {
    background: var(--branco);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-card-small .card-category {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--azul-claro);
    margin-bottom: 10px;
}

.news-card-small h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--azul-primario);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-small h3:hover {
    color: var(--azul-claro);
}

.news-card-small p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-small .card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* ====== SLIDER CENTRAL ====== */
.news-slider-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.news-slider {
    position: relative;
    height: 450px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.slide-category {
    display: inline-block;
    background: var(--dourado);
    color: var(--azul-primario);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.slide-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--branco);
    line-height: 1.3;
}

/* Controles do Slider */
.slider-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 32px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--dourado);
    width: 48px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 10;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    color: var(--branco);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--dourado);
    color: var(--azul-primario);
}

/* ====== BANNER SIMPLES ====== */
.simple-banner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.simple-banner-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background: #f8fafc;
}

.simple-banner-container a {
    display: block;
    width: 100%;
}

.simple-banner-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.simple-banner-container:hover img {
    transform: scale(1.02);
}

.simple-banner-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsivo Banner Simples */
@media (max-width: 768px) {
    .simple-banner {
        padding: 16px;
    }

    .simple-banner-container {
        border-radius: 8px;
    }
}

/* ====== SEÇÃO ÚLTIMAS NOTÍCIAS ====== */
.latest-news-section {
    background: #f8fafc;
    padding: 40px 0;
    margin-top: 20px;
}

.latest-news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-primario);
}

.section-title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--dourado);
    border-radius: 2px;
}

.view-all-btn {
    color: var(--azul-claro);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    color: var(--azul-primario);
}

/* Grid de Últimas Notícias */
.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news-card {
    background: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.news-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-card-image .card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--dourado);
    color: var(--azul-primario);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-card-content {
    padding: 16px;
}

.news-card-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--azul-primario);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-content h3:hover {
    color: var(--azul-claro);
}

.news-card-content .card-time {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ====== SEÇÃO EM ALTA ====== */
.trending-section {
    background: #fff;
    padding: 40px 0;
}

.trending-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.trending-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 8px;
}

.trending-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #dc2626;
    border-radius: 2px;
}

.trending-btn {
    background: #dc2626;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trending-btn:hover {
    background: #b91c1c;
}

/* Grid Principal */
.trending-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

/* Notícia Grande */
.trending-big {
    grid-row: span 2;
}

.trending-big a {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.trending-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
    transition: transform 0.4s ease;
}

.trending-big:hover img {
    transform: scale(1.05);
}

.trending-big-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.trending-big-overlay h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Coluna Central */
.trending-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trending-medium {
    flex: 1;
}

.trending-medium a {
    display: flex;
    gap: 16px;
    text-decoration: none;
    height: 100%;
}

.trending-medium img {
    width: 200px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.trending-medium:hover img {
    transform: scale(1.03);
}

.trending-medium-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 4px;
}

.trending-medium-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--azul-primario);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-medium:hover h3 {
    color: var(--azul-claro);
}

.trending-tag {
    font-size: 0.75rem;
    color: #64748b;
}

/* Coluna Direita */
.trending-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trending-small-img {
    flex: 1;
}

.trending-small-img a {
    display: flex;
    gap: 14px;
    text-decoration: none;
    height: 100%;
}

.trending-small-img img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.trending-small-img:hover img {
    transform: scale(1.03);
}

.trending-small-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 4px;
}

.trending-category {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.trending-small-content h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--azul-claro);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-small-img:hover h3 {
    color: var(--azul-primario);
}

/* Linha de Notícias de Texto - 4 Cards Iguais */
.trending-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 32px 0;
    margin-top: 32px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.trending-text-only {
    background: transparent;
}

.trending-text-only a {
    display: block;
    text-decoration: none;
}

.trending-text-only .trending-category {
    display: block;
    margin-bottom: 10px;
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.trending-text-only h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.trending-text-only:hover h3 {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ====== SEÇÃO CIDADES ====== */
.cities-section {
    background: #fff;
    padding: 40px 0;
}

.cities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.cities-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.cities-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 8px;
}

.cities-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #dc2626;
    border-radius: 2px;
}

.cities-btn {
    background: #dc2626;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cities-btn:hover {
    background: #b91c1c;
}

/* Grid de Cards com Imagem - 5 colunas */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.city-card a {
    display: block;
    text-decoration: none;
}

.city-card-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    aspect-ratio: 4/3;
}

.city-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.city-card:hover .city-card-image img {
    transform: scale(1.05);
}

.city-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.city-card:hover h3 {
    color: #b91c1c;
}

.city-date {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Grid de Cards sem Imagem - 5 colunas */
.cities-text-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.city-text-card a {
    display: block;
    text-decoration: none;
}

.city-text-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.city-text-card:hover h3 {
    color: #dc2626;
}

.city-text-card .city-date {
    font-size: 0.7rem;
    color: #9ca3af;
}

/* ====== PLANTÃO DE NOTÍCIAS ====== */
.plantao-section {
    background: #f1f5f9;
    padding: 40px 0;
}

.plantao-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.plantao-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.plantao-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1e40af;
    border-radius: 2px;
}

/* Grid de Cards */
.plantao-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.plantao-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plantao-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 4px;
}

.plantao-date {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

.plantao-author {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0 0 8px 0;
}

.plantao-author span {
    color: #1a1a1a;
    font-weight: 500;
}

.plantao-audio {
    width: 100%;
    height: 40px;
    margin: 8px 0;
}

.plantao-audio::-webkit-media-controls-panel {
    background: #f8fafc;
}

.plantao-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.plantao-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plantao-action-btn.download {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.plantao-action-btn.download:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.plantao-action-btn.share {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.plantao-action-btn.share:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.plantao-action-btn svg {
    flex-shrink: 0;
}

/* Footer com Botão */
.plantao-footer {
    display: flex;
    justify-content: flex-end;
}

.plantao-btn {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plantao-btn:hover {
    background: #1d4ed8;
}

/* ====== SEÇÃO PROGRAMAS (TABS) ====== */
.programas-section {
    background: #fff;
    padding: 40px 0;
}

.programas-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.programas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.programas-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f97316;
    position: relative;
    padding-bottom: 8px;
}

.programas-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #f97316;
    border-radius: 2px;
}

.programas-ver-todos {
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.programas-ver-todos:hover {
    background: #1d4ed8;
}

/* Tabs */
.programas-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--tab-color);
    color: white;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.tab-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.tab-btn.active {
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Conteúdo das Tabs */
.tabs-content {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Card do Programa */
.programa-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.programa-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.programa-thumb img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.programa-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.programa-data {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Aviso */
.programa-aviso {
    background: #fce7f3;
    border-left: 4px solid #ec4899;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.programa-aviso strong {
    color: #db2777;
}

/* Áudio Completo */
.programa-audio-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.programa-audio-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.programa-audio-full {
    width: 100%;
    height: 45px;
    margin-bottom: 16px;
}

.programa-audio-actions {
    display: flex;
    gap: 12px;
}

.btn-baixar-completo {
    background: #22c55e;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-baixar-completo:hover {
    background: #16a34a;
}

.btn-compartilhar-outline {
    background: transparent;
    color: #2563eb;
    padding: 10px 20px;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-compartilhar-outline:hover {
    background: #2563eb;
    color: white;
}

/* Blocos */
.programa-blocos h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.blocos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bloco-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
}

.bloco-titulo {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.bloco-audio {
    width: 100%;
    height: 40px;
    margin-bottom: 12px;
}

.bloco-actions {
    display: flex;
    gap: 8px;
}

.btn-bloco {
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-bloco.baixar {
    background: #6b7280;
    color: white;
}

.btn-bloco.baixar:hover {
    background: #4b5563;
}

.btn-bloco.comp {
    background: #fff;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.btn-bloco.comp:hover {
    background: #f3f4f6;
}

/* Footer Programa */
.programa-footer {
    margin-top: 24px;
}

.btn-compartilhar-todos {
    display: inline-block;
    background: #f97316;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-compartilhar-todos:hover {
    background: #ea580c;
}

/* ====== MATÉRIAS EM ÁUDIO ====== */
.materias-audio-section {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.materias-audio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.materias-audio-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.materias-audio-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f97316;
    border-radius: 2px;
}

/* Grid de Cards */
.materias-audio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.materia-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.materia-tag {
    display: inline-block;
    padding: 4px 12px;
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
}

.materia-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    min-height: 60px;
}

.materia-meta {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

.materia-audio {
    width: 100%;
    height: 40px;
}

.materia-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.materia-btn {
    padding: 8px 16px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.materia-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* Footer */
.materias-audio-footer {
    display: flex;
    justify-content: flex-end;
}

.materias-ver-todas {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.materias-ver-todas:hover {
    background: #1d4ed8;
}

/* ====== OUTROS ÁUDIOS PARA RÁDIOS ====== */
.audios-radio-section {
    background: #fff;
    padding: 40px 0;
}

.audios-radio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.audios-radio-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.audios-radio-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
}

/* Grid de Cards */
.audios-radio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.audio-radio-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.audio-radio-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    min-height: 48px;
}

.audio-radio-date {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.audio-radio-player {
    width: 100%;
    height: 40px;
    margin: 8px 0;
}

.audio-radio-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.audio-radio-btn:hover {
    background: #1d4ed8;
}

/* ====== SEÇÃO VÍDEOS ====== */
.videos-section {
    background: #fff;
    padding: 40px 0;
}

.videos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.videos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.videos-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 8px;
}

.videos-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #f97316;
    border-radius: 2px;
}

.videos-ver-todos {
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.videos-ver-todos:hover {
    background: #1d4ed8;
}

/* Grid de Vídeos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ea580c;
}

.video-play-btn svg {
    margin-left: 4px;
}

.video-card h3 {
    padding: 16px 16px 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    min-height: 60px;
}

.video-date {
    padding: 0 16px 16px;
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

/* Modal de Vídeo */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: white;
    color: #1a1a1a;
}

.video-modal-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ====== SEÇÃO OPINIÃO ====== */
.opiniao-section {
    background: #fff;
    padding: 40px 0;
}

.opiniao-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.opiniao-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.opiniao-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc2626;
    position: relative;
    padding-bottom: 8px;
}

.opiniao-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #dc2626;
    border-radius: 2px;
}

.opiniao-btn {
    background: #dc2626;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.opiniao-btn:hover {
    background: #b91c1c;
}

/* Grid de Cards */
.opiniao-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.opiniao-card a {
    display: block;
    text-decoration: none;
}

.opiniao-thumb {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 4/3;
}

.opiniao-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.opiniao-card:hover .opiniao-thumb img {
    transform: scale(1.05);
}

.opiniao-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.4;
    margin-bottom: 8px;
    min-height: 56px;
    transition: color 0.3s ease;
}

.opiniao-card:hover h3 {
    color: #b91c1c;
}

.opiniao-date {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

/* ====== SEÇÃO CATEGORIAS (POLÍTICA, ESPORTE, POLÍCIA) ====== */
.categorias-section {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.categorias-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.categoria-col {
    border-right: 1px solid #e5e7eb;
    padding-right: 32px;
}

.categoria-col:last-child {
    border-right: none;
    padding-right: 0;
}

.categoria-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid #1a1a1a;
    display: inline-block;
}

.categoria-title.esporte {
    color: #22c55e;
    border-color: #22c55e;
}

/* Card Destaque */
.categoria-destaque {
    margin-bottom: 20px;
}

.categoria-destaque a {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.categoria-destaque img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.categoria-destaque:hover img {
    transform: scale(1.05);
}

.categoria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 60px 16px 16px;
}

.categoria-overlay h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
}

/* Lista de Links */
.categoria-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.categoria-lista li a {
    font-size: 0.9rem;
    color: #2563eb;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
}

.categoria-lista li a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.categoria-lista.esporte li a {
    color: #16a34a;
}

.categoria-lista.esporte li a:hover {
    color: #15803d;
}

/* Categorias 2 - Entretenimento, Cultura, Turismo */
.categorias-section.cat2 {
    background: #f8fafc;
}

/* Entretenimento - Roxo/Magenta */
.categoria-title.entretenimento {
    color: #a855f7;
    border-color: #a855f7;
}

.categoria-overlay.entretenimento {
    background: linear-gradient(transparent, rgba(168, 85, 247, 0.9));
}

.categoria-lista.entretenimento li a {
    color: #9333ea;
}

.categoria-lista.entretenimento li a:hover {
    color: #7e22ce;
}

/* Cultura - Laranja */
.categoria-title.cultura {
    color: #f97316;
    border-color: #f97316;
}

.categoria-overlay.cultura {
    background: linear-gradient(transparent, rgba(249, 115, 22, 0.9));
}

.categoria-lista.cultura li a {
    color: #ea580c;
}

.categoria-lista.cultura li a:hover {
    color: #c2410c;
}

/* Turismo - Verde */
.categoria-title.turismo {
    color: #22c55e;
    border-color: #22c55e;
}

.categoria-overlay.turismo {
    background: linear-gradient(transparent, rgba(34, 197, 94, 0.9));
}

.categoria-lista.turismo li a {
    color: #16a34a;
}

.categoria-lista.turismo li a:hover {
    color: #15803d;
}

/* ====== FOOTER PROFISSIONAL ====== */
.main-footer {
    background: #0a2463;
    color: white;
}

/* Newsletter */
.footer-newsletter {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    padding: 40px 0;
}

.newsletter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 300px;
    background: white;
    color: #1a1a1a;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form button {
    padding: 14px 28px;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ea580c;
}

/* Footer Principal */
.footer-main {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Coluna Sobre */
.footer-col.about {
    padding-right: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col.about p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.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;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f97316;
    transform: translateY(-3px);
}

/* Colunas de Links */
.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #f97316;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f97316;
    padding-left: 5px;
}

/* Coluna Contato */
.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.contact-list li svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f97316;
}

.dev-link {
    color: #f97316;
    font-weight: 600;
    transition: color 0.3s ease;
}

.dev-link:hover {
    color: #fbbf24;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: 240px 1fr 240px;
    }

    .latest-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trending-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trending-big {
        grid-row: span 1;
    }

    .trending-big img {
        min-height: 280px;
    }

    .trending-right {
        grid-column: span 2;
        flex-direction: row;
    }

    .trending-row {
        grid-template-columns: repeat(2, 1fr);
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Cidades Tablet */
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cities-text-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Plantão Tablet */
    .plantao-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Programas Tablet */
    .blocos-grid {
        grid-template-columns: 1fr;
    }

    /* Matérias em Áudio Tablet */
    .materias-audio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Áudios para Rádios Tablet */
    .audios-radio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Vídeos Tablet */
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Opinião Tablet */
    .opiniao-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Categorias Tablet */
    .categorias-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .categoria-col {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-right: 0;
        padding-bottom: 40px;
    }

    .categoria-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Footer Tablet */
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 500px;
    }

    .newsletter-form input {
        flex: 1;
        width: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-col.about {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col.contact {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 12px;
    }

    .news-card-small {
        min-width: 280px;
    }

    .news-slider {
        height: 350px;
    }

    .latest-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-headline {
        padding: 24px;
    }

    .main-headline h1 {
        font-size: 1.5rem;
    }

    .news-slider {
        height: 300px;
    }

    .slide-title {
        font-size: 1.1rem;
    }

    .latest-news-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Em Alta Mobile */
    .trending-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .trending-grid {
        grid-template-columns: 1fr;
    }

    .trending-big img {
        min-height: 220px;
    }

    .trending-center,
    .trending-right {
        flex-direction: column;
    }

    .trending-right {
        grid-column: span 1;
    }

    .trending-medium img {
        width: 140px;
        height: 100px;
    }

    .trending-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Cidades Mobile */
    .cities-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cities-text-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .city-card h3 {
        font-size: 0.85rem;
    }

    /* Plantão Mobile */
    .plantao-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plantao-footer {
        justify-content: center;
    }

    /* Programas Mobile */
    .programas-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .programas-tabs {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
        text-align: center;
        border-radius: 10px;
    }

    .tabs-content {
        padding: 16px;
    }

    .programa-card {
        padding: 16px;
    }

    .programa-info {
        flex-direction: column;
        text-align: center;
    }

    .programa-audio-actions {
        flex-direction: column;
    }

    .btn-baixar-completo,
    .btn-compartilhar-outline {
        width: 100%;
        text-align: center;
    }

    /* Matérias em Áudio Mobile */
    .materias-audio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .materia-card h3 {
        min-height: auto;
    }

    .materia-actions {
        flex-wrap: wrap;
    }

    .materias-audio-footer {
        justify-content: center;
    }

    /* Áudios para Rádios Mobile */
    .audios-radio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audio-radio-card h3 {
        min-height: auto;
    }

    /* Vídeos Mobile */
    .videos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .video-card h3 {
        min-height: auto;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -45px;
        width: 36px;
        height: 36px;
    }

    /* Opinião Mobile */
    .opiniao-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .opiniao-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .opiniao-card h3 {
        min-height: auto;
    }

    /* Categorias Mobile */
    .categoria-destaque img {
        height: 180px;
    }

    .categoria-lista li a {
        font-size: 0.85rem;
    }

    /* Footer Mobile */
    .footer-newsletter {
        padding: 30px 0;
    }

    .newsletter-content h3 {
        font-size: 1.1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-main {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-col.about {
        grid-column: span 1;
    }

    .footer-col.contact {
        grid-column: span 1;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 16px;
    }

    .news-sidebar {
        flex-direction: column;
    }

    .news-card-small {
        min-width: 100%;
    }

    .slider-arrows {
        display: none;
    }

    .banner-section {
        padding: 16px 16px 0 16px;
    }

    .banner-slider {
        width: 100%;
    }

    .simple-banner-container img {
        max-height: none;
    }
}

