/* ============================================
   PLANTAO.CSS - Seção Plantão de Notícias
   Central de Notícias Brasil
   Desenvolvido por: Joceilton Gomes
   ============================================ */

/* ====== 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;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 1200px) {
    .plantao-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plantao-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plantao-footer {
        justify-content: center;
    }
}

