/* Estilos para News Tabs - RESPONSIVO - CORRIGIDO */
.news-tabs-01 {
    width: 100%;
    margin: 40px 0;
    padding: 0 20px;
}

.tabs-01 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 5px;
    justify-content: center;
    overflow-x: auto;
}

.tab-link-01 {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    padding: 5px 0;
    cursor: pointer;
    transition: color 0.3s;
    white-space: nowrap;
    border: none;
    background: none;
}

.tab-link-01.active {
    font-weight: bold;
    text-decoration: underline;
}

.tab-link-01:hover {
    color: #555;
}

.tab-content-01 {
    display: none;
    padding: 10px 0;
    animation: fadeIn 0.3s ease;
}

.tab-content-01.active {
    display: block;
}

/* RESPONSIVIDADE PARA MOBILE */
@media (max-width: 768px) {
    .news-tabs-01 {
        padding: 0 15px;
        margin: 30px 0;
    }
    
    .tabs-01 {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .tab-link-01 {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid #e3e3e3;
    }
    
    .tab-link-01.active {
        border-bottom: 2px solid #000;
    }
}

@media (max-width: 480px) {
    .news-tabs-01 {
        padding: 0 10px;
    }
    
    .tab-link-01 {
        font-size: 15px;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}